Difference between revisions of "On active"
From Scriptwiki
m (preview) |
m |
||
(One intermediate revision by one other user not shown) | |||
Line 3: | Line 3: | ||
The above event triggers whenever a window in mIRC is activated. | The above event triggers whenever a window in mIRC is activated. | ||
− | * '''$active''' returns the name of the currently active window | + | * '''$active''' returns the name of the currently active window. |
− | * '''$lactive''' returns the name of the window that was just de-activated. The status window is called "Status Window". | + | * '''$lactive''' returns the name of the window that was just de-activated. |
+ | |||
+ | The status window is called "Status Window". | ||
'''Note''' that one or both $active or $lactive can return [[$null]]. | '''Note''' that one or both $active or $lactive can return [[$null]]. | ||
Line 13: | Line 15: | ||
== See Also == | == See Also == | ||
− | + | * [[On_appactive|On Appactive event]] to react on mIRC becoming active or inactive. | |
+ | * [[$active]] | ||
[[Category:Events]] | [[Category:Events]] |
Latest revision as of 09:49, 2 July 2007
The on ACTIVE event trigger when a window in mIRC is activated.
on <level>:ACTIVE:<*#?=!@>:<commands>
The above event triggers whenever a window in mIRC is activated.
- $active returns the name of the currently active window.
- $lactive returns the name of the window that was just de-activated.
The status window is called "Status Window".
Note that one or both $active or $lactive can return $null.
Example
On *:ACTIVE:*: { echo -a My active window: $active My deactived window: $lactive }
This event will trigger whenever you change the active window in your mIRC.
See Also
- On Appactive event to react on mIRC becoming active or inactive.
- $active