This should help illustrate what I mean. I went into your “torso and arms – slider controls” comp and added a Dropdown Menu Control to the “body control” layer. I edited the control to have five entries with these names : “left”, “left 3/4”, “front”, “right 3/4”, “right”.
Then I add this expression to the first Slider Control:
ddm = effect("Dropdown Menu Control")("Menu").value;
ddm == 2 ? 100 : 0
this to Slider Control 2:
ddm = effect("Dropdown Menu Control")("Menu").value;
ddm == 3 ? 100 : 0
this to Slider Control 3:
ddm = effect("Dropdown Menu Control")("Menu").value;
ddm == 4 ? 100 : 0
and this to Slider Control 4:
ddm = effect("Dropdown Menu Control")("Menu").value;
ddm == 5 ? 100 : 0
Then, whichever position you select with the dropdown, all the pieces move into place.
I hope that’s helpful.