From WikiChip
Editing mirc/identifiers/$mouse

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 18: Line 18:
 
* '''.lb''' - returns $true if a mouse event occured over a listbox, $false otherwise.
 
* '''.lb''' - returns $true if a mouse event occured over a listbox, $false otherwise.
 
* '''.key''' - Returns a bitmask, you can use the bitwise & operator to check for button/shift/alt/control state:
 
* '''.key''' - Returns a bitmask, you can use the bitwise & operator to check for button/shift/alt/control state:
** if ($mouse.key & 1) echo left mouse button is pressed.
+
** if ($mouse.key & 1) echo left button is pressed.
 
** if ($mouse.key & 2) echo control key is pressed.
 
** if ($mouse.key & 2) echo control key is pressed.
** if ($mouse.key & 4) echo either left-or-right shift key is pressed.
+
** if ($mouse.key & 4) echo shift key is pressed.
** if ($mouse.key & 8) echo either alt key is pressed.
+
** if ($mouse.key & 8) echo alt key is pressed.
 
** if ($mouse.key & 16) echo right mouse button is pressed.
 
** if ($mouse.key & 16) echo right mouse button is pressed.
** if ($mouse.key & 32) echo middle mouse button is pressed.
 
** if ($mouse.key & 64) echo right shift key is pressed.
 
** if ($mouse.key & 128) echo right control key is pressed.
 
** if ($mouse.key & 256) echo right alt key is pressed.
 
** if ($mouse.key & 512) echo capslock is enabled.
 
** if ($mouse.key & 1024) echo scroll lock is enabled.
 
** if ($mouse.key & 2048) echo numlock lock is enabled.
 
** if ($mouse.key & 4096) echo left shift key is pressed.
 
** if ($mouse.key & 8192) echo left control key is pressed.
 
** if ($mouse.key & 16384) echo left alt key is pressed.
 
  
 
== Example ==
 
== Example ==
 
<source lang="mIRC">//echo -a $mouse.x</source>
 
<source lang="mIRC">//echo -a $mouse.x</source>
 
== Notes ==
 
 
Pressing any of the Ctrl or Alt or Shift keys causes 2 of the above masks to be non-zero, so pressing the right-shift enables both the 4 and 64 bit masks. You can check if the right-shift IS pressed and the left-shift is NOT pressed, by checking whether $and($mouse.key,$calc(4096+64)) == 64
 
  
 
== 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)