In IUPLua, how do I position a component indicating X (horizontal position) and Y (vertical position)? I read in the documentation:
It will be changed during the layout computation, except when FLOATING = YES or when used inside a concrete layout container.
Then I tried:
require "iuplua"
button = iup.button{title="button", floating="yes", position = "50,0"}
dlg = iup.dialog{title="test", size="QUARTERxQUARTER", button}
dlg:show()
iup.MainLoop()
But it does not change anything.