iup

How to display a progress Bar using Lua and IUP

I have built a long running script to which I have added a progress bar with the following code: function StartProgressBar() gaugeProgress = iup.gaugeProgress{} gaugeProgress.show_text = "YES" gaugeProgress.expand = "HORIZONTAL" dlgProgress = iup.dialog{gaugeProgress; title = "Note Replacement in Progress"} dlgProgress.si...