macro wishlist

Have something you would like to say? let us know.
Post Reply
quatschkopp
Posts: 2
Joined: Sat Oct 22, 2011 7:59 pm

macro wishlist

Post by quatschkopp »

hi folks,

i have two simple wishes, regarding macros.

1.) implement a submacro feature

while running in a macro, the command "SUBMACRO IAMTHESUB" appears. IAMTHESUB is an other macro, defined in iamthesub.txt or what not. after running the submacro, return to the initiating macro script where it was left.

2.) implement a simple loop feature within a macro

for example, the command "LOOP 4" appears. everything between the "LOOP 4" statement and something like "WEND" (or whatnot), is executed four times. after looping, the macro will be running on after the "WEND" statement..

thanks :)
User avatar
Matlo
Posts: 5768
Joined: Wed Jul 06, 2011 7:01 am
Location: France
Contact:

Re: macro wishlist

Post by Matlo »

There's already a way to write submacros:

Code: Select all

#submacro.
MACRO F1
#Your submacro content.

#macro.
MACRO F2
KEY F1
Feel free to write an issue for the loop feature: link. This will be low priority as my free time is limited :(
GIMX creator
Post Reply