|
You can't directly use clipboard inside the macros. Because Flashpaste itself use it when process text template.
You can try to use %Clip()% macro but you should copy data in clipboard manually first, try the the following: 1. copy item manually in clipboard 2. run template with this macros %Control(ALT_F_R_2)% "open file from "recent file" list %Control(@1000)% %Control(CTRL_M)% "add new slide %Control(@500)% %Clip()% "insert copied item <<< does not work %Control(@500)% %Control(CTRL_S)% "save file %Control(CTRL_F4)% "close file
And, please note, really macros should be without any other text, spaces and new line symbol
%Control(ALT_F_R_2)%%Control(@1000)%%Control(CTRL_M)%%Control(@500)%%Clip()%%Control(@500)%%Control(CTRL_S)%%Control(CTRL_F4)%
If you need comment them you can use %Remark(...)% , ie
%Control(ALT_F_R_2)%%Remark(open file from "recent file)%%Control(@1000)%...
_________________ Best regards, Tiushkov Nikolay
|