Author Topic: Error when trying to edit dimensions?  (Read 1893 times)

0 Members and 1 Guest are viewing this topic.

Robb

  • Guest
Error when trying to edit dimensions?
« on: September 22, 2004, 03:34:50 PM »
I am trying to edit the dimension text but I get this error:

"Application ERROR: irfcld
Error: invalid AutoCAD command: <Entity name: 400d8090>"

Usually I get the default text editor but now it seems to open in wordpad.

Anyone know how I can get past this?

I tried using CH to change the properties of the dimension line but it wont let me return a new line.

Help!?!

Thanks!

M-dub

  • Guest
Error when trying to edit dimensions?
« Reply #1 on: September 22, 2004, 03:42:18 PM »
Can you not change the text editor back to internal?
MTEXTED

Robb

  • Guest
Error when trying to edit dimensions?
« Reply #2 on: September 22, 2004, 06:27:49 PM »
What would I use to revert it back to default?

Right now it has the path to wordpad.exe

What do use in place of that?

Thanks, I beileve that is what it is. I may have changed it after reading a post a couple of weeks back.

Thanks M-Dub

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Error when trying to edit dimensions?
« Reply #3 on: September 22, 2004, 06:31:07 PM »
TheSwamp.org  (serving the CAD community since 2003)

CADaver

  • Guest
Error when trying to edit dimensions?
« Reply #4 on: September 22, 2004, 07:19:25 PM »
Use MTEXTED to prefix your wordpad text editor with :lisped# as in:

:lisped#C:\Program Files\Windows NT\Accessories\wordpad.exe

If the mtext entity has less than 32 characters it will pop up in a dialog box editor just like single line text, more than 32 will pop to the editor.


Code: [Select]
(defun c:mxtxtg ()
(if (= (strcase (getvar "mtexted")) "INTERNAL")
  (setvar "mtexted" ":lisped#C:/WINNT/system32/notepad.exe")
  (setvar "mtexted" "INTERNAL")
)
)