Use the Uci functions to manipulate user control interfaces in Q-SYS.
Display a dialog in a UCI that contains a title, message, and button selection list.
Uci.ShowDialog( UCI_Name, DialogTable )
UCI_Name : String. The name of the target UCI for which to display the dialog.
DialogTable : A table consisting of the following elements
Title = "UCI dialog titlebar string",
Message = "Dialog message string",
Buttons = { "Button_String", "Button_String", "Button_String", "etc." }
The button list is a table consisting of strings – one string per desired response button.
Handler = EventHandler_Function
The EventHandler Function receives an integer index of which button was pressed. The EventHandler argument is zero-based, so add 1 to the integer to match a Lua table entry. See example.
In this example, the ShowDialog control and event handler activates the dialog. The UCIDialogHandler event handler function calls the WhichButton control to provide feedback of which button was pushed, defined by a list of strings (ButtonText).
ButtonText = { "Button 1 was pushed", "Button 2 was pushed", "Button 3 was pushed", } function UCIDialogHandler(choiceInt) print(choiceInt,ButtonText[choiceInt+1]) Controls.WhichButton.String = ButtonText[choiceInt+1] end function ShowDialog() Uci.ShowDialog( "Main UCI", { Title = "UCI Dialog Titlebar", Message = "Which button would you like to push?", Buttons = { "Button 1", "Button 2", "Button 3", }, Handler = UCIDialogHandler, } ) end Controls.ShowDialog.EventHandler = ShowDialog
Set the screen status of a TSC touchscreen controller or UCI Viewer.
Uci.SetScreen( TSC_Name, State )
TSC_Name : The name of the TSC touchscreen controller or UCI Viewer.
State : "On" | "Off" | "Dim"
-- Control Alias TSC = Controls.TSC_Name -- This textbox should contain the name of the TSC or UCI Viewer Inventory instance -- Set Screen for _,state in pairs{"On","Off","Dim"} do Controls[state].EventHandler = function() local TSC_Name = TSC.String Uci.SetScreen(TSC_Name,state) end end
Set which UCI to display on a TSC touchscreen controller or UCI Viewer.
Note: To avoid errors when using the Uci.SetUCI function, the UCI Assignment property for the TSC touchscreen controller or UCI Viewer must be set to "Dynamic". For more information, see Status/Control (Touch Screen) and Status/Control (UCI Viewer).
Uci.SetUCI( TSC_Name, UCI_Name )
TSC_Name : The name of the TSC touchscreen controller or UCI Viewer.
UCI_Name : String. The name of the UCI.
-- Control Alias TSC = Controls.TSC_Name -- This textbox should contain the name of the TSC or UCI Viewer Inventory instance -- Set UCI Controls["Main UCI"].EventHandler = function() local TSC_Name = TSC.String Uci.SetUCI(TSC_Name,"Main UCI") end Controls["Other UCI"].EventHandler = function() local TSC_Name = TSC.String Uci.SetUCI(TSC_Name,"Other UCI") end
Set which UCI page to display on a TSC touchscreen controller or UCI Viewer.
Uci.SetPage( TSC_Name, Page_in_UCI )
TSC_Name : The name of the TSC touchscreen controller or UCI Viewer.
Page_in_UCI : The UCI page to show.
-- Control Alias TSC = Controls.TSC_Name -- This textbox should contain the name of the TSC or UCI Viewer Inventory instance -- Set UCI Page for key,ctl in ipairs(Controls.Page) do ctl.EventHandler = function() local TSC_Name = TSC.String Uci.SetPage(TSC_Name,"Page "..key) end end
Set the Channel Group to display on a TSC touchscreen controller or UCI Viewer.
Uci.SetChannelGroup( TSC_Name , Channel_Group_ID_Integer )
TSC_Name : The name of the TSC touchscreen controller or UCI Viewer.
Channel_Group_ID_Integer : The channel group number.
-- Control Alias TSC = Controls.TSC_Name -- This textbox should contain the name of the TSC or UCI Viewer Inventory instance -- Set Channel Group group = Controls["Channel Group"] group.Choices = {"Channel Group 1","Channel Group 2"} function GetChGrpNum(grp) return tonumber((grp.String):match("%d+$")) end function ChangeTSCChanGroup(grp) local TSC_Name = TSC.String Uci.SetChannelGroup(TSC_Name,GetChGrpNum(grp)) end if #group.String==0 then group.String = group.Choices[1] ChangeTSCChanGroup(group) end group.EventHandler = ChangeTSCChanGroup
Set whether and how a layer is made visible within a specified UCI name and page.
Uci.SetLayerVisibility( UCI_Name, Page_Name, Layer_Name, Visibility, Transition_Type )
UCI_Name : String. The name of the UCI.
Page_Name : String. The name of the UCI page.
Layer_Name : String. The name of the UCI layer.
Visibility : true | false
Transition_Type : "none" | "fade" | "left" | "right" | "bottom" | "top"
--Set Layer Visibility trans = Controls.Transition trans.Choices = {"none","fade","left","right","bottom","top"} if #trans.String==0 then trans.String = "none" end for ix,layer in ipairs{"The Top Layer","The Middle Layer","The Bottom Layer"} do Controls[layer].EventHandler = function(ctl) Uci.SetLayerVisibility( "Main UCI", "Page 1", layer, ctl.Boolean, trans.String ) end Uci.SetLayerVisibility( "Main UCI", "Page 1", layer, Controls[layer].Boolean, trans.String ) end
Set whether and how a shared layer is made visible within a specified UCI name and page.
Note: Uci.SetSharedLayerVisibility is similar to UciSetLayerVisibility, but because Shared Layers can exist on multiple UCI pages, there is no argument for Page_Name. For more information about Shared Layers, see Working with Layers.
Uci.SetSharedLayerVisibility( UCI_Name, Layer_Name, Visibility, Transition_Type )
UCI_Name : String. The name of the UCI.
Layer_Name : String. The name of the UCI layer.
Visibility : true | false
Transition_Type : "none" | "fade" | "left" | "right" | "bottom" | "top"
Enable the ability to log off from a specified TSC touchscreen controller or UCI Viewer.
Note: Uci.LogOff can log out only if PIN security is enabled in Q-SYS Core Manager. For more information, see User Control Interfaces.
Uci.LogOff( TSC_Name )
TSC_Name : The name of the TSC touchscreen controller or UCI Viewer.
-- Control Alias TSC = Controls.TSC_Name -- This textbox should contain the name of the TSC or UCI Viewer Inventory instance -- UCI Log Off Controls["Log Me Out"].EventHandler = function() print("Uci.LogOff() can only log out if PIN security is enabled on the panel") Uci.LogOff(TSC.String) end
Software and Firmware | Resources | QSC Self Help Portal | Q-SYS Help Feedback
Copyright © 2019 QSC, LLC. Click here for trademark and other legal notices. |