From WikiChip
Editing mirc/on events/on keydown
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: | ||
− | + | The '''On keydown''' event is triggered when a key is pressed down inside of a custom [[custom windows - mIRC|@window]]. | |
− | The ''' | ||
− | + | 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;">'''[[$keyval identifier - 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;">'''[[$keychar identifier - 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;">'''[[$keyrpt identifier - mIRC|$keyrpt]]'''</span>If the key is being held down/repeating</div> | ||
== Synopsis == | == Synopsis == | ||
− | <pre>ON <level>:KEYDOWN:<@>:< | + | <pre>ON <level>:KEYDOWN:<@>:<key,...,keyN>:<commands></pre> |
== Parameters == | == Parameters == | ||
− | <span style="display: inline-block; width: 105px;">'''<level>'''</span>The | + | <span style="display: inline-block; width: 105px;">'''<level>'''</span>The level for the event to trigger. |
− | <span style="display: inline-block; width: 105px;">'''<@>'''</span>The | + | <span style="display: inline-block; width: 105px;">'''<@>'''</span>The [[custom windows - mIRC|custom window]] where this event should listen. Can be '''@''' for all windows. |
− | <span style="display: inline-block; width: 105px;">'''< | + | <span style="display: inline-block; width: 105px;">'''<commands>'''</span>The specific key, or keys to listen for. Can specify multiple keys, such as: |
− | <source lang="mIRC">ON *:KEYDOWN:@myWindow:38,42,55,78:echo -a $keyval</source | + | <source lang="mIRC">ON *:KEYDOWN:@myWindow:38,42,55,78:echo -a $keyval</source> |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Example == | == Example == | ||
− | Create an alias that launches a custom, [[ | + | Create an alias that launches a custom, [[picture windows - 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 44: | Line 38: | ||
[[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 [[picture windows - mIRC|picture window]], as well as the [[/drawtext command - mIRC|drawtext command]]. These types of [[picture windows - mIRC|windows]] and their tools can be very powerful in creating some amazing graphical layouts, as well as mIRC games. |
== Compatibility == | == Compatibility == | ||
− | + | Added: mIRC v5.8 | |
+ | |||
+ | Added On:05/09/2000 | ||
== See Also == | == See Also == | ||
* [[custom windows - mIRC|Custom Windows]] | * [[custom windows - mIRC|Custom Windows]] | ||
− | * | + | * [[/drawtext command - mIRC|/drawtext]] |
* [[on keyup - mIRC|ON KEYUP]] | * [[on keyup - mIRC|ON KEYUP]] | ||
− | * | + | * [[$keyval identifier - mIRC|$keyval]] |
− | * | + | * [[$keychar identifier - mIRC|$keychar]] |
− | * | + | * [[$keyrpt identifier - mIRC|$keyrpt]] |
− | |||
− | [[Category:mIRC on events | + | [[Category:mIRC on events]] |