Nurech
Nov 9 2008, 11:41 AM
Hey, I've done this pretty little micro for myself but I don't understand how calls work.
1. How do I group(make it a call) e.g from line 3-8, I want this part to be called only once, at start.
2. Now I want to call rest of it 9-20line looping, so far I've done this part with restart.
3. If KeyDown {F3} Call macro, should start macro section x, er doesn't work, how? Same for F4 to stop.
4. And finally, can this tool produce forms? Like a VBA editor or something, or can I tie this micro to a VBA edited form?
Ahk
Nov 16 2008, 08:55 PM
CODE
Procedure Initialize
//lines 3-8
End
Call Initialize
Loop 5
//Rest of macro code??
End
You could just use the other lines of code above it for this purpose though, I don't know what you are asking for exactly.
AcTool has built in forms, but they aren't anywhere near as flexible as actually drawing one using and IDE...these are the only forms you can use. If you wanted to, you could write an application in VB and write a text file (easiest) and let the macro read in what was in the text file.