element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Autodesk EAGLE
  • Products
  • More
Autodesk EAGLE
EAGLE User Support (English) parameters file
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Autodesk EAGLE to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 6 replies
  • Subscribers 189 subscribers
  • Views 884 views
  • Users 0 members are here
  • parameters
Related

parameters file

david_f
david_f over 14 years ago

Hello,

 

In the demo projects there are parameters inclued in the project (width_menu, diameter_menu...).

I found the command string to change the different values but I don't find the file where it stored.

 

Are these parameters stored in a parameter file?

 

I'd like to have the same parameters for all new projects and I wouldn't enter manualy the values each time.

 

Thanks for help.

 

David

  • Sign in to reply
  • Cancel
Parents
  • e14 Contributor
    e14 Contributor over 14 years ago

    david fournier wrote:

    Hello,

     

    In the demo projects there are parameters inclued in the project

    (width_menu, diameter_menu...).

    I found the command string to change the different values but I don't

    find the file where it stored.

     

    Are these parameters stored in a parameter file?

     

    I'd like to have the same parameters for all new projects and I

    wouldn't enter manualy the values each time.

     

    Thanks for help.

     

    David

     

    Eagle starts each time using a default set of settings until modified by a

    later action. You did this manually from the command line but it can be done

    for you as you open a design file.

     

    The parameters you see in the demo projects are the eagle native(default)

    ones unless modified by 'eagle.scr'

     

    Each time you open a design file the script file 'eagle.scr' is

    automatically run. It is here you place these same command lines you

    manually entered so that your wishes are implemented.

    Any eagle.scr settings change the native default settings. If nothing is

    mentioned nothing changes.

    View eagle.scr and note the different sections. Place your SET commands in

    the BRD: section

     

    e.g.

    Set Width_Menu 0 0.001 0.004 0.006 0.01 0.015 0.02 0.025 0.03 0.04 0.05 0.06

    0.08 0.1 0.15 0.2;

    Change Width 0.03;

     

    Another file interacts here, in some cases, as well. 'eaglerc.usr' . This

    stores user settings the last time you saved all /exited a file/project. and

    restores them upon opening the next design file. Sometimes it happens that a

    change to eagle.scr does not appear to work when it is 'eaglerc.usr' making

    itself felt. So during testing you need to assure that the editor you are

    working in reflects the way you want it when you close it.  That said, your

    'width_menu, diameter_menu' lists are not held there.

     

    All the best

    Warren

     

     

     

    --

    Viewed / responded via the newsgroup at

    news.cadsoft.de

     

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • e14 Contributor
    e14 Contributor over 14 years ago

    david fournier wrote:

    Hello,

     

    In the demo projects there are parameters inclued in the project

    (width_menu, diameter_menu...).

    I found the command string to change the different values but I don't

    find the file where it stored.

     

    Are these parameters stored in a parameter file?

     

    I'd like to have the same parameters for all new projects and I

    wouldn't enter manualy the values each time.

     

    Thanks for help.

     

    David

     

    Eagle starts each time using a default set of settings until modified by a

    later action. You did this manually from the command line but it can be done

    for you as you open a design file.

     

    The parameters you see in the demo projects are the eagle native(default)

    ones unless modified by 'eagle.scr'

     

    Each time you open a design file the script file 'eagle.scr' is

    automatically run. It is here you place these same command lines you

    manually entered so that your wishes are implemented.

    Any eagle.scr settings change the native default settings. If nothing is

    mentioned nothing changes.

    View eagle.scr and note the different sections. Place your SET commands in

    the BRD: section

     

    e.g.

    Set Width_Menu 0 0.001 0.004 0.006 0.01 0.015 0.02 0.025 0.03 0.04 0.05 0.06

    0.08 0.1 0.15 0.2;

    Change Width 0.03;

     

    Another file interacts here, in some cases, as well. 'eaglerc.usr' . This

    stores user settings the last time you saved all /exited a file/project. and

    restores them upon opening the next design file. Sometimes it happens that a

    change to eagle.scr does not appear to work when it is 'eaglerc.usr' making

    itself felt. So during testing you need to assure that the editor you are

    working in reflects the way you want it when you close it.  That said, your

    'width_menu, diameter_menu' lists are not held there.

     

    All the best

    Warren

     

     

     

    --

    Viewed / responded via the newsgroup at

    news.cadsoft.de

     

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
  • e14 Contributor
    e14 Contributor over 14 years ago in reply to e14 Contributor

    Am 03.11.2011 22:47, schrieb Warren Brayshaw:

    Each time you open a design file the script file 'eagle.scr' is

    automatically run.

     

    Please note that this eagle.scr is NOT run if you open any design saved

    as a PROJECT (the ones that have a gray or green dot in the control

    panel), which is rather confusing.

     

    Therefore, BEFORE creating designs, you should think about what you want

    or need:

      1. If you want to equip every design with its OWN settings, menus,

         etc., create your design with "new project". Its settings are

         then stored in a separate file, and your default settings from

         'eagle.scr' are ignored, as they might be replaced by your

         project's own ones.

         This might save time during design, because all settings stay

         as when last edited, BUT small mistakes (e.g., showing a

         different grid just for measuring) will NEVER be set back to

         useful defaults, so chances for mistakes are higher.

      2. If you want to open every design with some DEFAULT settings,

         menus, etc., independent of its settings when last edited, do

         NOT use projects, but 'new schematic'. This does NOT

         save any settings, so the defaults from 'eagle.scr' are used

         EVERY TIME you open the design.

         This takes some seconds longer during design, because

         previously changed settings get reset automatically, BUT at

         least one can RELY on those defaults and does not need to

         make sure that all millions of possible settings were really

         left as wanted on last exit.

     

    It's your choice how you want to work.

     

    Andreas Weidner

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube