Message 1 of 13
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have:
(setq schrijfliggerID (strcat "%<\\AcObjProp Object(%<\\_ObjId " liggerID ">%).TextString>%"))
(setq typeliggerID (strcat "%<\\AcObjProp Object(%<\\_ObjId " liggerID ">%).Parameter(120).UserVariable\>%"))
(setq tekst1 (strcat schrijfliggerID " L=<>" ))
(setq tekst2 (strcat typeliggerID " L=<>" ))
then this works: (command "dimlinear" pt1 pt2 "m" tekst1 pt3)
also this works: (command "dimlinear" pt1 pt2 "m" tekst2 pt3)
but i want both:
(setq tekst (strcat typeliggerID " " schrijfliggerID " L=<>" ))
(command "dimlinear" pt1 pt2 "m" tekst pt3)
but i get: dimension text too long
what can i do?
Solved! Go to Solution.