Jump to content
Developer Wiki and Function Reference Links ×

Vectorscript for Unified View


KenAB94662

Recommended Posts

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

  • Like 1
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...