From WikiChip
Difference between revisions of "mirc/commands/hotlink"
m (Bot: Automated text replacement (-Added On:.+\n?\n?\n?\n?\n? +)) |
m (Bot: Fixing compatibility) |
||
Line 30: | Line 30: | ||
== Compatibility == | == Compatibility == | ||
− | + | {{mIRC compatibility|7.23}} | |
== See also == | == See also == |
Revision as of 01:57, 6 July 2014
The /hotlink command can be used to override the default menu as well as add additional items to the default menu from within the on hotlink event.
This event can only be used during the right-click event:
if ($hotlink(event) == rclick) { ; hotlink code }
Synopsis
/hotlink -md [@menu]
Switches
- -m - Creates a popup menu using a custom @menu
- -d - Adds the items from @menu to the default popup menu
Parameters
- @menu - a custom menu to be used for the popup menu
Example
The following example will add a right click menu item to look up commands and identifiers in the help file on mouse hover.
menu @helppop { Lookup Help $1:!help $remove($1, $chr(40), $chr(41)) } on ^$*:hotlink:/^[/$]\S+/:*:{ if ($hotlink(event) == rclick) { hotlink -m @helppop } }
Compatibility
Added: mIRC v7.23
Added on: 19 Mar 2012
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.
See also
mIRC commands list