In AMC the setInterval command is Asynchronous and you may prefer Synchronous in your code for performance and the ability to add logic to the interval.
For example: 5 seconds before a interval is triggered a developer can add logic to check that net connection is active.
Solution
Create a custom SetInterval script to meet the needs of your application. Be sure to limit use and not have several intervals running at once.
Functions are not supported in Flash Lite 1.1, since Flash Lite 1.1 is Flash 4 style syntax and does not support ActionScript 2.0 as in Flash Lite 2.x and above.
Solution
Pseudo functions can be created by utilizing the call() statement to invoke frame labels contained in a non visible off stage movieclip.
This movieclip is known as a "function clip" in the Flash (Lite) community.
Flash Lite 1.1 does not support ActionScript 2.0, so the array() construct does not exist. This means arrays are not supported in Flash Lite 1.1 through a typical declaration.
Solution
Creating a "pseudo array" (or; "fake array" if you will) is one possible method to dealing with storing multiple variables/values in an array-like-structure in Flash Lite 1.1
We’re starting to invite Mobile developers to “seed” the Mobile cookbook with posts to get it ready for public use.
Solution
Feel free to log in and post solutions to common Flash Lite and Device Central. Solutions for mobile-related Flash authoring tool development are also good.
Functions are not supported in Flash Lite 1.1, since Flash Lite 1.1 is Flash 4 style syntax and does not support ActionScript 2.0 as in Flash Lite 2.x and above.
Solution
Pseudo functions can be created by utilizing the call() statement to invoke frame labels contained in a non visible off stage movieclip.
This movieclip is known as a "function clip" in the Flash (Lite) community.