Page 1 of 1

Possible to send buffer as program command line parameter?

Posted: 22 Aug 2012, 08:05
by ObtuseAngle
One of the predefined actions is Run Application, so you can run e.g. myprogram.exe foo
Is it possible to send the buffer e.g. myprogram.exe [Buffer] ?

While writing this post I realised it might be possible to do this as a script (untested):

Dim wsh
Set wsh = CreateObject("Wscript.Shell")
wsh.Run "myprogram.exe " & HIDMacros.GetBuffer

Is there a better or faster way I should be using?

Re: Possible to send buffer as program command line paramete

Posted: 23 Aug 2012, 07:36
by admin
Currently not, but good tip for improvement.
Ask me in a month why it takes me so long to implement :-)