Shelling problem

 From:  Michael Gibson
3424.7 In reply to 3424.6 
Hi Dan,

> What are the method names I should be calling for Object and Straight snap?

Actually just replacing gridSnap with objectSnap will work, but note that there are 2 places within that little script that you have to replace. If you only replaced one of them instead of both it would not work right so that may be what you ran into.

So for setting up a shortcut key to switch Object snap on or off, use the following:

script: /* Toggle object snap */ moi.drawingAids.objectSnap = !moi.drawingAids.objectSnap;

and to set up one for switching Straight snap on or off use this:

script: /* Toggle straight snap */ moi.drawingAids.straightSnap = !moi.drawingAids.straightSnap;

- Michael