Post Reply 
Can I access keys by their names
07-26-2016, 05:12 AM (This post was last modified: 07-26-2016 05:36 AM by Tyann.)
Post: #3
RE: Can I access keys by their names
Bonjour

Voici ce que j'ai mis en place sur ma machine
si cela peut vous être utile.

Hello

Here's what I 've put on my machine
While this may be useful .

Code:

EXPORT K_APPS:=0;
EXPORT K_SYMB:=1;
EXPORT K_UP:=2;
EXPORT K_HELP:=3;
EXPORT K_ESC:=4;
EXPORT K_HOME:=5;
EXPORT K_PLOT:=6;
EXPORT K_LEFT:=7;
EXPORT K_RIGHT:=8;
EXPORT K_VIEW:=9;
EXPORT K_CAS:=10;
EXPORT K_NUM:=11;
EXPORT K_DOWN:=12;
EXPORT K_MENU:=13;
EXPORT K_VARS:=14;
EXPORT K_MATH:=15;
EXPORT K_TEMPL:=16;
EXPORT K_XTTN:=17;
EXPORT K_ABC:=18;
EXPORT K_BKSP:=19;
EXPORT K_POWER:=20;
EXPORT K_SIN:=21;
EXPORT K_COS:=22;
EXPORT K_TAN:=23;
EXPORT K_LN:=24;
EXPORT K_LOG:=25;
EXPORT K_SQ:=26;
EXPORT K_NEG:=27;
EXPORT K_PAREN:=28;
EXPORT K_COMMA:=29;
EXPORT K_ENTER:=30;
EXPORT K_EEX:=31;
EXPORT K_7:=32;
EXPORT K_8:=33;
EXPORT K_9:=34;
EXPORT K_DIV:=35;
EXPORT K_ALPHA:=36;
EXPORT K_4:=37;
EXPORT K_5:=38;
EXPORT K_6:=39;
EXPORT K_MUL:=40;
EXPORT K_SHIFT:=41;
EXPORT K_1:=42;
EXPORT K_2:=43;
EXPORT K_3:=44;
EXPORT K_MINUS:=45;
EXPORT K_ON:=46;
EXPORT K_0:=47;
EXPORT K_DOT:=48;
EXPORT K_SPACE:=49;
EXPORT K_PLUS:=50;
.

Toutes ces affectations sont à mettre dans un programme.
Vous pouvez écrire ensuite :
All these assignments are put in a program.
You can then write :
Code:

IF 'VAR'==K_ESC THEN
  .....
  .....
Pour accéder aux variables :Touche VAR, menu Utilisateur, option :nom du programme
To access variables : VAR button , User menu, option : name of the program

Sorry for my english
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Can I access keys by their names - Tyann - 07-26-2016 05:12 AM



User(s) browsing this thread: 1 Guest(s)