Specifications

CHAPTER 12
260
For additional information about these options, use the help command, as the following example shows:
(fdb) help info targets
Handling faults
Use the handle command to specify how fdb reacts to Flash Player exceptions during execution. To view the
current settings, use the
info command, as the following example shows:
(fdb) info handle
The handle command has the following syntax:
(fdb) handle exception [action]
The fault_type is the category of fault that fdb handles. The action is what fdb does in response to that fault.
The possible actions are
print, noprint, stop, and nostop. The following table describes these actions:
functions [arg]
Displays all function names used in this application. The info functions command optionally takes an
argument; for example:
info functions Lists all functions in all files.
info functions Lists all functions in the current file.
info functions MyApp.mxml Lists all functions in the MyApp.mxml file.
handle
Displays settings for fault handling in the debugger.
locals
Displays the local variables of the current stack frame.
sources
Displays authored source files used by the target application.
stack
Displays the backtrace of the stack.
swfs
Displays all current SWF files.
targets
Displays the HTTP or file URL of the target application.
variables
Displays all global and static variable names.
Action Description
print
Prints a message if this type of fault occurs.
noprint
Does not print a message if this type of fault occurs.
Option Description