Adobe 38039336 - Flash CS3 Professional User Manual page 505

User guide
Hide thumbs Also See for 38039336 - Flash CS3 Professional:
Table of Contents

Advertisement

• Limit the use of global variables, because they are not marked for garbage collection if the movie clip that defined
them is removed.
• Avoid using the standard user interface components (available in the Components panel in Flash). These compo-
nents are designed to run on desktop computers and are not optimized to run on mobile devices.
• Whenever possible, avoid deeply nested functions.
• Avoid referencing nonexistent variables, objects, or functions. Compared to the desktop version of Flash Player,
Flash Lite 2 looks up references to nonexistent variables slowly, which can significantly affect performance.
• Avoid defining functions using anonymous syntax. For example,
Explicitly defined functions are more efficient, such as
.
myFunc;
• Minimize the use of Math functions and floating-point numbers. Calculating these values slows performance. If
you must use the Math routines, consider precalculating the values and storing them in an array of variables.
Retrieving the values from a data table is much faster than having Flash calculate them at run time.
For more tips and techniques for creating content for mobile phones and devices, see
www.adobe.com/go/learn_cs_mobilewiki_en.
Managing Flash Lite file memory for mobile devices
Flash Lite regularly clears from memory any objects and variables that a file no longer references. This is known as
garbage collection. Flash Lite runs its garbage-collection process once every 60 seconds, or whenever usage of file
memory increases suddenly by 20% or more.
Although you cannot control how and when Flash Lite performs garbage collection, you can still free unneeded
memory deliberately. For timeline or global variables, use the
Script objects use. For local variables—for example, a variable defined within a function definition—you can't use
the
statement to free an object's memory, but you can set to
delete
frees the memory that the object uses, provided there are no other references to that object.
The following two code examples show how to free memory that objects use by deleting the variable that references
those objects. The examples are identical, except that the first example creates a timeline variable and the second
creates a global variable.
myObj.eventName = function{ ...}
function myFunc { ...}; my Obj.eventName =
statement to free the memory that Action-
delete
the variable that references the object. This
null
FLASH CS3
499
User Guide
.

Advertisement

Table of Contents
loading

This manual is also suitable for:

Flash cs3 professional

Table of Contents