Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

point size keeps resetting

tomislav_vargek
Enthusiast

point size keeps resetting

tomislav_vargek
Enthusiast
Enthusiast

Hello everyone.

Since yesterday I'm having problem with resetting point size to 0.4 every time I close/open a drawing.

Any ideas on fixing that?

0 Me gusta
Responder
Soluciones aceptadas (1)
1.621 Vistas
14 Respuestas
Respuestas (14)

imadHabash
Mentor
Mentor

Hi,

We need to see those points .. would you please attache here a CAD dwg sample for testing ?

 

Imad Habash

EESignature

0 Me gusta

tomislav_vargek
Enthusiast
Enthusiast

all dwg, no matter which you open...it also sets point style to first in second row...

0 Me gusta

imadHabash
Mentor
Mentor

I suggest from Ptype command .. you have two options for the point size .. check if any changes happened if you change your option ... check this article that may help . >> Click << 

 

Imad Habash

EESignature

0 Me gusta

tomislav_vargek
Enthusiast
Enthusiast

I can normally change point type and size and save drawing, but when I open it or any other drawing it sets point type to first in second row and point size to 0.4

0 Me gusta

imadHabash
Mentor
Mentor

I'm afraid that you have an outsource plugin or a lisp that make this issue . 

 

Imad Habash

EESignature

0 Me gusta

tomislav_vargek
Enthusiast
Enthusiast

I've tried unloading one vlx application that I use and start acad clean but it's still happening...

0 Me gusta

pendean
Community Legend
Community Legend
Solución aceptada

See this from HELP 

pendean_0-1646319401535.png

 

Now you know it is a per-DWG file setting: it appears someone either went through all of your DWG file to reset them, or you still have a startup that is taking over that is still not removed (not unloaded, REMOVED).

Keep at it or reset/reinstall the program nd answer YES to replace all files if asked.

 

HTH

0 Me gusta

Kent1Cooper
Consultant
Consultant

@tomislav_vargek wrote:

... when I open ... any ... drawing it sets point type to first in second row and point size to 0.4

[and]

I've tried unloading one vlx application that I use....


So something is changing both the PDMODE and PDSIZE System Variables.

 

You must have something-or-other(s) other than the .vlx file you mention, that are being loaded every time and making that change.  As a start, do this at the command line:

(findfile "acaddoc.lsp")

and if it doesn't return nil, go to the file it found and check for such settings.  If they're not in that, they could be in some other file that is loaded by a (load) function in that file.

 

If it returns nil, look for anything in the Startup Suite [the briefcase icon in the APPLOAD Dialog Box].

Kent Cooper, AIA
0 Me gusta

tomislav_vargek
Enthusiast
Enthusiast

There's nothing in the loading suite, but the rest I must check tomorrow at work...

0 Me gusta

tomislav_vargek
Enthusiast
Enthusiast

ok, so I've done all of it and still nothing...it's like something changed it "somewhere in the core" of program and I'm really reluctant to reinstalling but seems to me only thing left unless someone knows something else?

@pendean  if it is saved with the file, then it means something is changing it upon opening file cause it's the same for every file I open...

0 Me gusta

cadffm
Consultant
Consultant

Hi,

 

>" I've done all of it "

As Test: Start your program in /safemode {BTW: What is you program? Start command ABOUT to see Produktname and Productversion }

https://help.autodesk.com/view/ACD/2022/ENU/?guid=GUID-8E54B6EC-5B52-4F62-B7FC-0D4E1EDF093A

It works now, correct? If yes, we going further searching after a restart NOT in safemode.

 

(findfile "acaddoc.lsp") done

(findfile "acad.lsp")

(findfile "acad20xxdoc.lsp") xx = you have to edit the xx to your correct productname

(findfile "acadxx.lsp") xx = you have to edit the xx to your correct productname

 

Start new file, check PDSIZE, 0.4 again? Okay.

Start APPLOAD and share the list of loaded applications in screenshots.

In newer versions you can stretch the APPLOAD dialog to show whole filenames, pathes

and a long list for less screenshots.

 

And in CUI command you can see the name of your main cuix (is it acad.cuix?)

perhaps an enterprise cuix and a lot of partial cuix.

 

Run (findfile "<cuixname>.lsp") foreach cuixnames and check the content, if AutoCAD answer isn't "nil".

 

Sebastian

0 Me gusta

tomislav_vargek
Enthusiast
Enthusiast

ok, so I found .lsp files are ok, but something in customization is doing it cause when I switch profile to clean one, the problem goes away, so I would have to remove all customization..

0 Me gusta

tomislav_vargek
Enthusiast
Enthusiast

I have found exactly what went wrong...one customizable toolbar that was loading at startup somehow changed it's parameters  and was affecting all drawings..

THANK YOU ALL FOR YOUR EFFORT IN HELPING ME!

0 Me gusta

pendean
Community Legend
Community Legend

Yay!

0 Me gusta