Message 1 of 5
Using LISP c:ace_projwide_script to run a project wide script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have tried to use the flowing lisp file to run a script for each drawing in the project:
(defun c:ALLDWGS ()
(c:ace_projwide_scipt nil ALL_LINKS)
)
The script file "ALL_LINKS" is already loaded and runs if I call it from command line. The script for that is as follows:
(defun c:ALL_LINKS ()
(COMMAND "DATALINKUPDATE" "U" "K")
(COMMAND "ZOOM" "E")
)
Could these commands be incorporated into the "c:ace_projwide_scipt" somehow?
Any help would be greatly appreciated as I am new to this.
Regards
Damian