Method: FlashSDK::FDB#run
- Defined in:
- lib/flashsdk/fdb.rb
#run ⇒ Object
Start a debugging session.
Examples:
run http://www.mysite.com/myapp.mxml
Runs the specified MXML application.
run myapp.swf
run mydir\myapp.swf
run c:\mydir\myapp.swf
Runs the local SWF file myapp.swf, which can be specified either relative to the current directory (see ‘pwd’ command) or using an absolute path. In these cases, myapp.swd (the file containing the debugging information) must also exist in the same directory as myapp.swf.
run
Run the application previously specified by the ‘file’ command. If no application has been specified, fdb will wait for one to connect to it, and time out if none does so. ‘run’ will start the application in a browser or standalone Flash Player. As soon as the application starts, it will break into fdb so that you can set breakpoints, etc.
On the Macintosh, the only supported form of the command is ‘run’ with no arguments. You must then manually launch the Flash player.
665 |
# File 'lib/flashsdk/fdb.rb', line 665 add_action :run, String |