Logitek Electronic Systems Mosaic User Manual

Page 25

Advertising
background image

Logitek Mosaic Reference Manual
Page 25


If you know your way around triggers, you’ll notice that we turn on the lamp for our button when
we begin but do not turn it off on ACCEPT. The console is smart enough to do that for you. We do
turn the lamp off on CANCEL just to give Cancel something to do. Finally, don’t skip the IF CANCEL
WAIT section, or else Command Builder will throw an error. You can adjust the number of seconds
you have to make a selection before it all times out by adjusting the WAIT time on the IF CANCEL.

Text after a tilde ~ is a comment

trigger ae1 device28 bus 79 on

cmd ae1 text device27 line11 "ISDN1 Select" ~ writes text to the bottom line of screen 1
cmd ae1 vISDN1 set selection mode display ( device 28 screen 1 ) ~ activates selection screen

cmd ae1 text selection 1 "Program"
cmd ae1 text selection 2 "Aux 1"
cmd ae1 text selection 3 "Mix Minus"

if accept selection = 1
cmd ae1 route device BE to chan 100 ~ pgm is source 00be; channel 100 translates to destination 006E
cmd ae1 sourcename device6E display ( device27 line12 pos1 )
endif

if accept selection = 2
cmd ae1 route device BF to chan 100 ~ aux 1 is source 00bf; channel 100 translates to destination 006E
cmd ae1 sourcename device6E display ( device27 line12 pos1 )
endif

if accept selection = 3
cmd ae1 route device c7 to chan 100 ~ mm1 is source 00c7; channel 100 translates to destination 006E
cmd ae1 sourcename device6E display ( device27 line12 pos1 )
endif

if cancel wait 5
cmd ae1 device27 bus79 off
endif


In our example, we only routed the source and wrote the name of the source to the screen.
If you wanted to do more, like pulse relays or send text to other studios, you would place those
commands before the ENDIF that closes the IF ACCEPT or IF CANCEL WAIT.

Route S elect Trigger Example

Route S elect Trigger Example

Route S elect Trigger Example

Route S elect Trigger Example

The Route Select is a lot simpler than the Variable Select. All you really need to know here is the
device number where you want to change the route, and you need some sources allowed in

Advertising