View Single Post
Old 02-12-2020, 06:18 PM   #6516
Cragster
Human being with feelings
 
Join Date: Apr 2019
Location: Inman, SC USA
Posts: 859
Default

Quote:
Originally Posted by Funkybot View Post
Hi Geoff, I'm going to need slightly more hand-holding than that. I'm trying it a few different ways and can't get it working as expected so I'm not sure if there's still a bug, or of it's me. Would you be able to take one of these and show me exactly what I'm doing wrong?

Either Pan works, or PanWidth works but I can't ever change modes. And when PanWidth works, the displays get stuck.

Here's a condensed version of the .zon files.

Option 1 (zones declared in Home - Result: stuck in Pan mode):
Code:
Zone Home
	OnTrackSelection MapSelectedTrackSendsToWidgets
	IncludedZones
		"Channel|1-8"
		"PanWidth|1-8"
		"PanWidth|1-8"
	IncludedZonesEnd
ZoneEnd


Zone "Channel|"
	TrackNavigator
	DisplayUpper|  			TrackNameDisplay
	DisplayLower| 			TrackPanDisplay
	TrackTouch+DisplayLower| 	TrackVolumeDisplay
	Rotary| 			TrackPan "0"
	RotaryPush| 			GoZone PanWidth|
ZoneEnd


Zone "Pan|"
	TrackNavigator
	Rotary| 	TrackPan "0"
	DisplayUpper|	TrackPanDisplay
	RotaryPush| 	GoZone PanWidth
ZoneEnd

Zone "PanWidth|"
	TrackNavigator
	Rotary| 	TrackPanWidth "1"
	DisplayUpper|	TrackPanWidthDisplay
	RotaryPush| 	GoZone Pan
ZoneEnd

Option 2 (standalone zones - pipe included in GoZone name - Result: stuck in PanWidth):
Code:
Zone Home
	OnTrackSelection MapSelectedTrackSendsToWidgets
	IncludedZones
		"Channel|1-8"
	IncludedZonesEnd
ZoneEnd


Zone "Channel|"
	TrackNavigator
	DisplayUpper|  			TrackNameDisplay
	DisplayLower| 			TrackPanDisplay
	TrackTouch+DisplayLower| 	TrackVolumeDisplay
	Rotary| 			TrackPan "0"
	RotaryPush| 			GoZone PanWidth|
ZoneEnd


Zone "Pan|1-8"
	TrackNavigator
	Rotary| 	TrackPan "0"
	DisplayUpper|	TrackPanDisplay
	RotaryPush| 	GoZone PanWidth|
ZoneEnd

Zone "PanWidth|1-8"
	TrackNavigator
	Rotary| 	TrackPanWidth "1"
	DisplayUpper|	TrackPanWidthDisplay
	RotaryPush| 	GoZone Pan|
ZoneEnd
Option 3 (same as 2, no pipe - Result: stuck in PanWidth):
Code:
Zone Home
	OnTrackSelection MapSelectedTrackSendsToWidgets
	IncludedZones
		"Channel|1-8"
	IncludedZonesEnd
ZoneEnd


Zone "Channel|"
	TrackNavigator
	DisplayUpper|  			TrackNameDisplay
	DisplayLower| 			TrackPanDisplay
	TrackTouch+DisplayLower| 	TrackVolumeDisplay
	Rotary| 			TrackPan "0"
	RotaryPush| 			GoZone PanWidth|
ZoneEnd


Zone "Pan|1-8"
	TrackNavigator
	Rotary| 	TrackPan "0"
	DisplayUpper|	TrackPanDisplay
	RotaryPush| 	GoZone PanWidth|
ZoneEnd

Zone "PanWidth|1-8"
	TrackNavigator
	Rotary| 	TrackPanWidth "1"
	DisplayUpper|	TrackPanWidthDisplay
	RotaryPush| 	GoZone Pan|
ZoneEnd
You have 2 Panwidths in the home zone in option 1 ??
Cragster is offline   Reply With Quote