Message 1 of 18
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello Everyone,
I am still learning lisp and thought of creating a lisp to attach pdf to the drawing as using the command "PDFATTACH" takes time to load a pdf with more than 100 pages and scrolling down the list to select the pages is time consuming.
(defun c:PFF()
(command "-PDFATTACH" "C:\XXX\XXX" "\\" "\\" "954" "0")
(princ)
)
When I run this lisp it says "C:XXX‚XXX not found. Can anyone help me out?
I want the lisp to pause for user input for "page number" and "scale". I even tried adding PAUSE instead of "\\", but still it didn't work.
Thanks in advance.
Solved! Go to Solution.