
Populating an iup list from a lua table - Stack Overflow
2019年1月6日 · I'm building up a set of IUP dialog 'helper' functions -- boilerplate that I can include in my Lua code to quickly implement frequently used interface functionality in a consistent manner. I have a function to make a "standard" iup list with a callback:
lua - How to require iuplua module from another folder? - Stack …
2023年3月1日 · OS is Windows 10, Lua version is 5.4.4, IUP version is 3.30, I didn't build it but downloaded binaries and Lua bindings from SourceForge: iup-3.30_Win64_dll16_lib and iup-3.30-Lua54_Win64_dll16_lib. Can I do something to be able to launch lua not from iuplua folder but from everywhere I want?
How to display a progress Bar using Lua and IUP
2010年9月4日 · I've used IUP 3.0, and its standard Lua binding here. The gauge control is named iup.progressbar in IUP 3.0, and was named iup.gauge in earlier versions. In earlier versions it may have been in the extended controls library as well. I've tested this on Windows.
Using IUP with Lua on Ubuntu - Stack Overflow
2012年8月28日 · When you load a module with require Lua uses the package paths to determine where to look for the module. package.path: Where Lua looks for .lua modules package.cpath: Where Lua looks for .so/.dll modules. Have a look at this section of the Lua manual: Modules. Specifically, the section on package.path and package.cpath.
Getting input with IUP in Lua - Stack Overflow
2012年12月12日 · Without the call to iup.key_open(), iup.K_q evaluates to nil (as does any other key name) and thus silently never matches any keycode passed to canvas:k_any(). Edit: I just ran your sample, and indeed calling iup.key_open() causes the q and w keys to be recognized. You have a further glitch you will notice next that just updating the paddle's ...
Using IUP library with Lua For Windows, how do I force …
2020年11月15日 · I have several lua programs that use only the predefined dialogs of IUP. Using IUP library with Lua For Windows, how do I force iup.getparam and other predefined dialogs to always be on top of other windows? Here is a simple example:
About using IUP.Text:action in Lua - Stack Overflow
2018年1月17日 · In the attached file, I show an example of a form in Lua language using the IUP gui. The needing is that with every key pressed in the first textbox some calculations be made and the result must be shown in the second textbox.
iup - install lua 5.4 binaries and libraries step by step on Windows ...
2020年8月4日 · To make just that Lua code to work with Lua 5.4 you can use the IUP tools pre-compiled binaries which include Lua and all necessary files. Share Improve this answer
user interface - IUP is not working for Lua and throws an error that ...
2022年6月20日 · @EgorSkriptunoff I downloaded the IUP library directly from their SourceForge. I did not make the 'iuplua.lua' file. There are only 5 files called iuplua. They're 'iuplua.lua' , 'iuplua.vcxproj' , 'iuplua.lh' , 'iuplua.def' and an 'iuplua.c'. The 'iuplua.c' is in the same 'srclua5' folder as 'iuplua.lua' –
Newest 'iup' Questions - Stack Overflow
2024年11月18日 · I'm using Lua 5.1 with IUP 3.5, and trying to use a list callback to populate an Address list depending on the Place selected. (The list is an editbox, so I will need to handle that in due course, but ...