This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
tonkku107's profile picture

keyboard shortcuts not working

Started by tonkku107, 01 May 2013 - 07:06 AM
tonkku107 #1
Posted 01 May 2013 - 09:06 AM
title: keyboard shortcuts not working
I can't use ctrl + t, -+r, -+s shortcuts. I tried to find it from the config but no luck there. How can i get the shortcuts work?
theoriginalbit #2
Posted 02 May 2013 - 01:05 AM
How long are you holding CTRL + T, etc for? you cant just press them, you must hold them for a second or two.
Also, when you are in the Edit program, and you press CTRL, what happens? does the menu appear? if not then chances are you have a weird keyboard that LWJGL isn't detecting correctly.
tonkku107 #3
Posted 03 May 2013 - 07:50 AM
How long are you holding CTRL + T, etc for? you cant just press them, you must hold them for a second or two.
Also, when you are in the Edit program, and you press CTRL, what happens? does the menu appear? if not then chances are you have a weird keyboard that LWJGL isn't detecting correctly.
Tried 10 seconds, not working. when i press CTRL in editing "[Save] Exit" Appears normally. The key layout is Finnish
Mackan90096 #4
Posted 03 May 2013 - 08:07 AM
I am in Sweden, we have The same keyboard layout as The finnish One, and its working for me. Might be a problem with your keyboard..
PixelToast #5
Posted 03 May 2013 - 03:39 PM
run this program:

while true do
t,k=os.pullEvent()
if t=="key" then
print(k)
end
end
tell us what numbers your getting for problematic keys
tonkku107 #6
Posted 04 May 2013 - 03:31 AM
I am in Sweden, we have The same keyboard layout as The finnish One, and its working for me. Might be a problem with your keyboard..
I don't think there's a problem… On chrome ctrl+t (new tab) works but ctrl+t won't work on computercraft for me.

run this program:

while true do
t,k=os.pullEvent()
if t=="key" then
print(k)
end
end
tell us what numbers your getting for problematic keys
Do I have to put it on a new program or an existing one?
AndyMcB1 #7
Posted 04 May 2013 - 08:04 AM
Do I have to put it on a new program or an existing one?

a new one.