m (→Example) |
(→See also) |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{mirc title|$keyval identifier}}'''$keyval''' returns the key code of the key being pressed inside an {{mIRC|on keydown}} or {{mIRC|on keyup}} event. | |
+ | |||
+ | '''/!\''' This identifier is filled inside {{mirc|on char}} but this is mostly for convenience and is incorrect, inside {{mirc|on char}}, it only makes sense to check for {{mirc|$keychar}} | ||
== Synopsis == | == Synopsis == | ||
Line 8: | Line 10: | ||
== Example == | == Example == | ||
− | Create an alias that launches a custom, | + | Create an alias that launches a custom, {{mirc|picture window}} which listens for key presses and displays the key value pressed, the key character pressed, and if it is repeating: |
<source lang="mIRC">alias keyDownTest { | <source lang="mIRC">alias keyDownTest { | ||
window -p $+ $iif($window(@myWindow),ra) @myWindow 550 300 250 105 | window -p $+ $iif($window(@myWindow),ra) @myWindow 550 300 250 105 | ||
Line 14: | Line 16: | ||
ON *:KEYDOWN:@myWindow:*: { | ON *:KEYDOWN:@myWindow:*: { | ||
clear @myWindow | clear @myWindow | ||
− | drawtext @myWindow 1 3 3 Key value: | + | drawtext @myWindow 1 3 3 Key value: $keyval |
− | |||
drawtext @myWindow 1 3 47 @myWindow Repeating: $keyrpt | drawtext @myWindow 1 3 47 @myWindow Repeating: $keyrpt | ||
− | }</source> | + | } |
+ | ON *:char:@myWindow:*: { | ||
+ | drawtext @myWindow 1 3 25 Key character: $keychar | ||
+ | } | ||
+ | </source> | ||
The following command can now be typed into any mIRC command prompt: | The following command can now be typed into any mIRC command prompt: | ||
Line 26: | Line 31: | ||
[[File:Keyup event.png|This screenshot shows an example of the ON KEYDOWN event custom example.]] | [[File:Keyup event.png|This screenshot shows an example of the ON KEYDOWN event custom example.]] | ||
− | Note that this makes use of a | + | Note that this makes use of a {{mirc|picture window}}, as well as the {{mirc|/drawtext|drawtext command}}. These types of {{mirc|picture windows|windows}} and their tools can be very powerful in creating some amazing graphical layouts, as well as mIRC games. |
== Compatibility == | == Compatibility == | ||
− | + | {{mirc compatibility|5.5}} | |
− | |||
− | |||
− | == See | + | == See also == |
− | * | + | * {{mirc|on keyup}} |
− | * | + | * {{mirc|on keydown}} |
− | * | + | * {{mirc|$keychar}} |
− | * [[ | + | * {{mirc|$keyrpt}} |
− | + | * {{mirc|$keylparam}} | |
+ | * [[List of identifiers - mIRC]] | ||
+ | {{mIRC identifier list}} | ||
+ | [[Category:mIRC identifiers|keyval]] |
Latest revision as of 14:42, 12 August 2022
$keyval returns the key code of the key being pressed inside an on keydown or on keyup event.
/!\ This identifier is filled inside on char but this is mostly for convenience and is incorrect, inside on char, it only makes sense to check for $keychar
Synopsis[edit]
$keyval
Parameters[edit]
None
Example[edit]
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: $keyval drawtext @myWindow 1 3 47 @myWindow Repeating: $keyrpt } ON *:char:@myWindow:*: { drawtext @myWindow 1 3 25 Key character: $keychar }
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[edit]
Added: mIRC v5.5
Added on: 08 Jan 1999
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.