luaiup

how to display circular progress IUP_CircleProgressAnimation in IupAnimatedLabel


Here is minimal working code:

require("iuplua")
require( "iupluacontrols" )
require("iupluaimglib")

label_1 = iup.label {title = "The label                "}
label_2 = iup.label {image = "IUP_ActionOk"}

-- NOT WORK 
--label_3 = iup.AnimatedLabel(NULL);
--iup.SetAttribute(label, "ANIMATION", "IUP_CircleProgressAnimation");
--iup.SetAttribute(label, "START", "Yes");

vbox = iup.vbox{
                 label_1
                ,label_2
                --, label_3
}


dlg = iup.dialog{
  vbox
}


dlg:showxy(iup.CENTER,iup.CENTER)
dlg.usersize = nil

-- to be able to run this script inside another context
if (iup.MainLoopLevel()==0) then
  iup.MainLoop()
  iup.Close()
end

The example is taken from the help, but unfortunately, what is commented on-does not work.


Solution

  • Use this code:

    label_3 = iup.animatedlabel{}
    label_3.animation = "IUP_CircleProgressAnimation"
    label_3.start = "Yes"
    

    Just tested and your sample worked.