Author Topic: Command error.. need help...  (Read 4372 times)

0 Members and 1 Guest are viewing this topic.

fmn76

  • Guest
Command error.. need help...
« on: July 22, 2007, 09:02:53 PM »
Anyone can help me pls... i get this lisp from BTN Lisp... and get error like this...

Command: cpe wipeout Specify first point or [Frames/Polyline] <Polyline>: f
Enter mode [ON/OFF] <ON>: off Regenerating model.

Command:
Select point on contour line: insert Enter block name or [?]: el_tag Specify
insertion point or [Scale/X/Y/Z/Rotate/PScale/PX/PY/PZ/PRotate]:
Enter X scale factor, specify opposite corner, or [Corner/XYZ] <1>:
1.000000000000000 Enter Y scale factor <use X scale factor>: 1.000000000000000
Specify rotation angle <0>: ; error: bad argument value: AutoCAD command:
#<SUBR @05cf4410 PAUSE>

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Command error.. need help...
« Reply #1 on: July 22, 2007, 09:51:07 PM »
Perhaps try something like this ..
Code: [Select]
(DEFUN c:cpe (/ P VAL scl)
    (COMMAND "wipeout" "f" "off")
    (SETQ scl (GETVAR "dimscale")
          om  (GETVAR "osmode")
    )
    (SETVAR "osmode" 512)
    (SETQ p   (GETPOINT "\nSelect point on Contour Line: ")
          val (RTOS (NTH 2 p) 2 0)
    )
    (COMMAND "insert" "el_tag" p scl scl pause)
    (COMMAND val)
    (SETVAR "osmode" om)
    (PRINC)
)
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

fmn76

  • Guest
Re: Command error.. need help...
« Reply #2 on: July 22, 2007, 10:10:39 PM »
hmm..ok im try ur lisp but still error come out...like this..... :|


Specify rotation angle <0>: ; error: bad argument value: AutoCAD command:
#<SUBR @04beaca8 PAUSE>

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Command error.. need help...
« Reply #3 on: July 22, 2007, 10:14:46 PM »
looks like you have a command overwriting the ACAD definition

what do you get for
(type pause)

?
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Command error.. need help...
« Reply #4 on: July 22, 2007, 10:20:18 PM »
I'd suggest you do a file search for a .LSP file that contains
defun pause
or just
pause

that's likely to be the problem
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Adesu

  • Guest
Re: Command error.. need help...
« Reply #5 on: July 22, 2007, 10:33:35 PM »
Hi fmn76,
test again this code
Code: [Select]
(defun c:cpe (/ om p pause scl val)
  (command "wipeout" "f" "off")
  (setq scl (getvar "dimscale"))
  (setq om (getvar "osmode"))
  (setvar "osmode" 512)
  (setq p (getpoint"\nSelect point on Contour Line: "))
  (setq val (rtos (nth 2 p) 2 0))
  (command "insert"  "el_tag" p scl scl pause val "")
  (setvar "osmode" om)
  (princ)
  )

and you could look at attach file.

hmm..ok im try ur lisp but still error come out...like this..... :|


Specify rotation angle <0>: ; error: bad argument value: AutoCAD command:
#<SUBR @04beaca8 PAUSE>

fmn76

  • Guest
Re: Command error.. need help...
« Reply #6 on: July 22, 2007, 11:22:55 PM »
Thanks ....Adesu & Kerry... i found that error... TQ again....

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Command error.. need help...
« Reply #7 on: July 22, 2007, 11:27:21 PM »
.. and the error was ?? ???
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Command error.. need help...
« Reply #8 on: July 23, 2007, 06:22:24 PM »

hmmmm ...

fmn76, What was the error ?
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

fmn76

  • Guest
Re: Command error.. need help...
« Reply #9 on: July 23, 2007, 08:33:47 PM »
Sorry Kerry... actualy i combine my collection of lisp in 1 file... so that why have i have error in my lisp.... TQ again about ur idea/lisp...