From WikiChip
Difference between revisions of "mirc/on events/on active"
(Created On active event - mIRC) |
m (Bot: adding missing title) |
||
(19 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{mirc title|On Active - Events}} | ||
The '''ON ACTIVE''' event monitors when a certain window, or window type, is activated or has had its active status changed. | The '''ON ACTIVE''' event monitors when a certain window, or window type, is activated or has had its active status changed. | ||
Line 5: | Line 6: | ||
== Parameters == | == Parameters == | ||
− | |||
− | < | + | * '''<level>''' - The corresponding {{mIRC|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 == | == Examples == | ||
<source lang="mIRC">; Listen for any window becoming active, | <source lang="mIRC">; Listen for any window becoming active, | ||
; then display information about that window and the previous active window | ; then display information about that window and the previous active window | ||
+ | |||
ON *:ACTIVE:*:echo -a * $active is now active, took over for $lactive</source> | ON *:ACTIVE:*:echo -a * $active is now active, took over for $lactive</source> | ||
− | |||
== Compatibility == | == Compatibility == | ||
− | + | {{mIRC compatibility|5.9}} | |
− | |||
− | |||
== See Also == | == See Also == | ||
* [[List of on events - mIRC|mIRC Events]] | * [[List of on events - mIRC|mIRC Events]] | ||
* [[On appactive - mIRC|ON APPACTIVE]] | * [[On appactive - mIRC|ON APPACTIVE]] | ||
− | * | + | * {{mIRC|$active}} |
− | * | + | * {{mIRC|$activecid}} |
− | * | + | * {{mIRC|$activewid}} |
− | * | + | * {{mIRC|$lactive}} |
− | * | + | * {{mIRC|$lactivecid}} |
− | * | + | * {{mIRC|$lactivewid}} |
+ | {{mIRC on event list}} | ||
− | [[Category:mIRC on events]] | + | [[Category:mIRC on events|active]] |
Latest revision as of 19:11, 15 June 2017
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
The ON ACTIVE event monitors when a certain window, or window type, is activated or has had its active status changed.
Synopsis[edit]
ON <level>:ACTIVE:<*#?=!@>:<commands>
Parameters[edit]
- <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[edit]
; 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[edit]
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[edit]
mIRC on event list