Skip to content

Instantly share code, notes, and snippets.

@rafaelrinaldi
Created April 6, 2011 21:17
Show Gist options
  • Save rafaelrinaldi/906548 to your computer and use it in GitHub Desktop.
Save rafaelrinaldi/906548 to your computer and use it in GitHub Desktop.
Using fdb to debug.
1) Execute 'fdb'
2) Initialize a session typing 'run'
3) When you open the SWF file fdb will output this:
Player connected; session starting.
Set breakpoints and then type 'continue' to resume the session.
[SWF] path:file.swf - N bytes after decompression
(fdb)
4) Then you set your breakpoints. E.g: To set a breakpoint in the line 100 of your Main.as class, you will use:
b Main.as#100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment