After seeing this post... run WebRecorder macro from Perl...
...I had hoped to be able to compile a script made with WebRecorder and just run the exe but so far I haven't been able to do this.mtettmar wrote:WebRecorder macros are Macro Scheduler files. WebRecorder generates the code and the script files are played back in Macro Scheduler.
Macros can be run from the command line using:
msched.exe macro_name/script_file
And you can pass parameters on the command line:
msched.exe script_file /parm1=value1 /parm2=value2 /etc=...
Even easier would be if you compile the script to an executable. Then you just need to run the exe:
macroexe.exe /parm1=value1 /parm2=value2
So you can simply run this in Perl with the system command:
system('macro.exe /parm1=value1 /parm2=value2');
See Command Line Options in the Macro Scheduler help file.
I've installed the WebRecorder trial version and your WebRecorder script from this post runs fine when run from within Macro Scheduler.
I can compile it into an exe but the exe fails when run with the same error it gave when I ran the code from within Macro Scheduler prior to installing WebRecorder.
Am I missing something or is this not possible? If not, is this planned for the future... similar to how the Image Recognition Library commands are now compilable?
Anyone else out there able to do this or looking for this ability?