Jump to content

Search the Community

Showing results for tags 'scale list'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • CADTutor
    • News, Announcements & FAQ
    • Feedback
  • AutoCAD
    • AutoCAD Beginners' Area
    • AutoCAD 2D Drafting, Object Properties & Interface
    • AutoCAD Drawing Management & Output
    • AutoCAD 3D Modelling & Rendering
    • AutoCAD Vertical Products
    • AutoCAD LT
    • CAD Management
    • AutoCAD Bugs, Error Messages & Quirks
    • AutoCAD General
    • AutoCAD Blogs
  • AutoCAD Customization
    • The CUI, Hatches, Linetypes, Scripts & Macros
    • AutoLISP, Visual LISP & DCL
    • .NET, ObjectARX & VBA
    • Application Beta Testing
    • Application Archive
  • Other Autodesk Products
    • Autodesk 3ds Max
    • Autodesk Revit
    • Autodesk Inventor
    • Autodesk Software General
  • Other CAD Products
    • BricsCAD
    • SketchUp
    • Rhino
    • SolidWorks
    • MicroStation
    • Design Software
    • Catch All
  • Resources
    • Tutorials & Tips'n'Tricks
    • AutoCAD Museum
    • Blocks, Images, Models & Materials
    • Useful Links
  • Community
    • Introduce Yourself
    • Showcase
    • Work In Progress
    • Jobs & Training
    • Chat
    • Competitions

Categories

  • Programs and Scripts
  • 2D AutoCAD Blocks
  • 3D AutoCAD Blocks
  • Images
    • Backgrounds

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 4 results

  1. Hi, I recently added some custom scales to my scale list and these now appear when I use the reset function during the SCALELISTEDIT command. Great! However, I have since created some more custom scales yet these do not appear when resetting the list How do I add new custom scales to the list as default? By the way, I have no idea how the previous custom scales were added to the default list, seems to me that AutoCAD did it by itself...
  2. Born and raised in the States, and having worked for decades as a carpenter, I am quite familiar with the Imperial system of measurement. I remember hearing in elementary school in the fifties that we would soon be switching to Metric, yeah right. After almost 20 years living on the other side of the pond, and having become fluent in Metric units, I now find having to deal with fractional conversions beyond tedious. Occasionally one of my coworkers will supply me with a 3D Model for detailing, which has erroneously been created on an Imperial template, it makes me nuts. I routinely vet incoming models using the -dwgunits command, inform the miscreant in question, and change the units to millimeters. But something that has always annoyed me, was that there appeared to be no way to then change the DEFAULT SCALE LIST (on the User Preferences tab in OPTIONS) values from Imperial to Metric. Scales would continue to be displayed Imperiously, like 3/8"=1'-0", requiring me to think way harder than I ever need to working in Metric units. I was quite pleasantly surprised to discover that there is a way to do it! Resetting the System Variable MEASUREMENT, which controls Hatch and Linetypes used by the system, as shown in the image will flick the switch. The Default Scale Lists follow suit. In order to ensure that the scales, area and volume units reported in PROPERTIES comply with your new scalelist units,you may need to use the SCALELISTEDIT command, and RESET option (thanks to the Ber for the name of the command, and to rkent for another tact). As rkent pointed out, the same dialog box can be reached through the VIEWPORT SCALE list, with the CUSTOM and RESET options.
  3. If I used millimeters as my UNITS, how can I scale them when plotting it into A1 or A0? How will I know the scale that I will use in Layout tab so that it will fit on the paper that I will used?a
  4. Hi Guys, I am writing a program for adding scale lists in AutoCAD 2010. This is where I am; (defun AddMetersScales() (command "-SCALELISTEDIT" "ADD" "1:5000 (Meters)" "0.2:1" "Exit") (command "-SCALELISTEDIT" "ADD" "1:3000 (Meters)" "0.3333:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:2000 (Meters)" "0.5:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:1000 (Meters)" "1:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:500 (Meters)" "2:1 " "EXIT") (command "-SCALELISTEDIT" "ADD" "1:400 (Meters)" "2.5:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:300 (Meters)" "3.333:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:250 (Meters)" "4:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:200 (Meters)" "5:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:150 (Meters)" "6.6666:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:100 (Meters)" "10:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:50 (Meters)" "20:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:25 (Meters)" "40:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:20 (Meters)" "50:1" "EXIT") (command "-SCALELISTEDIT" "ADD" "1:5 (Meters)" "200:1" "EXIT") ) Problem is that, if a drawing already has a scale in the above list, it brakes the loop and shows error. How to handle this? I just want to skip adding that scale if the error happens... Please help...
×
×
  • Create New...