• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • AutoCAD 2010/2011/2012 DWG Format

    Reply
    New Member
    Posts: 2
    Registered: ‎02-04-2013

    mbuttonpan

    139 Views, 3 Replies
    02-04-2013 07:53 AM

    dear sir,

     

    when i open one drawing i want to change mbuttonpan value is 1. how can change the value 1 ever? and polyline thickness also i want to change in option. please send the solution.

    Please use plain text.
    *Expert Elite*
    Patchy
    Posts: 5,311
    Registered: ‎09-16-2009

    Re: mbuttonpan

    02-04-2013 08:10 AM in reply to: muhammedriyas

    MBUTTONPAN variable stores in the registry, no reason to change in a drawing.

    PLINEWID stores in a drawing, change it in your template drawing.

     

    For any drawing that you open and you need to set default PLINEWID, make it happen by using ACADDOC.LSP

    Please use plain text.
    New Member
    Posts: 2
    Registered: ‎02-04-2013

    Re: mbuttonpan & ployline

    02-04-2013 08:54 AM in reply to: muhammedriyas

    Dear sir,

     

    As my previous mail, I don't get clear answer from you. Please mention how I can solve these problems?

     

    1) I need to change mbuttonpan value 1, when I open every drawing.

     

    2) I need to change polyline width in option, when I open every drawing.

     

    Please give the correct answer for these problems, or attached jpg for this.

     

     

    Please use plain text.
    *Expert Elite*
    Patchy
    Posts: 5,311
    Registered: ‎09-16-2009

    Re: mbuttonpan & ployline

    02-05-2013 06:30 AM in reply to: muhammedriyas

    MBUTTONPAN is a variable you set it once and it doesn't change the next time you open another drawing, if you have to reset it to 1 all day, you need to repair your autocad.

     

    PLINEWID is not a variable you change in OPTIONS, you choose your pline width for default and save your drawing as a template.

     

    Both of those variables can be set by using ACADDOC.LSP (Hit F1 and read about it) and input whatever you want when a new drawing is opened.

     

    For example:

     

    (setvar "mbuttonpan" 1)
    (setvar "plinewid" 25)

    Please use plain text.