From WikiChip
Difference between revisions of "mirc/on events/on active"
< mirc‎ | on events

(Parameters)
(Parameters)
Line 8: Line 8:
  
 
* '''<level>''' - The corresponding {{mIRC|access levels}} for the event to trigger.
 
* '''<level>''' - The corresponding {{mIRC|access levels}} for the event to trigger.
* '''<*><?><#[,#]>''' - The place, or places where the event listens, you can seperate them by comma.
+
* '''<*><?><#[,#]>''' - The place, or places where the event listens, you can specify specific name of window, seperate them by comma.
 
** '''*''' - Any query/channel window
 
** '''*''' - Any query/channel window
 
** '''?''' - Any query windows
 
** '''?''' - Any query windows
 
** '''#''' - Any channel window
 
** '''#''' - Any channel window
** '''#channel[,#]''' - one or more specific channels, seperate them by comma
 
 
** '''=''' - Any DCC chat
 
** '''=''' - Any DCC chat
 
** '''!''' - Any DCC server
 
** '''!''' - Any DCC server

Revision as of 10:34, 6 February 2016

Template:mIRC Guide The ON ACTIVE event monitors when a certain window, or window type, is activated or has had its active status changed.

Synopsis

ON <level>:ACTIVE:<*#?=!@>:<commands>

Parameters

  • <level> - The corresponding access levels for the event to trigger.
  • <*><?><#[,#]> - The place, or places where the event listens, you can specify specific name of window, seperate them by comma.
    • * - Any query/channel window
    • ? - Any query windows
    • # - Any channel window
    • = - Any DCC chat
    • ! - Any DCC server
    • @ - Any custom window
  • <commands> - The commands to be performed when the event triggers

Examples

; Listen for any window becoming active,
; then display information about that window and the previous active window
 
ON *:ACTIVE:*:echo -a * $active is now active, took over for $lactive

Compatibility

Added: mIRC v5.9
Added on: 26 Apr 2001
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also