kodr
Programmer
- Dec 4, 2003
- 368
Is it possible to add data to the file clipboard from Aspect?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sendkey ALT '='
string sTextToCopy
sTextToCopy = "Test"
termkey ALT 'A' ;open the data menua
for i = 1 upto 8 ;arrow down to the file clipboard
sendvkey 0x28 ;0x28 down arrow
endfor
sendvkey 0x0d ;send Enter
strtoclip sTextToCopy ; Copy string to clipboard.
sendkey ALT 'E' ; Send ALT-E to open "Edit" menu.
mspause 250 ; Pause to wait for NOTEPAD.
sendkey 'P' ; Select PASTE to paste string.