'=================================================== '=================================================== '=== Script for: Work Queue button '=== Animation Type: Action Script '=== Trigger Type: On Left Click/Key Down '=== Body: ' ***** Work Queue button - display Queue control ***** ' ' This script makes the Queue control visible, and hides all other grid controls ' Then, it sets the Queue as control in charge in the ButtonBar control QueueControl1.Visible = true; StepsControl1.Visible = false; Toolbar.ControlInCharge = "QueueControl1"; '=================================================== '=================================================== '=== Script for: Steps button '=== Animation Type: Action Script '=== Trigger Type: On Left Click/Key Down '=== Body: ' ***** Steps button - display Steps control ***** ' ' This script makes the Steps control visible, and hides all other grid controls ' Then, it sets Steps as control in charge in the ButtonBar control QueueControl1.Visible = False; StepsControl1.Visible = True; Toolbar.ControlInCharge = "StepsControl1";