Class URLLoader allow to load resources online and verify it state to take another actions.
An use example could be to check a server to show an alert when it was down:
Click with the right button to obtain source code.
Downloads
Projects
Utilities
Friends
LinksClass URLLoader allow to load resources online and verify it state to take another actions.
An use example could be to check a server to show an alert when it was down:
Click with the right button to obtain source code.
GameInFlex http://www.gameinflex.com is a Flex application to show games and applications made with Adobe Flex technology.
¡Add your application to the list! and share your development.
GameInFlex is made with Flex, Cairngorm, LCDS, Spring e Hibernate
ArrayCollection class wraps Array class and give it new functionalities but it blocks access to Array methods like push, pop and so on.
However, you can use ArrayCollection data source directly:
ArrayCollection.source=array;
Version 1.2 of Flexi with the following improvements:
- Component .as
- Functions to show/hide loaded content: showIFrame() and hideIFrame()
Click with the right button to obtain source code.
Flex Image extended to support focus and tab navigation.
package com {
import flash.events.KeyboardEvent;
import flash.events.MouseEvent;
import flash.ui.Keyboard;
import mx.controls.Image;
import mx.managers.IFocusManagerComponent;
public class ImageFocus extends Image implements IFocusManagerComponent {
public function ImageFocus() {
super();
addEventListener(KeyboardEvent.KEY_DOWN, mouseDownHandler);
tabEnabled=true;
focusEnabled=true;
}
protected function mouseDownHandler(event:KeyboardEvent):void {
if (event.keyCode==Keyboard.SPACE) {
dispatchEvent(new MouseEvent(MouseEvent.CLICK));
}
}
}
}
for the icon set used in this blog.