HOW DO I EDIT OSNAP POPUP MENU

Discussion in 'AutoCAD' started by G. Willis, Jan 3, 2004.

  1. G. Willis

    G. Willis Guest

    It's been a while since I've used this method and I don't recall how do I:

    1) Set my middle mouse button to bring up the OSNAP popup menu?

    2) Edit the SNAP options (order, etc.) in the OSNAP popup menu?

    I am using ACAD 2002.

    Thank you in advance.

    Garth W.
     
    G. Willis, Jan 3, 2004
    #1
  2. Set MBUTTONPAN = 0
    (or use Ctrl+RMB)

    modify the acad.mns. Goto "***Pop0" and you will see what to do.


    Juergen
     
    Jürgen Palme, Jan 3, 2004
    #2
  3. G. Willis

    G. Willis Guest

    Juergen,

    Thanks,

    That worked perfectly!

    Garth.
     
    G. Willis, Jan 5, 2004
    #3
  4. G. Willis

    joebob Guest

    And watch-out for your customizations in the MNR file, as well (Geez!
    couldn't they have made it a bit simpler?!)
     
    joebob, Jan 7, 2004
    #4
  5. G. Willis

    Bob Guest

    The menu source file is the acad.mnu file. The ***pop tag identifies the
    sub-menu for pop-ups, POP0 being the cursor menu.

    //
    // Begin AutoCAD Pull-down Menus
    //
    ***POP0
    **SNAP
    // Shift-right-click
    [&Object Snap Cursor Menu]
    ID_Tracking [Trac&king]_tracking
    ID_From [&From]_from
    ID_MnPointFi [->Point Fi&lters]
    ID_PointFilx [.X].X
    ID_PointFily [.Y].Y
    ID_PointFilz [.Z].Z
    [--]
    ID_PointFixy [.XY].XY
    ID_PointFixz [.XZ].XZ
    ID_PointFiyz [<-.YZ].YZ
    [--]
    ID_OsnapEndp [&Endpoint]_endp
    ID_OsnapMidp [&Midpoint]_mid
    ID_OsnapInte [&Intersection]_int
    ID_OsnapAppa [&Apparent Intersect]_appint
    [--]
    ID_OsnapCent [&Center]_cen
    ID_OsnapQuad [&Quadrant]_qua
    ID_OsnapTang [&Tangent]_tan
    [--]
    ID_OsnapPerp [&Perpendicular]_per
    ID_OsnapNode [No&de]_nod
    ID_OsnapInse [In&sert]_ins
    ID_OsnapNear [Nea&rest]_nea
    ID_OsnapNone [&None]_non
    [--]
    ID_Osnap [&Osnap Settings...]'_osnap

    This is the Mouse button menu. Button 1 is always "Pick" and is not on
    the menu. Button 2 is Right and Button 3 is middle. //= "remark" (code
    not executed.


    /
    // Begin System Pointing Device Menus
    //
    ***AUX1
    // Simple button
    // if a grip is hot bring up the Grips Cursor Menu (POP 17), else send a
    // carriage return
    $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,5),GRIP_),$P0=ACAD.GRIPS
    $P0=*);
    // The prevoius line (Line 1 = button 2) may have wrapped (to 2)in
    // your browser. Next is line 2 = button 3)
    $P0=SNAP $p0=*
    ^C^C
    ^B
    ^O
    ^G
    ^D
    ^E
    ^T

    hope this helps


    Caddgeek
     
    Bob, Jan 21, 2004
    #5
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.