Hello to everybody.
I am looking for some Help. I have a NS6 controller. I am working on a skin. I want to create a visual element that shows me which deck I have selected when the layer button is pressed on the NS6. So my skin has 4 decks. I am going to make a visual border round each deck what I need to know is what the script is so when I press the layer button the visual element will draw a graphic around the deck that I have selected.
Thank You
DJ Format
I am looking for some Help. I have a NS6 controller. I am working on a skin. I want to create a visual element that shows me which deck I have selected when the layer button is pressed on the NS6. So my skin has 4 decks. I am going to make a visual border round each deck what I need to know is what the script is so when I press the layer button the visual element will draw a graphic around the deck that I have selected.
Thank You
DJ Format
Posté Sat 06 Aug 11 @ 12:51 pm
Hi Matt,
you need for each deck to have those visuals on conditional panels.
Example for deck 1
<panel id="deck1visualon" group="deck1visuals" visible="deck 1 select ? true : false">
..
..
</panel>
<panel id="deck1visualoff" group="deck1visuals" visible="deck 1 select ? false : true">
..
..
</panel>
and your visual should be on the deck1visualon panel
<visual panel="deck1visualon" .... >
...
..
</visual>
you need for each deck to have those visuals on conditional panels.
Example for deck 1
<panel id="deck1visualon" group="deck1visuals" visible="deck 1 select ? true : false">
..
..
</panel>
<panel id="deck1visualoff" group="deck1visuals" visible="deck 1 select ? false : true">
..
..
</panel>
and your visual should be on the deck1visualon panel
<visual panel="deck1visualon" .... >
...
..
</visual>
Posté Sat 06 Aug 11 @ 1:18 pm