Author Topic: AecDwgSetup scale  (Read 5069 times)

0 Members and 1 Guest are viewing this topic.

Matt__W

  • Seagull
  • Posts: 12955
  • I like my water diluted.
AecDwgSetup scale
« on: August 10, 2011, 04:36:08 PM »
Trying to get back to my LSP roots.

I'd like to change the scale in the AECDWGSETUP dialog box, but I don't know what the sysvar is?  Anyone??!?


(Arch/MEP 2011)
Autodesk Expert Elite
Revit Subject Matter Expert (SME)
Owner/FAA sUAS Pilot @ http://skyviz.io

Matt__W

  • Seagull
  • Posts: 12955
  • I like my water diluted.
Re: AecDwgSetup scale
« Reply #1 on: August 10, 2011, 04:45:47 PM »
I think I can get away with using -AECDWGSETUP and go through the command line options.

But just for future reference, what IS the sysvar for the aec scales?
Autodesk Expert Elite
Revit Subject Matter Expert (SME)
Owner/FAA sUAS Pilot @ http://skyviz.io

BlackBox

  • King Gator
  • Posts: 3770
Re: AecDwgSetup scale
« Reply #2 on: August 10, 2011, 06:29:56 PM »
I think I can get away with using -AECDWGSETUP and go through the command line options.

But just for future reference, what IS the sysvar for the aec scales?

Matt,

I'm not that familiar with MEP, so I'm unsure of what SysVar(s) may be available to you there, but I can tell you that Land Desktop used a block named ADCADD_ZZ which held this sort of 'project' data.

Perhaps the 2011 version will offer you more feature functionality... Try digging through SYSVDLG command.
"How we think determines what we do, and what we do determines what we get."

BlackBox

  • King Gator
  • Posts: 3770
Re: AecDwgSetup scale
« Reply #3 on: August 10, 2011, 06:31:40 PM »
Found this in a quick search.
"How we think determines what we do, and what we do determines what we get."

alanjt

  • Needs a day job
  • Posts: 5352
  • Standby for witty remark...
Re: AecDwgSetup scale
« Reply #4 on: August 10, 2011, 06:34:06 PM »
The AECC settings won't be in the sysvdlg.
Civil 3D 2019 ~ Windohz 7 64bit
Dropbox

BlackBox

  • King Gator
  • Posts: 3770
Re: AecDwgSetup scale
« Reply #5 on: August 10, 2011, 06:37:11 PM »
Perhaps the 2011 version will offer you more feature functionality... Try digging through SYSVDLG command.

The AECC settings won't be in the sysvdlg.

Thanks for clarifying; I wasn't sure.
"How we think determines what we do, and what we do determines what we get."

alanjt

  • Needs a day job
  • Posts: 5352
  • Standby for witty remark...
Re: AecDwgSetup scale
« Reply #6 on: August 10, 2011, 08:13:58 PM »
Perhaps the 2011 version will offer you more feature functionality... Try digging through SYSVDLG command.

The AECC settings won't be in the sysvdlg.

Thanks for clarifying; I wasn't sure.
No problem. I like the new snazzy avatar.
Civil 3D 2019 ~ Windohz 7 64bit
Dropbox

Matt__W

  • Seagull
  • Posts: 12955
  • I like my water diluted.
Re: AecDwgSetup scale
« Reply #7 on: August 11, 2011, 08:15:43 AM »
I'm sure JB would know but I haven't seen him around here in a while.
Autodesk Expert Elite
Revit Subject Matter Expert (SME)
Owner/FAA sUAS Pilot @ http://skyviz.io

irneb

  • Water Moccasin
  • Posts: 1794
  • ACad R9-2016, Revit Arch 6-2016
Re: AecDwgSetup scale
« Reply #8 on: August 11, 2011, 09:33:07 AM »
I'm not sure about MEP, but in ACA this info is saved into a dictionary: AEC_VARS under the namedobjdict. This is in turn also a dictionary with an item called AEC_VARS_DWG_SETUP ... but doing an entget or even a vlax-dump-object on it gives absolutely no info whatsoever.

I think it's the same problem as RenderMan's mentioned in other posts: No way to get at these Verticals' data without DotNet/ARX. Painful aint it?
Common sense - the curse in disguise. Because if you have it, you have to live with those that don't.

Matt__W

  • Seagull
  • Posts: 12955
  • I like my water diluted.
Re: AecDwgSetup scale
« Reply #9 on: August 11, 2011, 09:49:56 AM »
Nothing is jumping out at me at the moment.  :\

This is what dbview shows.
Autodesk Expert Elite
Revit Subject Matter Expert (SME)
Owner/FAA sUAS Pilot @ http://skyviz.io

irneb

  • Water Moccasin
  • Posts: 1794
  • ACad R9-2016, Revit Arch 6-2016
Re: AecDwgSetup scale
« Reply #10 on: August 11, 2011, 10:02:46 AM »
Did basically the same thing through my old DictEdit lisp:


Common sense - the curse in disguise. Because if you have it, you have to live with those that don't.

JohnK

  • Administrator
  • Seagull
  • Posts: 10648
Re: AecDwgSetup scale
« Reply #11 on: August 11, 2011, 11:02:53 AM »

Code: [Select]
Command: cannoscale
Enter new value for CANNOSCALE, or . for none <"1/8" = 1'-0"">: 1/4\" = 1'-0\"
Command: cannoscale
Enter new value for CANNOSCALE, or . for none <"1/4" = 1'-0"">: 1/8" = 1'-0"

...

(getvar 'CANNOSCALEVALUE)
(/ 1 (getvar 'CANNOSCALEVALUE))
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org

BlackBox

  • King Gator
  • Posts: 3770
Re: AecDwgSetup scale
« Reply #12 on: August 11, 2011, 12:00:05 PM »
Perhaps the 2011 version will offer you more feature functionality... Try digging through SYSVDLG command.

The AECC settings won't be in the sysvdlg.

Thanks for clarifying; I wasn't sure.
No problem. I like the new snazzy avatar.

Thanks!  :-D
"How we think determines what we do, and what we do determines what we get."

Jeff H

  • Needs a day job
  • Posts: 6150
Re: AecDwgSetup scale
« Reply #13 on: August 11, 2011, 12:11:43 PM »
Are talking about the default value for new drawings?
 
Change it in the dialog box and click the
Save as default
 
I think you set one up for metric and imperial