mIRC Home    About    Download    Register    News    Help

Print Thread
U
uicn_renegade
uicn_renegade
U
I am curious to know if there is a way to create a masked clickable hyper-link like you can here on the forums.

for example, on the forums here you can do:
Code:
[url=http://www.mirc.com/]mIRC[/url]


Which creates a clickable text of "mIRC" that takes a user to that web address.

Is something similar possible in mIRC?

Joined: Nov 2006
Posts: 1,552
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,552
Inside of normal chat conversation (channel- or query messages, notices etc), nope.
You may create your own hotlink events for custom windows, and you may have a "link" item in a dialog of yours run some url.

Example of a dialog item:
Code:
  link "mIRC Discussion Forums", <ItemID>, 10 10 200 10
Example of an associated dialog event that will open the website in the default browser:
Code:
on *:dialog:<Your Dialogname>:sclick:<ItemID>: {
  echo -s single click in Dialog: $dname ID: $did Itemtext: $did($dname,$did).text
  url -a https://forums.mirc.com/ubbthreads.php
}



Link Copied to Clipboard