ich hoffe wenn ich hier in Deutsch schreibe, dann versteht mich wer.
Ich habe folgendes Problem.
Ich habe ein Touch Code Schloss, da ich es nicht hinbekomme dieses ordentlichen über einen Monitor zum laifen zu bekommen (erkennt die Koordinaten wohl falsch),
lasse ich es direkt auf einen Advance PC laufen.
Das klappt auch alles super.
Nun ist aber das Problem noch mit STRG+T etc.
Also das die Benutzer nicht einfach den Rechner neustarten können, bzw. das Programm abbrechen.
Ich habe aus einen anderen Thread diesen Codeschnipsel genommen und für mich abgeändert.
local event, param, x, y = os.pullEvent()
if event == "key" then
elseif event == "mouse_click" then
end
Somit erfasse ich die Toucheingaben und beim benutzen einer bestimmten Tastenkombination wird das Programm beendet (so das ich an den Code komme).Wie verhindere ich aber das man STRG+t etc. nicht benutzen kann?
Wenn ich den standart am anfang meines Codes schreibe
os.pullEvent = os.pullEventRaw
Dann klappt das mit dem Touch nicht mehr. Wie kann ich das ganze dann schreiben, das dies klappt?
Gruß Lindi
Translate by Google
Hello,
I hope when I'm writing in German, then who understands me.
I have the following problem.
I have a touch lock code, because I do not hammer out this neat to get a monitor for Laifen (detects the coordinates probably wrong)
I let it run directly on a PC Advance.
Which it does everything great.
But now the problem is with CTRL + T, etc.
So that the user can not simply reset the computer, or cancel the program.
I have taken this from another thread and modified code snippets for me.
local event, param, x, y = os.pullEvent()
if event == "key" then
elseif event == "mouse_click" then
end
Thus, I grasp the touch input and the use of a specific key combination terminates the program (so I'm at the code).How do I stop it but the CTRL + T, etc. can not use?
If I start on the standart of my code writing
os.pullEvent = os.pullEventRaw
Then it works not with the Touch. How can I write the whole then, it works this?Greeting Lindi