What am I missing?
I've added an action section that toggles a user.row between true and false along with shape fill and line transparency based on that value.
The shapesheet seems to work ok, but the shape VISUAL DISPLAY never changes.
Oddly, when I change the values using the UI, the visual presentation performs as expected. When I change using the action menu, the shapesheet values change, but the visual shape representation does not.
Cells used.
User.IsTrans ( FALSE|TRUE)
Actions.IsTrans
Actions.IsTrans.Action = SETF(GetRef(User.IsTrans),NOT(User.IsTrans))+SETF(GetRef(LineColorTrans),IF(User.IsTrans,50%,0%))+SETF(GetRef(FillForegndTrans),IF(User.IsTrans,50%,0%))+SETF(GetRef(FillBkgndTrans),IF(User.IsTrans,50%,0%))
Actions.IsTrans.Menu = "&Trans"
Actions.IsTrans.Checked = User.IsTrans