RE: [Flashcoders] external .AS and debuggin

2006-06-20 Thread Steven Sacks | BLITZ
You can use the NetConnection Debugger, an amazing debugging tool that comes with the free remoting components from Macromedia/Adobe (search the site for 'Download Flash Remoting Components'), or if you're feeling frisky, you can grab XRay from osflash and learn that. Breakpoints aren't really

Re: [Flashcoders] external .AS and debuggin

2006-06-21 Thread Josh Santangelo
When running the Debug Movie command, the Debug panel will appear, reading "the movie is paused so you can add breakpoints." Use the dropdown at the top of the panel to select your external class file and insert the breakpoints you need. -josh On Jun 20, 2006, at 7:26a, D_C wrote: hiya -

RE: [Flashcoders] external .AS and debuggin

2006-06-20 Thread Nitin Gore
Is there any entry point from your flash file to .as file. Like any call to a function which is written in .as file and called from flash file. If yes then you can set the break point to the function call in flash file and can debug the as file code and set many more breakpoints too. -Or