vote up 0 vote down star

Hi,

I've got two flash movies on a page. Using the Flash IDE I'd like to implement remote debugging when a particular movie loads. My problem is that the debugger attaches to the first loaded movie - not the one I want.

Thanks, Josh

flag

I think you mean "remote" debugging. That being said, have you tried to turn off remote debugging for the SWF you don't want to allow debugging on? – Branden Hall Jul 2 at 15:18
correct - remote debugging. if that is the only way to do it add it as an answer. thanks. – Josh Jul 2 at 15:27

1 Answer

vote up 0 vote down check

Release SWFs will not attempt to connect to a remote debugger (or any debugger, for that matter), so if there's a SWF you want not to connect, one approach would be to issue it as a release SWF. (In the Flash IDE, that means publishing with the Permit Debugging option unchecked, whereas in Flex Builder, it means Export > Release Build.)

That's one option. Another, or an additional one, would be to choose which SWF to connect to your debugger, which takes a little finagling -- and is probably easier done than explained. ;) Essentially what you want to do, though, is load up an instance of your HTML page first, have it just sitting there waiting, then start your Flash debugger, and then finally, back in the HTML page, right-clicking the SWF you do want to debug, choosing the Debugger option, and connect to your running debugger instance that way. It's a somewhat more manual process, and you lose some ability to debug through the startup sequence, but it could work out for you, depending on your needs. Running only one debug SWF on a page would probably be the ideal way to go, though, especially if you need to connect early on.

But I don't believe there's a way to specify, at the SWF level, not to attempt to connect to a debugger when a debugger is listening and the player's been set up to connect automatically. I could be wrong on this, though, so if someone knows otherwise, please chime in.

Hope it helps! Post back with questions and I'll try to help out as I can.

link|flag
not ideal - but thanks for the knowledge :) – Josh Jul 3 at 9:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.