Posts by Klauxdjo • 323 points
7 posts
-
3
votes1
answer159
viewsQ: Is it possible to detect the key pressed in Lua?
Working in terminal mode, I have control over the screen coordinates where the text will be displayed, however I need detect if a key has been pressed, without the same echo onscreen. Is there a…
-
14
votes1
answer287
viewsQ: What is the technology behind virtual machines?
Besides Java and the environment .NET various other environments such as Python, Ruby, Moon, etc interpret bytecodes. In the first versions Java left to be desired in terms of performance, but the…
-
2
votes1
answer326
viewsA: How to configure LUA_PATH?
the problem was ridiculously simple.... I actually created a test script called iuplua.moon. This choice of name was unfortunate because the require required a file iuplua.. However the search…
-
2
votes1
answer326
viewsQ: How to configure LUA_PATH?
I installed the IUP (Toolkit graphic) in a given folder. When I run the following script from within that folder, it works perfectly.. require("iuplua") iup.Message('Minha Aplicação','Finalizada com…
-
4
votes1
answer211
viewsQ: How to detect the mouse, in Lua?
I recently managed to solve a problem related to the control of screen coordinates in a terminal (thanks to the answer found here in Sopt). Now I need to detect the movements and clicks of a…
-
5
votes1
answer365
viewsQ: What does "introspection at runtime" mean?
Looking for information about a graphic Toolkit in Lua, I found an explanation about lgi (GTK) that presented a great advantage: "...because it was written in C and has the ability to introspect at…
-
1
votes1
answer170
viewsQ: How to control screen coordinates?
i need to develop a program in Lua (desktop application) that manipulates screen coordinates, does not need to be a graphical environment (GUI), but need to be able to, for example, position in the…