oh well, I feel very stupid. Let's try to make it work...
I declare in a startup action:
|
Quellcode
|
1
|
set (thisPOVe, 0);
|
then in an action dealing with onkeydown events I have:
|
Quellcode
|
1
|
if (keycode == 16, switch (thisPOVe,1,2,3,4,5,6,7); trace (get(thisPOVe)););
|
So every time the shift key is pressed, a new value from the switch action list is traced.
In the log I get nothing else than original declared value 0.
Missing something I guess...