Solo view?
All  1  2-6

Previous
Next
 From:  BurrMan
5059.2 In reply to 5059.1 
Buttons on the bottom toolbar to select viewport:

EDITED: 19 Jun 2012 by BURRMAN

  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:  sp (SPMCKEE)
5059.3 
Oh good Lord.....is it Friday yet? Thanks.
  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:  BurrMan
5059.4 In reply to 5059.3 
You can make keyboard shortcuts to move to views too.. This is what the "command part" would look like for Top:

code:
script:var vname = 'Top'; var vp = moi.ui.mainWindow.viewpanel; vp.mode = vname; if ( vp.getViewport(vname).name != vname ) vp.reverseView( vname );


Note the word "Top" in there.

You can set that word to any of the views:

Back
Bottom
Front
Left
Right
Top

For Split view and 3d viewport, the script is:

code:
script:moi.ui.mainWindow.viewpanel.mode = 'Split';


Note the word "Split" in there.

You can set that word to 3D:
  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:  coi (MARCO)
5059.5 
I found this script to be UBERuseful, which will switch between the viewport under the current mouse cursor location and the quad view.

script:if ( moi.ui.mainWindow.viewpanel.mode != 'split' ) { moi.ui.mainWindow.viewpanel.mode = 'split' } else { var viewport = moi.ui.getViewportUnderMouse(); if ( viewport ) viewport.viewpanel.mode = viewport.name; }

..just put it on the SPACE key or (almost) any other key combination like so:

http://moi3d.com/2.0/docs/moi_command_reference11.htm#shortcutkeys

Cheers,
Marco

EDITED: 11 Apr 2012 by MARCO

  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:  Rich_Art
5059.6 In reply to 5059.5 
Wooo thanks... Never seen this script.. Works great.

Peace,
Rich_Art. ;-)

| C4DLounge.eu | Our Dutch/Belgium C4D forum. |
  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

 

 
 
Show messages: All  1  2-6