101
EXAMPLES
Here are a few examples to get you going. You will want to look through
to see how some
of the statements work.
RUN ON TUESDAY
This is a simple macro that makes sure our coffee is ready when we get to the site for weekly maintenance. The
macro is scheduled for our normal maintenance time, but will only start the coffee on Tuesday, our maintenance
day. Check out
to see how to set the time.
1
If day <> Tuesday, goto line 3
2
Raise "Start Coffee" on site "BURK-FM" for
[default]
3
End macro
MUTE METERS
In this example, all we want to do is grey out the meters on the A transmitter. This macro could be called from
another macro that put the B transmitter on the air. You would also need unmute macros for each transmitter.
1
Set meter "TX-A FWD" on "BURK-FM" to muted
2
Set meter "TX-A RFL" on "BURK-FM" to muted
3
Set meter "TX-A PAV" on "BURK-FM" to muted
4
Set meter "TX-A PAI" on "BURK-FM" to muted
5
End macro