Jump to content

TABCORD lisp doesnt work in 2014


bigmaz

Recommended Posts

Is there any error message at the command line when you run the routine ?

Although the Acad version of cad 2014 is supported in the routine .

 

Note: the routine does not work in Paper Space .

Link to comment
Share on other sites

Is there any error message at the command line when you run the routine ?

Although the Acad version of cad 2014 is supported in the routine .

 

Note: the routine does not work in Paper Space .

 

Thanks for your reply. It allows you to select the polyline, after you select it nothing happens. It go's back to the command line. Have you tried it in 2014? We have tested it on 2010 and 2014, and it only works in 2010. We don't use it in paper space....

Link to comment
Share on other sites

Thanks for your reply. It allows you to select the polyline, after you select it nothing happens. It go's back to the command line. Have you tried it in 2014? We have tested it on 2010 and 2014, and it only works in 2010. We don't use it in paper space....

 

I upgraded to Cad 2015 last week and don't have cad 2014 anymore on my system .

Upload a sample drawing that you run the codes on .

Link to comment
Share on other sites

I upgraded to Cad 2015 last week and don't have cad 2014 anymore on my system .

Upload a sample drawing that you run the codes on .

 

We tried on different drawings. Also drawings started from scratch straight from the template. Does it work for you in 2015?

Link to comment
Share on other sites

We tried on different drawings. Also drawings started from scratch straight from the template. Does it work for you in 2015?

Yes .

Run this code on the LWpolyline and post back the outcome .

 

(defun c:dxf (/ o)
 (if (setq o (car (entsel "\n Select an object :")))
   (progn
     (foreach x (entget o '("*"))
       (print x))
     (textscr)
     )
   )
 (princ)
)

Link to comment
Share on other sites

Yes .

Run this code on the LWpolyline and post back the outcome .

 

(defun c:dxf (/ o)
 (if (setq o (car (entsel "\n Select an object :")))
   (progn
     (foreach x (entget o '("*"))
       (print x))
     (textscr)
     )
   )
 (princ)
)

 

Not in work till Tuesday, so will give it a go then. Thank you for your help :)

Link to comment
Share on other sites

Hi Tharwat, can you please paste the version of lisp that you have, that works in 2014?

I do not have any , actually I tried the one that you brought with the link you posted earlier . that's it .

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...