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
  • 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
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • 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 Chat (English) 2013 June EAGLE Bug Poll
  • 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 8 replies
  • Subscribers 179 subscribers
  • Views 489 views
  • Users 0 members are here
Related

2013 June EAGLE Bug Poll

autodeskguest
autodeskguest over 12 years ago

Hello everyone,

 

Vote for what bug you would like to see fixed

http://www.easypolls.net/poll.html?p=51ac92bae4b0604d061ed8dc

 

The poll will let you selet multiple items--just pick the items that are

important to you. Items are in order of most votes over past months and

prefixed by the number of previous votes in parenthesis.

 

If you would like a bug added to the list please reply to this post and

make your case.

 

Disclaimer: I can make no promises these will actually get fixed, but this

should help inform CadSoft as to which bugs should be fixed next. Items in

the list are added at my discretion as well as the decision of bug vs

feature on this poll.

 

Cheers,

 

James.

--

James Morrison  ~~~  Stratford Digital

 

Specializing in CadSoft EAGLE

  • Online Sales to North America

  • Electronic Design Services

  • EAGLE Enterprise Toolkit

--

Web access to CadSoft support forums at www.eaglecentral.ca.  Where the CadSoft EAGLE community meets.

 

  • Sign in to reply
  • Cancel
Parents
  • Johann.Glaser@gmx.at
    Johann.Glaser@gmx.at over 12 years ago

    Hi!

     

    Am Montag, den 03.06.2013, 08:50 -0400 schrieb James Morrison:

    Hello everyone,

     

    Vote for what bug you would like to see fixed

    http://www.easypolls.net/poll.html?p=51ac92bae4b0604d061ed8dc

     

    The poll will let you selet multiple items--just pick the items that are

    important to you. Items are in order of most votes over past months and

    prefixed by the number of previous votes in parenthesis.

     

    If you would like a bug added to the list please reply to this post and

    make your case.

     

    Please add ULP commands which can perform the very same things as is

    currently reserved to scripts. Precisely, remove the necessity for the

    dirty workaround to generate a script and execute it after quitting the

    ULP.

     

    Thanks

      Johann Glaser

     

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • autodeskguest
    autodeskguest over 12 years ago in reply to Johann.Glaser@gmx.at

    On 06/12/2013 03:43 PM, Johann Glaser wrote:

    Hi!

     

    Am Montag, den 03.06.2013, 08:50 -0400 schrieb James Morrison:

    Hello everyone,

     

    Vote for what bug you would like to see fixed

    http://www.easypolls.net/poll.html?p=51ac92bae4b0604d061ed8dc

     

    The poll will let you selet multiple items--just pick the items that are

    important to you. Items are in order of most votes over past months and

    prefixed by the number of previous votes in parenthesis.

     

    If you would like a bug added to the list please reply to this post and

    make your case.

     

    Please add ULP commands which can perform the very same things as is

    currently reserved to scripts. Precisely, remove the necessity for the

    dirty workaround to generate a script and execute it after quitting the

    ULP.

     

    Thanks

       Johann Glaser

     

     

     

    You can do this now. Concatenate a string with the same commands you

    would use in the script and then pass the string to the exit() function.

     

    For example,

     

    string cmd;

    string s;

     

    board(B)

    {

       B.elements(E)

       {

         if (ingroup(E))

         {

           sprintf(s, "ROTATE R22.5 %s %d;\n", E.name);

           cmd+= s;

         }

       }

    }

     

    exit(cmd);

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • autodeskguest
    autodeskguest over 12 years ago in reply to autodeskguest

    On 06/13/2013 02:29 PM, Eric Stevens wrote:

    On 06/12/2013 03:43 PM, Johann Glaser wrote:

    Hi!

     

    Am Montag, den 03.06.2013, 08:50 -0400 schrieb James Morrison:

    Hello everyone,

     

    Vote for what bug you would like to see fixed

    http://www.easypolls.net/poll.html?p=51ac92bae4b0604d061ed8dc

     

    The poll will let you selet multiple items--just pick the items that are

    important to you. Items are in order of most votes over past months and

    prefixed by the number of previous votes in parenthesis.

     

    If you would like a bug added to the list please reply to this post and

    make your case.

     

    Please add ULP commands which can perform the very same things as is

    currently reserved to scripts. Precisely, remove the necessity for the

    dirty workaround to generate a script and execute it after quitting the

    ULP.

     

    Thanks

       Johann Glaser

     

     

     

    You can do this now. Concatenate a string with the same commands you

    would use in the script and then pass the string to the exit() function.

     

    For example,

     

    string cmd;

    string s;

     

    board(B)

    {

       B.elements(E)

       {

         if (ingroup(E))

         {

           sprintf(s, "ROTATE R22.5 %s %d;\n", E.name);

           cmd+= s;

         }

       }

    }

     

    exit(cmd);

     

     

    Oops. Ignore that extra %d in the sprintf() statement.

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • autodeskguest
    autodeskguest over 12 years ago in reply to autodeskguest

    On 06/13/2013 02:29 PM, Eric Stevens wrote:

    On 06/12/2013 03:43 PM, Johann Glaser wrote:

    Hi!

     

    Am Montag, den 03.06.2013, 08:50 -0400 schrieb James Morrison:

    Hello everyone,

     

    Vote for what bug you would like to see fixed

    http://www.easypolls.net/poll.html?p=51ac92bae4b0604d061ed8dc

     

    The poll will let you selet multiple items--just pick the items that are

    important to you. Items are in order of most votes over past months and

    prefixed by the number of previous votes in parenthesis.

     

    If you would like a bug added to the list please reply to this post and

    make your case.

     

    Please add ULP commands which can perform the very same things as is

    currently reserved to scripts. Precisely, remove the necessity for the

    dirty workaround to generate a script and execute it after quitting the

    ULP.

     

    Thanks

       Johann Glaser

     

     

     

    You can do this now. Concatenate a string with the same commands you

    would use in the script and then pass the string to the exit() function.

     

    For example,

     

    string cmd;

    string s;

     

    board(B)

    {

       B.elements(E)

       {

         if (ingroup(E))

         {

           sprintf(s, "ROTATE R22.5 %s %d;\n", E.name);

           cmd+= s;

         }

       }

    }

     

    exit(cmd);

     

     

    Oops. Ignore that extra %d in the sprintf() statement.

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
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 © 2025 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.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube