One slider with functions two zone, how?

whiteg

Well-Known Member
Dear,


I need help because I can't write a pangoscript.
I tried a lot, but it doesn't work.

There are need use three Sliders (Strobe, Colorshift and Brightness)
I can easily control one zone with it, but I want to control two zones at the same time using one slider.

What I want is for the Strobe sliders use zones 4 and 5 to work at the same time. In the same way, Colorshift sliders also use 4, 5 zones, and the Brightess also 4, 5 zones.

And I need one Mute on/off button use zone 4, 5 same time.

Can someone write these scripts using zones 4 and 5 belonging to the three sliders and Mute on / of button?
Thank you for the help
 

Attachments

  • Two zones.jpg
    Two zones.jpg
    50 KB · Views: 7
Hello,

I managed to assign a common button with the Pause function to Zones 4 and 5, but I still can't find a solution for the slides.
Thank You for the help,
 
A strobe slider, what does that do?

color shift, I assume you mean hue shift.
This can be done with:

Code:
controlzone 4
HueShift extvalue (0,100)

Brightness:

Code:
controlzone 4
Brightness extvalue (0,100)
 
Thank you Bob! :)


The strobe is: StrobeSpeed (in zone)
Attached the picture

A strobe slider, what does that do?

color shift, I assume you mean hue shift.
This can be done with:

Code:
controlzone 4
HueShift extvalue (0,100)

Brightness:

Code:
controlzone 4
Brightness extvalue (0,100)
 

Attachments

  • Névtelen.jpg
    Névtelen.jpg
    108.5 KB · Views: 4
StopOnBlackout // unrem this line if the script must stop when Blackout pressed


StoreZoneSelection
UnselectAllZones

SelectZone 5,6 // zone index, 1..N.
SelectAndFocusZone 5
ControlSelZones

Brightness ExtValue(0,100) //CC (0,02,0,100)

ReStoreZoneSelection
 
Back
Top