views:

175

answers:

2

I want to know is Flash Lite is same as Flash Action Script programing. When/where we use Flash Lite?

+2  A: 

Please read the Wikipedia ActionScript page.

The Adobe Intro to Flash Lite 2 (PDF), describes which features are supported partially and which are introduced specifically for mobile devices.

nik
+1  A: 

Flashlite is the flavor of Flash for embedded devices, since full Flash is not typically supported on devices with limited resources. Flashlite only supports as2, and MOST, but not all, of the actionscript classes are the same. For example, the MovieClip object doesn't have the getRect() function, but it does have getBounds(). SharedObject is another piece that doesn't work the same.

One thing to note is that Adobe announced support for flash player 10 in mobile devices, which support more of the modern flash features, like actionscript 3 and flex. So maybe in the future, you'll use flash 10 on your embedded device, but for now, we're stuck with flashlite.

Aaron