Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello all,
Im at a loss here. I did a lisp to insert a PE seat at a specific coordinate, it does not register the Y coordinate. Im not sure what happened because I have used this method in the past. It registers the X coordinate but it puts the Y coordinate at 1.556. I have changed the Y to several different values but doesn't change unless I put 3 or more.
(DEFUN C:APDMS ()
(SETVAR "CMDECHO" 1)
(COMMAND "-LAYER" "M" "DWG-SEAL" "L" "CONTINUOUS" "" "LW" "0" "" "S" "0" "") ;SEAL LAYER
(SETVAR "CLAYER" "DWG-SEAL")
(COMMAND
"-INSERT"
"Z:/Shared/zCAD/Automation/Seals/Derek Meyers - SEAL.DWG"
(LIST 29.7 2.5)
"1"
"1"
"0"
)
(command "explode" "last")
(SETVAR "CMDECHO" 1)
(PROMPT "\n AUTOPLACED DEREK MEYERS SEAL \n")
(PRINC)
)
Solved! Go to Solution.