Thanks for quick reply, where i can find the list of all keyboard keycode?
UPDATE
I have find a page for the keycode here:
http://www.cambiaresearch.com/articles/1…codes-key-codes
And i have used this code:
<events devices="desktop" onkeydown="keydown();" onkeyup="keyup();" />
<action name="keydown">
if(keycode == 78, nextscene());
if(keycode == 80, prevscene());
</action>
<action name="keyup">
if(keycode == 78, set(hlookat_moveforce,0));
if(keycode == 80, set(hlookat_moveforce,0));
</action>
<action name="prevscene">
copy(sceneindex, scene[get(xml.scene)].index);
sub(lastindex, scene.count, 1);
dec(sceneindex, 1, 0, get(lastindex));
loadscene(get(scene[get(sceneindex)].name), null, MERGE, BLEND(0.5));
</action>
<action name="nextscene">
copy(sceneindex, scene[get(xml.scene)].index);
sub(lastindex, scene.count, 1);
inc(sceneindex, 1, get(lastindex), 0);
loadscene(get(scene[get(sceneindex)].name), null, MERGE, BLEND(0.5));
</action>
Thanks.