Hi all,
using the script function Output.Copy one can copy the script output panel to the clipboard, what is very helpful now and then.
To avoid the spurious and unnecessary display on the output panel before, is there another practicable way using scripts in AA5 to copy data to the clipboard?
Any hint would be much appreciated,
Rolf
Scripts and Clipboard
-
- Posts: 253
- Joined: 03 Dec 2018, 22:33
Re: Scripts and Clipboard
Hello,
you could use the function CopyText$, example:
a$ = "hello world"
CopyText$(a$)
or in the Menu you could disable the option "Show output" so
that the Output panel is not shown after the first Print()
function.
Best Regards
Martino
you could use the function CopyText$, example:
a$ = "hello world"
CopyText$(a$)
or in the Menu you could disable the option "Show output" so
that the Output panel is not shown after the first Print()
function.
Best Regards
Martino