How would I orient a single window?

Next
 From:  ado1
12021.1 
I'm sure I would get there eventually but I can't be the first to run into this annoyance

What is the easiest fastest way to sort the drawing window being the wrong way round in the bottom right view window?
Image Attachments:
Size: 632.9 KB, Downloaded: 16 times, Dimensions: 1920x1080px
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  ado1
12021.2 
If I click on the "right" button in the views ribbon then I get the left view...

You know I've been doing this for over a year now and I didn't know that, christ
Image Attachments:
Size: 646.2 KB, Downloaded: 9 times, Dimensions: 1920x1080px
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  stefano (LIGHTWAVE)
12021.3 In reply to 12021.2 
hi ado,

was going to say that...

i think the inventor of this software made it inspirational
because day by day we are finding things.

anyway, also i'll try find you some of michaels viewport controls that i love
and use personally as shortcuts (on the numpad keys)...

now below:

EDITED: 14 Jun 8:00 by LIGHTWAVE

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 From:  stefano (LIGHTWAVE)
12021.4 In reply to 12021.3 
Hi Ado, these are my viewport shortcuts, to me they are logical

Numpad. [dot] =
script:moi.ui.mainWindow.viewpanel.mode = '3D'; var vp = moi.ui.mainWindow.viewpanel.getViewport('3D'); if ( moi.geometryDatabase.getSelectedObjects().length > 0 ) { vp.reset(); }

Numpad0=
script: /* SPLIT! */ moi.ui.mainWindow.viewpanel.mode = 'Split'; if ( moi.geometryDatabase.getSelectedObjects().length > 0 ) { moi.view.resetAll(); }

Numpad1=
script:var vname = 'Top'; var vp = moi.ui.mainWindow.viewpanel; vp.mode = vname; if ( vp.getViewport(vname).name != vname ) { vp.reverseView( vname ); } if ( moi.geometryDatabase.getSelectedObjects().length > 0 ) { vp.getViewport(vname).reset(); }

Numpad2=
script:var vname = 'Front'; var vp = moi.ui.mainWindow.viewpanel; vp.mode = vname; if ( vp.getViewport(vname).name != vname ) { vp.reverseView( vname ); } if ( moi.geometryDatabase.getSelectedObjects().length > 0 ) { vp.getViewport(vname).reset(); }

Numpad3=
script:var vname = 'Right'; var vp = moi.ui.mainWindow.viewpanel; vp.mode = vname; if ( vp.getViewport(vname).name != vname ) { vp.reverseView( vname ); } if ( moi.geometryDatabase.getSelectedObjects().length > 0 ) { vp.getViewport(vname).reset(); }

Numpad4=
script:var vname = 'Bottom'; var vp = moi.ui.mainWindow.viewpanel; vp.mode = vname; if ( vp.getViewport(vname).name != vname ) { vp.reverseView( vname ); } if ( moi.geometryDatabase.getSelectedObjects().length > 0 ) { vp.getViewport(vname).reset(); }

Numpad5=
script:var vname = 'Back'; var vp = moi.ui.mainWindow.viewpanel; vp.mode = vname; if ( vp.getViewport(vname).name != vname ) { vp.reverseView( vname ); } if ( moi.geometryDatabase.getSelectedObjects().length > 0 ) { vp.getViewport(vname).reset(); }

Numpad6=
script:var vname = 'Left'; var vp = moi.ui.mainWindow.viewpanel; vp.mode = vname; if ( vp.getViewport(vname).name != vname ) { vp.reverseView( vname ); } if ( moi.geometryDatabase.getSelectedObjects().length > 0 ) { vp.getViewport(vname).reset(); }

Numpad* [asterix] =
script:moi.ui.getActiveViewport().reset();

-----
To add shortcuts and assign these viewport scripts to your shortcut keys, use:

options>shortcut keys>add

press a key like numpad 1 and then paste:
script:var vname = 'Top'; var vp = moi.ui.mainWindow.viewpanel; vp.mode = vname; if ( vp.getViewport(vname).name != vname ) { vp.reverseView( vname ); } if ( moi.geometryDatabase.getSelectedObjects().length > 0 ) { vp.getViewport(vname).reset(); }

repeat.

cheers stefano


-------

*
there is also a shortcut script to "add shortcut"
with this script:

https://moi3d.com/forum/index.php?webtag=MOI&msg=12006.1

EDITED: 14 Jun 9:10 by LIGHTWAVE

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All