When click the button that calls an isometric number and prints it on the command window, I want to memorize the isometric number on the clipboard.
So, it is easy to paste it to other windows.
Is there any method?
When click the button that calls an isometric number and prints it on the command window, I want to memorize the isometric number on the clipboard.
So, it is easy to paste it to other windows.
Is there any method?
Hi,
There are cleaner and more advanced methods, but perhaps the easiest is to use the Clip Windows command in a PML Syscom command, like this:
syscom 'echo|set /p="Your text" | clip'
Example of usage with the name of Current Element:
syscom 'echo|set /p="$!!ce.name" | clip'
Thanks guys, it's help a lot