I'm trying to cross check some info on a medical website for correctness. My goal is to highlight select phrases on this website then cross check the research on wikipedia, pubmed, ovid, Google and educus to insure what we're telling people is correct. I've been separate copy/pasting but I'm looking for a way to speed this task by copying then hitting a hotkey and having the sites auto search and open in a separate tab. I've tried Autohotkey.
^z::
send ^c
clipwait
run "http://en.wikipedia.org/wiki/Special:Search?search=%clipboard%&go=Go"
run "http://www.ncbi.nlm.nih.gov/pubmed?term=%clipboard%"
run "http://www.Google.com/search?hl=en&q=%clipboard%&btnG=Search"
run http://www.educus.com/
Winwait educus
Sendinput %clipboard% {Return}
return
I can't seem to figure out how to get this to work for Educus and Ovid. I'm a non programmer and a newb at this so simple language/explanation would be very helpful.
Winwait educuswon't work, because the Educus page does not have educus in the title. – Tom Aug 15 '11 at 6:45