Skip to content
TG007 community snippet #35

Web Link Alias

This is something I wrote for one of the members here on Techgear. Its a web link alias allowing you to open weblinks in mIRC. Im sure many have done this idea before but this is small and effective! I may add upon this some more event

By guest Added Apr 18, 2010
General IRC All snippets
mIRC script 8 lines
About this snippet

Overview

This is something I wrote for one of the members here on Techgear. Its a web link alias allowing you to open weblinks in mIRC. Im sure many have done this idea before but this is small and effective! I may add upon this some more eventually but I figured
Source code

mIRC script

8 lines · 264 characters
alias web { 
  window -n $+(@,$1-)
  dll " $+ $mircdirdlls\nhtmln_2.95.dll $+ " attach $window($+(@,$1-)).hwnd
  dll " $+ $mircdirdlls\nhtmln_2.95.dll $+ " navigate $1-
  window -x $+(@,$1-) 
}

on *:start:{ /web http://www.youtube.com/watch?v=linkexample }
Community

Comments

Want to join the discussion? Sign in to TG007.
DMASaturday, 29 April, 2023
what are the sites u can use?
DMASaturday, 29 April, 2023
what are the commands for this?
guestFriday, 23 April, 2010
thats cool even if you have atoolbar you can add your favorite links to it and explore them in your mirc. thankx
PabloMonday, 19 April, 2010
Good tool to have, especially if you already have to many browser windows open.
EvolutionSunday, 18 April, 2010
Seen this alot. I use the same method for viewing profiles. Tis handy
View 1 older comment
guestSunday, 18 April, 2010
The on start event was just an example of the snippets use and is really not apart of the alias itself! There are many uses for this rather small snippet lol!!