2013年12月3日 星期二

 http://www.actionscript.org/resources/articles/207/1/Trace-and-debug-ActionScript-from-your-browser/Page1.html

Trace and debug ActionScript from your browser




http://helpx.adobe.com/flash-player/kb/configure-debugger-version-flash-player.html
 http://www.adobe.com/support/flashplayer/downloads.html

Configure the debugger version of Flash Player



You can use the settings in the mm.cfg text file to configure the debugger version of Adobe Flash Player. These settings also affect logging of trace() output in Adobe AIR applications running in the ADL debugger. If this file does not exist, you can create it when you first configure the debugger version of Flash Player.
You can download the debugger version of Flash Player from the Adobe Flash Player Support Center.
The location of the mm.cfg file depends on your operating system.
The following table shows where to save the mm.cfg file for several operating systems:
Operating system
File path
Mac OS X
/Library/Application Support/Macromedia
Windows 95/98/ME
%HOMEDRIVE%\%HOMEPATH%
Windows 2000/XP
C:\Documents and Settings\username
Windows Vista
C:\Users\username
Linux
/home/username

The following table lists the properties that you can set in the mm.cfg file:
PropertyDescription
ErrorReportingEnable
Enables the logging of error messages.
Set the ErrorReportingEnable property to 1 to enable the debugger version of Flash Player to write error messages to the log file.
To disable logging of error messages, set theErrorReportingEnable property to 0.
The default value is 0.
MaxWarnings
Sets the number of warnings to log before stopping.
The default value of the MaxWarnings property is 100. After 100 messages, the debugger version of Flash Player writes a message to the file stating that further error messages will be suppressed.
Set the MaxWarnings property to override the default message limit. For example, you can set it to 500 to capture 500 error messages.
Set the MaxWarnings property to 0 to remove the limit so that all error messages are recorded.
TraceOutputFileEnable
Enables trace logging.
Set TraceOutputFileEnable to 1 to enable the debugger version of Flash Player to write trace messages to the log file.
Disable trace logging by setting theTraceOutputFileEnable property to 0.
The default value is 0.
TraceOutputFileName
Sets the location of the log file. By default, the debugger version of Flash Player writes error messages to a file named flashlog.txt.
Set TraceOutputFileName to override the default name and location of the log file by specifying a new location and name in the following form:
TraceOutputFileName=<fully qualified path/filename>
On Mac OS X, you should use colons to separate directories in the TraceOutputFileName path rather than slashes.
Note: Beginning with the Flash Player 9 Update, Flash Player ignores the TraceOutputFileName property and stores the flashlog.txt file in a hard-coded location based on operating system. For more information, see the section on log file location listed below.
The following sample mm.cfg file enables error reporting and trace logging:
1
2
3
ErrorReportingEnable=1
         
    TraceOutputFileEnable=1

Log file location

The default log file location changed between the initial Flash Player 9 release and the Flash Player 9 Update. In the initial Flash Player 9 release, the default location was the same directory as the mm.cfg file, and you could update the log file location and name through theTraceOutputFileName property.
With the Flash Player 9 Update, you cannot modify the log file location or name. The filename is flashlog.txt, and its location is hard-coded, depending on your operating system. The following table shows the flashlog.txt file location:
Operating system
Log file location
Windows 95/98/ME/2000/XP
C:\Documents and Settings\username\Application Data\Macromedia\Flash Player\Logs
Windows Vista
C:\Users\username\AppData\Roaming\Macromedia\Flash Player\Logs
Mac OS X
/Users/username/Library/Preferences/Macromedia/Flash Player/Logs/
Linux
/home/username/.macromedia/Flash_Player/Logs/
Keywords: 9.0.115.0; configure; mm.cfg; kb403009