; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a ; semicolon, such as this one, are comments. They are not executed. ; This script has a special filename and path because it is automatically ; launched when you run the program directly. Also, any text file whose ; name ends in .ahk is associated with the program, which means that it ; can be launched simply by double-clicking it. You can have as many .ahk ; files as you want, located in any folder. You can also run more than ; one ahk file simultaneously and each will get its own tray icon. ; SAMPLE HOTKEYS: Below are two sample hotkeys. The first is Win+Z and it ; launches a web site in the default browser. The second is Control+Alt+N ; and it launches a new Notepad window (or activates an existing one). To ; try out these hotkeys, run AutoHotkey again, which will load this file. ; # means Windows key in AutoHotKey. So you need to press Windows and f key on your keyboard #f::Run C:\Program Files\Mozilla Firefox\firefox.exe http://www.gmail.com/ http://www.yahoo.com http://www.google.com/reader http://www.learnqtp.com/forums/ ; Open a frequently used folder #d::Run E:\Personal\Demo ::trn::http://www.learnqtp.com/training/ ::crt::http://www.learnqtp.com/certification.htm ::frm::http://www.learnqtp.com/forums/ ::lqtp::http://www.learnqtp.com/ ::llr::http://learnloadrunner.com/ ::lqc::http://www.learnqualitycenter.com/ ::plm::Please let me know if you need some more information. ::fft::Feel free to let me know if you need some more information. ::prpg:: Please read posting guidelines before posting queries on QTP forums http://www.learnqtp.com/forums/Thread-Posting-Guidelines ::qdoc::http://www.learnqtp.com/QTPTrainingDoc.pdf ::qfaq::http://www.learnqtp.com/QTPTrainingFAQs.pdf ::ycg::You can get registered here http://www.LearnQTP.com/training/ ::addrs::1600 Amphitheatre Parkway, Mountain View, CA 94043 ::t@g::abc@gmail.com ::a@l::abc@learnqtp.com ; ******* Multi-line ******* ::sig:: ( Thanks and Regards Ankur Jain ) ::sig1:: ( Thanks and Regards Ankur Jain http://www.learnqtp.com/ ) ::after30:: ( What if I need it later for practice because purchasing it is very costly? >> 1) Ask your company for a license 2) Install it on some secondary machine you may have 3) Reinstall OS on your machine and then install QTP. 4) You can ask HP to extend the trial license. We have instructions in our members area on how to do that. ) ; Note: From now on whenever you run AutoHotkey directly, this script ; will be loaded. So feel free to customize it to suit your needs. ; Please read the QUICK-START TUTORIAL near the top of the help file. ; It explains how to perform common automation tasks such as sending ; keystrokes and mouse clicks. It also explains more about hotkeys.