Project

General

Profile

$statusbar » History » Revision 8

Revision 7 (Per Amundsen, 08/30/2018 07:34 AM) → Revision 8/13 (Per Amundsen, 01/02/2019 05:29 AM)

_Added in 1.9.3_ 

 *$statusbar* 

 Returns [[$true]] if [[/statusbar|Statusbar]] is visible, otherwise [[$false]]. 

 ----------------------------------------------------------------------------- 

 _Added in 1.9.7_ 

 *$statusbar(name|N)* 

 Returns the Statusbar item matching name or the Nth item, if N = 0, number of Statusbar items. 

 _See also [[/statusbar]]._ 

 *Parameters* 

 name|N - Statusbar item name or the Nth item. 

 *Properties* 

 .name - Item name. 
 .text - Item text. 
 .icon - [[$true]] if the item has a icon, otherwise [[$false]]. 
 .visible - [[$true]] if the item is visible, otherwise [[$false]]. 
 .custom - [[$true]] if the item is custom, otherwise [[$false]]. 
 .tooltip - Item tooltip. 
 .alias - Item alias. 
 .popup - Item popup name. 
 .x - Horizontal position of the statusbar item relative to the main AdiIRC window. 
 .y - Vertical position of the statusbar item relative to the main AdiIRC window. 
 .w - Statusbar item width. 
 .h - Statusbar item height. 
 .dx - Horizontal position of the statusbar item relative to the desktop. 
 .dy - Vertical position of the statusbar item relative to the desktop. 

 *Example* 

 <pre> 
 ; Print number of Statusbar items. 
 //echo -ag $statusbar(0) 

 ; Print the first Statusbar item name. 
 //echo -ag $statusbar(1) 
 </pre>