--- In [email protected], "luvfotography" <[EMAIL PROTECTED]> wrote: > > Hi, when I'm in the debugging mode and single stepping thru my code, > sometimes it goes off into some module that I don't care about, for > example the ResourceManager.as, is there a way to 'fast forward', ie, > hit the green triangle to continue until it comes back to my code? > I can hit the green button, but I may not have any more breakpoints > set in my code and it just zooms past all of it. . . > > I just want to single step my code, or the modules of my choosing and > execute (without single stepping) system modules or modules that I > don't care about. >
Try using the Step Over button (next to the Step Into Button), which will skip by any calls to functions other than the one you are looking at. If you know that the call is to your own function, switch back to the Step Into button. If you wind up somewhere you don't want to be, click the Step Out button. Sometimes all of this doesn't work and you wind up in the Framework code with no way out. In that case, take note of the line of code that sends you in there and put a break point on the next line. Then you simply hit the play button and play through the fw code until it hits your breakpoint. HTH; Amy

