m (Bot: Fixing links) |
m (Bot: Fixing links) |
||
Line 2: | Line 2: | ||
This event fills the following identifiers: | This event fills the following identifiers: | ||
− | <div style="background-color: rgba(0,0,0,.03); display: block;"><span style="border-right: 1px dashed rgba(0,0,0,.15); display: inline-block; margin-left: 35px; margin-right: 10px; width: 70px;">''' | + | <div style="background-color: rgba(0,0,0,.03); display: block;"><span style="border-right: 1px dashed rgba(0,0,0,.15); display: inline-block; margin-left: 35px; margin-right: 10px; width: 70px;">'''{{mIRC|$keyval}}'''</span>The [[unicode character|unicode character]] value of the key pressed</div> |
− | <div style="background-color: rgba(0,0,0,.03); display: block;"><span style="border-right: 1px dashed rgba(0,0,0,.15); display: inline-block; margin-left: 35px; margin-right: 10px; width: 70px;">''' | + | <div style="background-color: rgba(0,0,0,.03); display: block;"><span style="border-right: 1px dashed rgba(0,0,0,.15); display: inline-block; margin-left: 35px; margin-right: 10px; width: 70px;">'''{{mIRC|$keychar}}'''</span>The actual character pressed</div> |
− | <div style="background-color: rgba(0,0,0,.03); display: block; margin-bottom: 10px;"><span style="border-right: 1px dashed rgba(0,0,0,.15); display: inline-block; margin-left: 35px; margin-right: 10px; width: 70px;">''' | + | <div style="background-color: rgba(0,0,0,.03); display: block; margin-bottom: 10px;"><span style="border-right: 1px dashed rgba(0,0,0,.15); display: inline-block; margin-left: 35px; margin-right: 10px; width: 70px;">'''{{mIRC|$keyrpt}}'''</span>If the key is being held down/repeating</div> |
== Synopsis == | == Synopsis == | ||
Line 49: | Line 49: | ||
* {{mIRC|/drawtext}} | * {{mIRC|/drawtext}} | ||
* [[on keyup - mIRC|ON KEYUP]] | * [[on keyup - mIRC|ON KEYUP]] | ||
− | * | + | * {{mIRC|$keyval}} |
− | * | + | * {{mIRC|$keychar}} |
− | * | + | * {{mIRC|$keyrpt}} |
{{mIRC on event list}} | {{mIRC on event list}} | ||
[[Category:MIRC on events]] | [[Category:MIRC on events]] |
Revision as of 20:08, 5 July 2014
The ON KEYDOWN event is triggered when a key is pressed down inside of a custom @window.
This event fills the following identifiers:
Synopsis
ON <level>:KEYDOWN:<@>:<key,...,keyN>:<commands>
Parameters
<level>The level for the event to trigger.
<@>The custom window where this event should listen. Can be @ for all windows.
<commands>The specific key, or keys to listen for. Can specify multiple keys, such as:
ON *:KEYDOWN:@myWindow:38,42,55,78:echo -a $keyval
Example
Create an alias that launches a custom, picture window which listens for key presses and displays the key value pressed, the key character pressed, and if it is repeating:
alias keyDownTest { window -p $+ $iif($window(@myWindow),ra) @myWindow 550 300 250 105 } ON *:KEYDOWN:@myWindow:*: { clear @myWindow drawtext @myWindow 1 3 3 Key value: $iif($keyval,$v1,NA) drawtext @myWindow 1 3 25 Key character: $iif($keychar,$v1,NA) drawtext @myWindow 1 3 47 @myWindow Repeating: $keyrpt }
The following command can now be typed into any mIRC command prompt:
/keyDownTest
Below is an image reflecting what this example will look like:
Note that this makes use of a picture window, as well as the drawtext command. These types of windows and their tools can be very powerful in creating some amazing graphical layouts, as well as mIRC games.
Compatibility
Added: mIRC v5.8
Added On:05/09/2000