Author Topic: acet-attsync  (Read 3594 times)

0 Members and 1 Guest are viewing this topic.

Ron Heigh

  • Guest
acet-attsync
« on: September 10, 2004, 10:35:01 AM »
I'm trying to use the acet-attsync function in a lisp routine, but it isn't a valid command.  Once I use the ATTSYNC command in the drawing, the acet-attsync command becomes valid in my lisp routine?
Any ideas why this might be occuring?

Ron Heigh

  • Guest
acet-attsync
« Reply #1 on: September 10, 2004, 11:12:01 AM »
I fixed it by adding this to my acad.lsp file.
Code: [Select]
(if (not acet-attsync) (command "attsync" "" (command)))
Stupid solution for a stupid problem.
:)

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
acet-attsync
« Reply #2 on: September 10, 2004, 11:28:22 AM »
Try this :

Code: [Select]
(if (not Acet-Getvar) (vla-load AcetUtil.fas))
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

Ron Heigh

  • Guest
acet-attsync
« Reply #3 on: September 10, 2004, 05:10:33 PM »
Thanks, but that didn't do it either.
I tracked the function to the BATTMAN.ARX file.
I added it to my startup suite and now all is good.

Ron Heigh

  • Guest
acet-attsync
« Reply #4 on: September 10, 2004, 05:19:30 PM »
better yet.

(arxload "battman")