Search SWF on the Web

July 25, 2008 at 8:37 am (news) (, , )

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.

:)

Permalink Leave a Comment

AS3 ToolTip Class

July 16, 2008 at 7:28 am (Uncategorized)

Please refer Link :

http://forum.html.it/forum/showthread/t-1139527.html
http://www.gotoandlearnforum.com/viewtopic.php?f=12&t=12168

Permalink 1 Comment

Disabling Key events in list control

July 15, 2008 at 4:25 pm (Uncategorized) (, )

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 {
}
}
}

Permalink Leave a Comment