Archive: May 2010

Macro Scheduler 12 Beta Updates

May 11, 2010 by Marcus Tettmar in Uncategorized

Just a quick reminder that you can keep up to date with beta builds at the beta forum. The latest build is 028. So if you have an earlier build you should download now from the registered user area. Everything seems to be going quite well and all being well we should now be in […]

Read more »

Run All Macros in a Folder/Group

May 7, 2010 by Marcus Tettmar in Automation, Scripting

Someone asked me today how to run all macros found in a folder. This simple script will run all macros it finds in its own folder in turn: GetFileList>%SCRIPT_DIR%\*.scp,MacroFiles Separate>MacroFiles,;,Macros If>Macros_count>0 Let>k=0 Repeat>k Let>k=k+1 Let>this_macro=Macros_%k% If>this_macroSCRIPT_FILE Macro>this_macro Endif Until>k=Macros_count Endif Note the check to make sure it doesn’t run itself! This could be useful where […]

Read more »