motionman95 Posted February 28, 2009 Posted February 28, 2009 Is there a way to paste something that's already on the clipboard in explorer? I don't want to use anything that requires the window to be active...Thanks!
Bru Posted February 28, 2009 Posted February 28, 2009 Make a hotkey. HotKeySet("{F1}", "_Paste") ;Change {F1} to the key you wish. Then in the function _Paste. Something like. Func _Paste() $Text = ClipGet() Send("^v") EndFunc [right][/right]
motionman95 Posted February 28, 2009 Author Posted February 28, 2009 As in "I don't want to use anything that requires the window to be active" I meant the window that I'm sending the paste to. Sorry for not explaining properly.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now