View Rotation Style

 From:  Michael Gibson
4736.22 In reply to 4736.21 
Hi Burr, so to switch Mike's script above to the other style labeling, go to the part
of his script where he has: moi.view.rotationStyle = newvrs;

That's the end of the part that actually toggles the setting, everything coming
after that is about pushing in some HTML for the display.

So delete everything after that and instead put in the second half of what I had
above for the other style "bottom corner" label, which would be this (just the
variable used at the very end is different from my previous script):

code:
var sidepane = moi.ui.getUIPanel('moi://ui/SidePane.htm').document; if ( !sidepane.getElementById('meshangval') ) { sidepane.body.insertAdjacentHTML( 'beforeEnd', '<div id="meshangval" style="position:absolute; right:5px; bottom:5px;"></div>' ); } sidepane.getElementById('meshangval').innerText = newvrs;


Let me know if that doesn't work right for you.

- Michael