是否可以使用脚本将剪贴板内容粘贴到输入框中?我还没有成功。每次输入框弹出时,它似乎都会中断脚本,并且应该将剪贴板内容粘贴到输入框的代码不会执行。
InputBox, var, Paste clipboard content
Sleep, 100
Send, {CTRLDOWN}v{CTRLUP}
Return
有任何想法吗?
谢谢!
答案1
SetTimer,sendclipboard,-1
InputBox,OutputVar,Paste clipboard content
sendclipboard:
controlSend,,^v,Paste clipboard content
return