Author Topic: copy and edit lisp needed  (Read 2997 times)

0 Members and 1 Guest are viewing this topic.

ELOQUINTET

  • Guest
copy and edit lisp needed
« on: March 01, 2004, 09:38:28 AM »
i was wondering does anybody have a copy and ddedit lisp. i'm looking to be able to copy leaders then edit them in one shot. thanks

Columbia

  • Guest
copy and edit lisp needed
« Reply #1 on: March 01, 2004, 11:13:12 AM »
Dan,

Why don't you build one?  I'm sure that everyone here would be more than happy to help you out with whatever stumbling blocks might crop up.  But there's really no substitute for being able to post here to say, "Hey, guys & gals, look at this cool program I wrote."

Just something to think about.

DParcon

  • Guest
copy and edit lisp needed
« Reply #2 on: March 01, 2004, 01:21:13 PM »
Here's some code for you to start:

 
Code: [Select]


  (setq ss (ssget '((0 . "TEXT"))))
  (command "copy" (ssname ss 0) "" pause pause
                  "ddedit" (entlast) ""
  )