$appactive

From Scriptwiki
Revision as of 16:03, 10 November 2005 by Saturn (talk | contribs) (Reverted edit of Microbe, changed back to last version by Zyberdog)

Jump to: navigation, search

Returns $true if mIRC is the active application, otherwise it returns $false.

$appactive
  • This identifier has no properties or options.

Example

This example will beep if someone mentions your nick in a channel, but only if you are currently looking at another application.

 on *:TEXT:$(* $+ $me $+ *):#:{
   ;Checking if $appactive returns $false by prefixing it with the ! character.
   if (!$appactive) {
     ;Beep because someone mentioned your nick, and you don't have mIRC in focus!
     beep
   }
 }

See Also

$appstate provides more detailed information about what state mIRC is in.