Quick suggestion about the Grid Snap setting...
All  1-8  9-10

Previous
Next
 From:  Michael Gibson
2195.9 In reply to 2195.8 
Hi Will,

Re: Snap angle - that is normally grouped with a different
set of stuff than the Grid options, so I don't think that it
would really go there by default.

But I've attached here a custom version that you can use which
has it added on that grid menu.


You can also set up some shortcut keys to switch the straight
snap angle to different values:

Set straight snap to 15 degrees:
code:
script:moi.drawingAids.straightSnapAngle = 15;


Set straight snap to 45 degrees:
code:
script:moi.drawingAids.straightSnapAngle = 45;


If you put those as the Command part on a keyboard shortcut, that
will let you switch to a specific angle with a keypress.

Also here is another variant that you can put on a single key which will
switch it back and forth between 15 or 45 every time you hit that same key:
code:
script:if ( moi.drawingAids.straightSnapAngle == 15 ) moi.drawingAids.straightSnapAngle = 45; else moi.drawingAids.straightSnapAngle = 15;



If you want to switch it frequently probably those keyboard shortcuts
will be better than the menu anyway.

- Michael
Attachments:

  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:  WillBellJr
2195.10 
Okay Michael, thanks - I'll give the scripts a try. ;-)

-Will

PS - Thanks for everything with this - it's made using MOI much more nicer for me!

EDITED: 30 Nov 2008 by WILLBELLJR

  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-8  9-10