PointCloud.us - A PolyWorks Support Forum

PolyWorks Discussion => Macro World => Topic started by: Jeff on October 06, 2010, 05:02:00 AM

Title: Annotation from fixed to close to border.
Post by: Jeff on October 06, 2010, 05:02:00 AM
Here is a code to toggle the annotation between fixed and close to border. There are times that I change back and forth between the two.


version "4.0"
declare Annotatcheck
VIEW ANNOTATION POSITIONING MODE get(Annotatcheck)
if $Annotatcheck== "Fixed"
    VIEW ANNOTATION POSITIONING MODE ( "Close to border" )
else
    VIEW ANNOTATION POSITIONING MODE ( "Fixed" )
endif
Title: Re: Annotation from fixed to close to border.
Post by: jrayself on October 06, 2010, 11:18:47 AM
I love the simple ones.  They make a project much less frustrating.