Arrrghmatey 0 Posted July 8, 2005 Hello again, I have a program that is quite long, and when testing new parts I don't want to sit through ALL the previous actions. Is there a was to 'run from here' so I can begin executing my code from a specific point? Share this post Link to post Share on other sites
GaryFrost 18 Posted July 8, 2005 Couldn't tell you of a way to do that other than block commenting out what you don't want to do. If you are using SciTe Editor there are few Debug/Trace options SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference. Share this post Link to post Share on other sites
scriptkitty 1 Posted July 8, 2005 I usually do it this way: if 1=2 then; ignore start ; lots of code ; lots of code ; lots of code endif; ignore end ; code AutoIt3, the MACGYVER Pocket Knife for computers. Share this post Link to post Share on other sites
GaryFrost 18 Posted July 8, 2005 I've done similar, usually have $Debug variable that is either 1 or 0 SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference. Share this post Link to post Share on other sites
Valuater 129 Posted July 8, 2005 I think the easiest is this #cs code code #ce the #cs and #ce are great for this then when you want to test with all the script just and ";" ;#cs code code ;#ce hope that helps 8) Share this post Link to post Share on other sites
Arrrghmatey 0 Posted July 9, 2005 Ah, very smart! I didn't even think of this. All of the suggestions are very good. Thanks!I think the easiest is this#cscodecode#cethe #cs and #ce are great for thisthen when you want to test with all the script just and ";";#cscodecode;#cehope that helps8)<{POST_SNAPBACK}> Share this post Link to post Share on other sites