The Variables tab in the Debugger shows the names and values of any global and timeline variables that are selected in the SWF file’s display list. If you change the value of a variable on the Variables tab, the change is reflected in the SWF file while it runs. For example, to test collision detection in a game, you can enter the variable value to position a ball in the correct location next to a wall.
The Locals tab in the Debugger shows the names and values of any local variables that are available in the line of ActionScript where the SWF file is currently stopped, at a breakpoint or anywhere else within a user-defined function.
Display a variable and its valueThe display list updates automatically as the SWF file plays.
Modify a variable value
On the Debugger panel Variables tab,
double-click the value, and enter a new value.
Enter a string (any value surrounded by quotation marks), a number, or a Boolean value (true or false). You cannot enter an expression (for example, eval("name:" +i) or x + 2).