From WikiChip
Editing mirc/identifiers/$window

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

This page supports semantic in-text annotations (e.g. "[[Is specified as::World Heritage Site]]") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the getting started, in-text annotation, or inline queries help pages.

Latest revision Your text
Line 1: Line 1:
{{mirc title|$window Identifier}}'''$window''' returns information about the specified window for the current connection or returns the name of the @window that is left inside the 'leave' menu {} event.
+
{{mirc title|$window Identifier}}'''$window''' returns information about the specified window for the current connection.
  
 
== Synopsis ==
 
== Synopsis ==
<source lang="mIRC">$window(N/name)
+
<pre>$window(N/name)</pre>
 
 
$window
 
</source>
 
  
 
== Parameters ==
 
== Parameters ==
  
* '''N''' - The Nth @custom window, if N is 0, returns the total number of windows.
+
* '''N''' - The Nth window, if N is 0, returns the total number of windows.
* '''Name''' - The name of query/channel/@custom window, or "status window", "channel list", etc..
+
* '''Name''' - The name of query/channel/@custom window, or "status window"
  
'''Note''': you can use -1 or @desktop to refer to the screen, -2 or @mirc to refer to the main mIRC window, and -3 or @mdi to refer to the mdi window where all others windows inside mIRC are displayed, these @name are reserved. You can use the .x .y .w .h .dx .dy .dw .dh properties with these parameters to get the size of these windows (or your screen's size)
+
'''Note''': you can use -1 or @desktop to refer to the screen, -2 or @mirc to refer to the main mIRC window, and -3 or @mdi to refer to the mdi window where all others windows inside mIRC are displayed, these @name are reserved. You can use the .x .y .w .h properties with these parameters to get the size of these windows (or your screen's size)
  
 
== Properties ==
 
== Properties ==
 
* '''x,y,w,h''' - the left, top positions, and the width and height of the window respectively
 
* '''x,y,w,h''' - the left, top positions, and the width and height of the window respectively
 
* '''dx,dy''' - the left, top positions of the window relative to the desktop
 
* '''dx,dy''' - the left, top positions of the window relative to the desktop
* '''cx,cy''' - the left, top positions of the window relative to the primary monitor
 
 
* '''dw,dh''' - the width and height of the text display area
 
* '''dw,dh''' - the width and height of the text display area
 
* '''bw,bh''' - the width and height of the bitmap for a graphic window
 
* '''bw,bh''' - the width and height of the bitmap for a graphic window
Line 25: Line 21:
 
* '''font''' -  the name of the window's font
 
* '''font''' -  the name of the window's font
 
* '''fontsize''' - the window's font size
 
* '''fontsize''' - the window's font size
* '''fontdialogsize''' - returns the size of the current font in font dialog size
 
 
* '''fontbold''' - $true if the font is bold, otherwise returns $false
 
* '''fontbold''' - $true if the font is bold, otherwise returns $false
 
* '''fontitalic''' - $true if the font is italic, otherwise returns $false
 
* '''fontitalic''' - $true if the font is italic, otherwise returns $false
 
* '''fontcs''' - the character set of the current font
 
* '''fontcs''' - the character set of the current font
* '''fullscreen''' - $true if the window is in fullscreen, $false otherwise
 
 
* '''logfile''' - the path\filename of the window's logfile if one is open
 
* '''logfile''' - the path\filename of the window's logfile if one is open
 
* '''stamp''' - timestamp setting, $true or $false
 
* '''stamp''' - timestamp setting, $true or $false
 
* '''icon''' - returns on/off depending on whether icon is visible
 
* '''icon''' - returns on/off depending on whether icon is visible
 
* '''ontop''' - returns ontop status for a window, $true or $false
 
* '''ontop''' - returns ontop status for a window, $true or $false
* '''type''' -  returns window type: status,channel,custom,query,etc...
+
* '''type''' -  returns window type: status,channel,custom,query,Urls List
 
* '''anysc''' -  returns $true or $false to indicate if the /window was created using the -i switch
 
* '''anysc''' -  returns $true or $false to indicate if the /window was created using the -i switch
 
* '''wid''' - returns the window id number
 
* '''wid''' - returns the window id number
Line 44: Line 38:
 
* '''tbtext''' - returns the treebar button text
 
* '''tbtext''' - returns the treebar button text
 
* '''tbstate''' - returns treebar button state for a window, 0=hidden 1=not hidden
 
* '''tbstate''' - returns treebar button state for a window, 0=hidden 1=not hidden
* '''idle''' - returns the number of second elapsed since someone different from you talked in a channel/query
+
* '''idle''' - returns the number of second elapsed since someone different from you spoke in a channel/query
 
* '''lb''' - returns 0 if the window has no listbox, 1 if it has a listbox, or 2 if it has a side listbox
 
* '''lb''' - returns 0 if the window has no listbox, 1 if it has a listbox, or 2 if it has a side listbox
* '''.utf''' - used to returns the utf mode of the window which could be changed via the /font setting in mIRC 6.17-6.35, 1 = default, 2 = utf8 is displayed (decoded) only, 3 = utf8 is displayed and encoded, nowadays it always seems to return 2, even if you disabled the encoding and decoding of utf8 in main mirc option
 
  
 
== Example ==
 
== Example ==
Line 55: Line 48:
 
//echo -a Channel named #test $iif($window(#test),is open on this .cid,is not open on this .cid but might be open on other .cid)
 
//echo -a Channel named #test $iif($window(#test),is open on this .cid,is not open on this .cid but might be open on other .cid)
 
</source>
 
</source>
 
<source lang="mIRC">
 
//var %i $window(0) , %list | while (%i) { var %list $window(%i).sbtext %list | dec %i } | echo -a These are the @custom windows as shown in the switchbar: %list (windows listed without @ were created using -k switch)
 
//echo -a The font of the active window is: $window($active).font $window($active).fontsize $iif($window($active).fontbold,Bold) $iif($window($active).fontitalic,Italic)
 
//window -ea @test | titlebar @test This text appears in the titlebar | [ $iif($window(@test).type == listbox,aline,echo) ] @test The titlebar of this window shows $window(@test).title
 
//window -c @test | window -ekaido @test | timertest 99 1 echo @test $!timer(test).reps $!asctime The Connection id $!window(@test).cid $!scid( $!window(@test).cid ).network changes as you click between windows attached to different connections
 
</source>
 
 
 
  
 
== Compatibility ==
 
== Compatibility ==

Please note that all contributions to WikiChip may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see WikiChip:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)