JnLlnd / FoldersPopup

Popup menu to jump instantly from one folder to another. Freeware.
code.jeanlalonde.ca/folderspopup/
45 stars 7 forks source link

Run URL brings a "The system cannot find the file specified" error #130

Closed JnLlnd closed 9 years ago

JnLlnd commented 9 years ago

See: http://code.jeanlalonde.ca/folderspopup/#comment-11207

Two occurrences. One have Firefox as default browser (waiting for the other,s answer). See: http://www.autohotkey.com/board/topic/16478-firefox-as-default-browser-problem-running-url/

JnLlnd commented 9 years ago

Possible solution from SKAN (http://www.autohotkey.com/board/topic/7803-need-alternate-way-to-open-website/#entry48478):

LoadWebSite("http://www.google.com") 

LoadWebSite(URL) 
{ 
    IniWrite, % URL, %temp%\Shortcut.url, InternetShortcut, URL 
    Run %temp%\Shortcut.url 
}
JnLlnd commented 9 years ago

It seems that the error occurred because the variable strAppLangingPage contained an unwanted leading space (typo). Space removed in v4.2.2 and user with Forefox confirmed that the URL now loads correctly.