From WikiChip
Difference between revisions of "mirc/commands/hotlink"
m (PatrolBot moved page /hotlink command - mIRC to mirc/commands/hotlink: per new naming convention) |
m (bot: correcting title) |
||
Line 1: | Line 1: | ||
− | {{mIRC menu}} | + | {{mirc title|/hotlink Command}}{{mIRC menu}} |
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. | 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. | ||
Revision as of 04:20, 4 January 2015
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
Template:mIRC menu 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