--- In [email protected], "philipp_l_kiefer" <philippkie...@...> wrote:
>
> Hi.
>
> I've tried to do this using PproConf's "Export as text" button, but the
> resulting file of course includes all the button information and would take
> some serious editing to turn it into an operable script file. Is there an
> easier way?
>
> Many thanks
>
> Phil
>
Assuming you don't use more commands, possibly a simple script using cl
functions. Something like
local fh = file.open(..."w")
local theCL = cl.get(...)
for each item in theCL
fh.writeline(item.getleftcmd)
endfor
fh.close