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

(Parameters)
m (Bot: adding missing title)
Line 1: Line 1:
{{mIRC Guide}}
+
{{mirc title|On Close - Events}}
 
The '''ON CLOSE''' event triggers within mIRC when a specific window type is closed.
 
The '''ON CLOSE''' event triggers within mIRC when a specific window type is closed.
  

Revision as of 20:12, 15 June 2017

The ON CLOSE event triggers within mIRC when a specific window type is closed.

Synopsis

ON <level>:CLOSE:<?|@|=|!|*>:<commands>

Parameters

  • <*><?><@><=><!> - The place, or places where the event listens, you can specify specific name of window, seperate them by comma.
    • * - Any query/dcc/custom windows
    • ? - Any query windows
    • = - Any dcc chat windows
    • ! - Any dcc server windows
  • <commands> - The commands to be performed when the event triggers

Local identifiers

$target is filled with the name of the window related to the event.

Examples

; When DCC Chats are closed, send a notice to
; the person.
 
ON *:CLOSE:=:notice $nick Hey, thank you so much for the chat!
; When any window is closed, echo the window name
; to a custom @windowWatcher window. If that window doesn't exist,
; create it first.
 
ON *:CLOSE:*: {
  $iif(!$window(@windowWatcher),window @windowWatcher)
  echo @windowWatcher Window Closed: $target $+ .
}

Compatibility

Added: mIRC v5.3
Added on: 13 Dec 1997
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also

ON OPEN