Search SWF on the Web
Search SWF on Google and Yahoo
This is a great news for web developers working around with Flash. This was the most required area to make the swf content searchable most of the clients avoide using flash as frontend just because of this factor .So cross figures for it to be a gr8 success.
AS3 ToolTip Class
http://forum.html.it/forum/showthread/t-1139527.html
http://www.gotoandlearnforum.com/viewtopic.php?f=12&t=12168
Disabling Key events in list control
package {
import flash.events.KeyboardEvent;
import mx.controls.List;
public class MyList extends List {
public function MyList() {
super();
}
override protected function keyDownHandler(event:KeyboardEvent):void {
}
}
}
