Here is what I want to do:

!f::
Run, browserpath www.example.com?groupid=WANTPASTEDVALUE&exporttype=1&vehicle=34928
return

I want to put the value of the clipboard where WANTPASTEDVALUE is.

link|improve this question
Great idea. Thanks – K Robinson Feb 10 at 17:34
Please accept the answer if it was helpful. – prongs Mar 9 at 14:54
feedback

1 Answer

The following builds a URL, from the text you supplied, inserting the clipboard contents where you had WANTPASTEDVALUE in your question.

It then sends that URL to your default browser.

!f::
    URL := "http://www.example.com?groupid=" . CLIPBOARD . "&exporttype=1&vehicle=34928"
    Run, %URL%
return 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.