Cedeq Community Forum

Full Version: Keyboard Shortcut - Open a Web Page with a Non-default Web Browser
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Creating a shortcut to open a web page with ShortKeeper’s "Open web page" command is easy. The shortcut will open the web page with your default web browser. But what if you want to open the web page with a non-default web browser? AutoHotkey has you covered. Instead of using ShortKeeper’s "Open web page" command, use the "Run AutoHotkey code" command with your own AutoHotkey code.

Need help creating a keyboard shortcut with ShortKeeper using the following AutoHotkey code? This 5-minute tutorial will help!

In the PARAM field, you could use one of the following examples:

Run % "firefox.exe " . "http://www.google.com"
Run % "chrome.exe " . "http://www.google.com"
Run % "iexplore.exe " . "http://www.google.com"

Simple enough!!