Vdj 7, Im trying to get a caller on air indicator to work. but no luck, I would like when I activate the line in on deck 6, for the indicator to light. Thanks
Caller On Air
-------------
<visual type="onoff" source="get haslinein ? off : on" deck="6" >
<size width="38" height="12"/>
<pos x="795" y="5"/>
<up x="795" y="5"/>
<down x="70" y="3293"/>
</visual>
Caller On Air
-------------
<visual type="onoff" source="get haslinein ? off : on" deck="6" >
<size width="38" height="12"/>
<pos x="795" y="5"/>
<up x="795" y="5"/>
<down x="70" y="3293"/>
</visual>
Mensajes Thu 05 Jun 14 @ 8:15 pm
Try:
<visual type="onoff" source="deck 6 linein ? on : off" >
<size width="38" height="12"/>
<pos x="795" y="5"/>
<up x="795" y="5"/>
<down x="70" y="3293"/>
</visual>
<visual type="onoff" source="deck 6 linein ? on : off" >
<size width="38" height="12"/>
<pos x="795" y="5"/>
<up x="795" y="5"/>
<down x="70" y="3293"/>
</visual>
Mensajes Thu 05 Jun 14 @ 8:25 pm
Thanks Dan, that works.
Mensajes Thu 05 Jun 14 @ 9:11 pm
Dan, how would I make that a button, to turn linein 1 deck 6 on, also I would like the indicator to blink when on. Thanks.
Mensajes Thu 05 Jun 14 @ 9:32 pm
<button action="deck 6 linein ? blink & deck 6 linein : deck 6 linein">
<size..../>
<pos...../>
<up....../>
<down....../>
</button>
I haven't tested this but give it a try.
<size..../>
<pos...../>
<up....../>
<down....../>
</button>
I haven't tested this but give it a try.
Mensajes Thu 05 Jun 14 @ 9:49 pm
No go Dan.
Mensajes Thu 05 Jun 14 @ 10:23 pm
Ive re-read. Are the button an indicator 2 separate things?
Mensajes Thu 05 Jun 14 @ 10:25 pm
It is a indicator but I wanted to convert it to button.
Mensajes Fri 06 Jun 14 @ 6:41 am
Ok,
I have just tested this action action and it works for me:
deck 6 linein ? blink & deck 6 linein : off & deck 6 linein
I have just tested this action action and it works for me:
Mensajes Fri 06 Jun 14 @ 8:11 am
djtouchdan wrote :
Ok,
I have just tested this action action and it works for me:
deck 6 linein ? blink & deck 6 linein : off & deck 6 linein
I have just tested this action action and it works for me:
Thanks Dan, appreciate, the ": off" was missing, it now works.
Mensajes Fri 06 Jun 14 @ 10:19 am
Haha, yes I was able to test that one 😉
Mensajes Fri 06 Jun 14 @ 10:34 am