[QUOTE=<ToD> Aaron;23794982][img]http://upload.wikimedia.org/wikipedia/commons/f/ff/Pc104_wide_delete_short_enter_xfree86_us_keyboard_full_size.png[/img]
FFS guys. Stop complaining and just google a US keyboard.
[editline]01:39AM[/editline]
Also, you should seriously get a bit more work done before you post it. Like an actual working alpha stage.[/QUOTE]
all very well and good, but allready found two places where the key worked in two different physical buttons
one person said worked for under the escape, the other (I) found it didn't work there and instead worked where the @ key is)
[QUOTE=<ToD> Aaron;23794982][img]http://upload.wikimedia.org/wikipedia/commons/f/ff/Pc104_wide_delete_short_enter_xfree86_us_keyboard_full_size.png[/img]
FFS guys. Stop complaining and just google a US keyboard.[/QUOTE]
Still doesn't help me. I tried every key (even including the Function- and the normal letter keys) on my keyboard, including trying them with modifier keys.
[QUOTE=nekosune;23801708]all very well and good, but allready found two places where the key worked in two different physical buttons
one person said worked for under the escape, the other (I) found it didn't work there and instead worked where the @ key is)[/QUOTE]
That's why I picked a picture with the key's values. Google a picture of whatever one you have and tried to find out which key is "31"
[editline]01:14PM[/editline]
[QUOTE=ZeekyHBomb;23802216]Still doesn't help me. I tried every key (even including the Function- and the normal letter keys) on my keyboard, including trying them with modifier keys.[/QUOTE]
What type of keyboard do you have? You can also try the method above too.
Console opened when I pressed Ö (2F) :confused:
[QUOTE=<ToD> Aaron;23803720]That's why I picked a picture with the key's values. Google a picture of whatever one you have and tried to find out which key is "31"
[editline]01:14PM[/editline]
What type of keyboard do you have? You can also try the method above too.[/QUOTE]
keycode 49 (keysym 0xfe52, dead_circumflex)
(note: 49d == 31h)
Guessed problem: I activated dead-key layout.
I have a qwertz layout.
Give me a few, I'll upload a tool so you guys can see what keycodes are required.
[editline]06:27PM[/editline]
And [url=foxprods.net/experimentalists/keycodes.swf]here it is.[/url]
[QUOTE=geel9;23804743]Give me a few, I'll upload a tool so you guys can see what keycodes are required.[/QUOTE]
Dear god, just change it to something we all have. It's just a test anyway am I right?
[QUOTE=Alex22;23805099]Dear god, just change it to something we all have. It's just a test anyway am I right?[/QUOTE]
I don't know what the keycode is for something we all have, dummkopf.
[QUOTE=geel9;23805118]I don't know what the keycode is for something we all have, dummkopf.[/QUOTE]
Everyone has F12 and it's not used for anything.
On some compact keyboards you have to us the FN key+F10 to get F12. You should be safe and just F10 :)
[QUOTE=Inside;23805322]On some compact keyboards you have to us the FN key+F10 to get F12. You should be safe and just F10 :)[/QUOTE]
Or any other alphabetic character on the keyboard.
Very well, tell me what the tool I linked says when you press F10.
[QUOTE=geel9;23805547]Very well, tell me what the tool I linked says when you press F10.[/QUOTE]
Nothing, but F9 is 120 and F11 is 122. Why didn't you just try it out yourself?
[QUOTE=Robber;23806008]Nothing, but F9 is 120 and F11 is 122. Why didn't you just try it out yourself?[/QUOTE]
Because, and this is what I've been saying for quite a while now, THE KEYCODES PROBABLY AREN'T THE SAME FOR EACH NATION.
Mine prints 121 for F10.
[QUOTE=geel9;23806036]Because, and this is what I'e been saying for quite a while now, THE KEYCODES PROBABLY AREN'T THE SAME FOR EACH NATION.[/QUOTE]
They should be for the Esc-F* -row.
[QUOTE=geel9;23806036]Because, and this is what I've been saying for quite a while now, THE KEYCODES PROBABLY AREN'T THE SAME FOR EACH NATION.[/QUOTE]
The F keys definitely have the same keycode everywhere.
Just use backtick D:
Yet again, won't work for dead-key layouts.
How about you type "console" into the consol-
Wait no that won't work
How about you let everyone map their own key?
[QUOTE=Darwin226;23807622]How about you let everyone map their own key?[/QUOTE]
This is good idea. I agree with Darwin226.
Flash works by using keycodes. However, if I recall correctly, there's no way to get a keycode from a string. There is a function but it returns a charcode, which doesn't work.
[code]function setConsoleKey():void
{
removeEventListener(KeyboardEvent.KEY_UP, generalInputStuffles);
addEventListener(KeyboardEvent.KEY_UP, keySetter);
}
function keyHandlerfunction(event:KeyboardEvent):void
{
consoleKey = event.keyCode;
removeEventListener(KeyboardEvent.KEY_UP, keySetter);
addEventListener(KeyboardEvent.KEY_UP, generalInputStuffles);
}
function generalInputSuffles(event:KeyboardEvent):void
{
switch(event.keyCode){
case consoleKey:
openConsole();
break;
//other cases
}
}[/code]
Summin like this.
[QUOTE=geel9;23807863]Flash works by using keycodes. However, if I recall correctly, there's no way to get a keycode from a string. There is a function but it returns a charcode, which doesn't work.[/QUOTE]
Flash doesn't "work" by using keycodes. The [url=http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/events/KeyboardEvent.html]KeyboardEvent[/url] object has both a keyCode and a charCode property. Even if there were only keyCodes, you could just make an associative array of strings to keyCodes. Hell, you could generate that array programmatically. There's always a way to do things.
[QUOTE=geel9;23807863]Flash works by using keycodes. However, if I recall correctly, there's no way to get a keycode from a string. There is a function but it returns a charcode, which doesn't work.[/QUOTE]
If you are saying that you can't remap keys in Flash you are wrong.
[QUOTE=Darwin226;23808070]If you are saying that you can't remap keys in Flash you are wrong.[/QUOTE]
I'm saying it's not worth the time.
You would be better off just getting a base down- with your keyboard, then-
After you get more done- go back and do multiple keyboard codes.
[QUOTE=geel9;23812442]I'm saying it's not worth the time.[/QUOTE]
Well then you can't call it Source Engine:Flash, because key bindings are an important part of the Source Engine!
Does it support .VTF and .VMT with BSP ??
Sorry, you need to Log In to post a reply to this thread.