Q-Sys module to create a progress bar using a meter control.
- Clone or download this repository to the Modules directory, the folder should be named
progress-bar
- Add the module to the project using Design Resources
- Use the module
Add a meter or knob control and style it as desired. If using a knob, the Units
, Min
, and Max
properties do not
matter.
local ProgressBar = require('progress-bar')
local myBar = ProgressBar:New(Controls.ProgressMeter, 10)
myBar.EventHandler = someFunction
myBar:Start()
myBar:Skip()