Results 1 to 7 of 7

Thread: How to disable 3DORBIT?

  1. #1
    Member
    Join Date
    2005-03
    Location
    Hyderabad, INDIA
    Posts
    26
    Login to Give a bone
    0

    Question How to disable 3DORBIT?

    Can any one suggest...

    How to disable 3DORBIT from ZOOM shortcut menu(Both in transparent and non transparent commands) . I am using AutoCAD Map 3D 2005.
    Because of this option in ZOOM shortcut menu. Unexpectedly I am selecting this option and which causes to so many problems in 2D drawings.

    Regards,
    Kotesh.
    Last edited by vkotesh; 2005-04-13 at 09:56 AM.

  2. #2
    The Silent Type Mike.Perry's Avatar
    Join Date
    2000-11
    Posts
    13,656
    Login to Give a bone
    0

    Default Re: How to disable 3DORBIT?

    Hi

    As far as I know you can't.... again as far as I know that particular shortcut pop-up menu is built into core AutoCAD.

    +

    Might want to have a browse through the following results obtained via an Autodesk Discussion "All AutoCAD Groups" search -

    3DOrbit AND Shortcut AND Menu - 16 results

    Have a good one, Mike

  3. #3
    The Silent Type RobertB's Avatar
    Join Date
    2000-01
    Location
    Seattle WA USA
    Posts
    5,859
    Login to Give a bone
    0

    Talking Re: How to disable 3DORBIT?

    Kotesh,

    Read my article in the Jul/Aug 2004 AUGIWorld magazine on context-menu editing. Download here.

  4. #4
    The Silent Type Mike.Perry's Avatar
    Join Date
    2000-11
    Posts
    13,656
    Login to Give a bone
    0

    Default Re: How to disable 3DORBIT?

    Hi Robert

    I am most probably looking right at it, and not seeing it, but from your Jul/Aug 2004 AUGIWorld article...

    It is my understand that running (I:LISTMENUS) will return a list of all context-sensitive menus that are available for editing, is that correct?

    If yes, I can't see the right-click "RealTime Zoom / Pan" menu (please refer to attached screen capture) that holds 3D Orbit.

    Could you please explain a little bit more....

    Mike
    Attached Images Attached Images

  5. #5
    The Silent Type RobertB's Avatar
    Join Date
    2000-01
    Location
    Seattle WA USA
    Posts
    5,859
    Login to Give a bone
    0

    Default Re: How to disable 3DORBIT?

    You are correct Mike... that menu is not available for edit.

    Rather, add this to Acad.lsp:
    Code:
    (arxload "AcOrbit.arx" nil)
    and add this to AcadDoc.lsp or a loaded custom menu's .mnl file:
    Code:
    (defun-q No3DOrbit ()
     (command "._Undefine" "3DOrbit")
     (princ))
    (defun C:3DOrbit ()
     (command "._RTZoom")
     (princ))
    (setq S::Startup (append S::Startup No3DOrbit))
    This won't get rid of the item, but will at least replace it with real-time zoom.

  6. #6
    The Silent Type Mike.Perry's Avatar
    Join Date
    2000-11
    Posts
    13,656
    Login to Give a bone
    0

    Default Re: How to disable 3DORBIT?

    Quote Originally Posted by RobertB
    You are correct Mike... that menu is not available for edit.

    This won't get rid of the item, but will at least replace it with real-time zoom.
    Hi Robert

    Ok! I see, and understand what you have done here.... but when using RealTime Zoom or Pan, right-click to bring up the shortcut menu.... ok! I think you get the picture.....

    Kotesh, it definitely doesn't look like it is possible to achieve what you are after.....

    Mike

  7. #7
    The Silent Type RobertB's Avatar
    Join Date
    2000-01
    Location
    Seattle WA USA
    Posts
    5,859
    Login to Give a bone
    0

    Default Re: How to disable 3DORBIT?

    Quote Originally Posted by Mike.Perry
    Ok! I see, and understand what you have done here.... but when using RealTime Zoom or Pan, right-click to bring up the shortcut menu.... ok! I think you get the picture.....
    Mike,
    The 3D Orbit item will still be there, using my code, but the command "3DOrbit" will execute the real-time zoom instead.

Similar Threads

  1. 3dOrbit bug
    By richardronan in forum AutoCAD 3D (2007 and above)
    Replies: 1
    Last Post: 2009-04-15, 11:44 AM
  2. 3dorbit Help!
    By valexander in forum AutoCAD General
    Replies: 1
    Last Post: 2008-12-16, 05:10 PM
  3. 3dOrbit defaulting to fly mode
    By brodeurj in forum AutoCAD General
    Replies: 1
    Last Post: 2006-10-25, 09:33 PM
  4. Fixing some 3DORBIT problems
    By Bill Gilliss in forum AutoCAD Tips & Tricks
    Replies: 8
    Last Post: 2006-10-03, 04:14 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •