AHK-generator icon indicating copy to clipboard operation
AHK-generator copied to clipboard

Add feature for opening/activating default browser

Open mshafer-NI opened this issue 1 year ago • 0 comments

Would be nice if we could just have the default browser easily at hand: https://www.autohotkey.com/board/topic/67330-how-to-open-default-web-browser/

Could use something like this:

   default_browser := DefaultBrowser()
   parts := StrSplit(default_browser, "\")
   name := parts.Pop()
   msgBox, name is %name%
   return

mshafer-NI avatar Apr 12 '23 14:04 mshafer-NI