KenAB94662 2 Posted September 21, 2019 What's the VS that I can add in a saved view to toggle on/off unified view? Quote Share this post Link to post
MullinRJ 211 Posted September 21, 2019 Hello Ken, This short two line script will toggle the Unified View ON and OFF each time it runs. It will also beep when Unified View is ON, which I use as auditory feedback for its state. SetPref(94, not GetPref(94)); { Toggle Unified View } if GetPref(94) then SysBeep; If you just want to set Unified View ON use: SetPref(94, TRUE); If you want to set it OFF use: SetPref(94, FALSE); HTH, Raymond 1 Quote Share this post Link to post
KenAB94662 2 Posted September 21, 2019 Thank you Raymond! Works great! I was clueless on the name of the procedure. Was searching for "unified view" something. Glad to know it's "stack layers." 1 Quote Share this post Link to post
MullinRJ 211 Posted September 21, 2019 You,re welcome. The name threw me, too – again. I knew it wasn't "Unified View" in the documentation because I've been down this road before, but I couldn't remember what it was. I searched for "view" in the documentations and that got me close enough to find it. Glad I could help. Raymond Quote Share this post Link to post