Script to create leaders with coordinates

 From:  Larry Fahnoe (FAHNOE)
10013.9 In reply to 10013.8 
Hi BurrMan,

Where possible I am making use of the internationalized strings already present in MoI. In the case of the "Project to cplane" CheckButton, the text is already provided by MoI and in use by the dimension/annotation commands so adding it to the CheckButton in this script should be redundant. The other two CheckButtons are unique to my script and thus I provided the text for them. Obviously it didn't work properly & I'm perplexed as to why it works for me but not for you. I'm running a fairly vanilla MoI v4 Oct 27 beta. My only UI tweak is Michael's SeparateSidePanePalettes.js which I've now removed and note that the "Project to cplane" text is still displayed.

Do you see the "Project to cplane" text after the check boxes in the other MoI dimension/annotation commands?

Do you use CustomUI or other startup scripts?

The only difference between the CheckButton's use in Leader vs. my script is that I omitted the style="persist:false" (which I didn't understand) and added default="false" which may be unnecessary:
code:
Leader.htm:
<moi:CheckButton id="ProjectToCPlane" style="persist:false"><moi:Text textid="Dim project to cplane checkbox"/></moi:CheckButton>

Coordinates.htm:
<moi:CheckButton id="ProjectToCPlane" default="false"><moi:Text textid="Dim project to cplane checkbox"/></moi:CheckButton>

--Larry