Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying my hand at AHK and want to make it load up all of the things for when I play runescape. I have no idea what's up with my first script, so if someone could point out what is up with it, I would be eternally greatful. Here is the script.

#r::Run C:\Users\Hassan\Desktop\runescape.exe
Run C:\Program Files (x86)\Mumble\mumble.exe
Run C:\Users\Hassan\AppData\Roaming\Spotify\spotify.exe
Run www.google.com
Run www.zybez.com
Run www.reddit.com
return
share|improve this question

1 Answer

up vote 0 down vote accepted
#r::
Run C:\Users\Hassan\Desktop\runescape.exe
Run C:\Program Files (x86)\Mumble\mumble.exe
Run C:\Users\Hassan\AppData\Roaming\Spotify\spotify.exe
Run http://www.google.com
Run http://www.zybez.com
Run http://www.reddit.com
return

Don't put stuff on the same line as the hotkey. You might also need to add http:// to the urls.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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