Results 1 to 3 of 3

Thread: Change double-click of Attribute to use ATTEDIT instead of EATTEDIT

  1. #1
    Active Member tomdillenbeck's Avatar
    Join Date
    2004-05
    Location
    Dearborn, MI
    Posts
    52
    Login to Give a bone
    0

    Question Change double-click of Attribute to use ATTEDIT instead of EATTEDIT

    Is there a way to change double clicking on an attribute to the ATTEDIT command rather than the Enhanced Attribute Editor?

    The Enhanced Att Editor doesn't allow tabing through the fields and it's a lot of mouse clicking/keyboard interface.

  2. #2
    AUGI Addict Glenn Pope's Avatar
    Join Date
    2001-05
    Location
    Austin, TX USA
    Posts
    2,201
    Login to Give a bone
    0

    Default Re: Change double-click of Attribute to use ATTEDIT instead of EATTEDIT

    You can do the same in the enhanced editor. Except you hit enter instead of tab.(at least on mine it doses)
    Last edited by Glenn Pope; 2004-06-09 at 04:45 PM.

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

    Default Re: Change double-click of Attribute to use ATTEDIT instead of EATTEDIT

    Hi

    Below snippets come from a couple of old ACAD Guild posts that I made -

    <snip>
    Check out the following Technical Document on the Autodesk web site under the Knowledge Base section -

    ID: TS69698 - Start ATTEDIT instead of EATTEDIT when inserted block with attributes is double-clicked

    Personally would strongly recommend that you don't do the above in the AutoCAD file Acad2000Doc.lsp, instead place the code in a User Maintained file ie

    Acad.lsp
    AcadDoc.lsp
    Custom.mnl
    </snip>

    <snip>
    How about setting up two ToolBar Buttons, something like below -

    Turns DoubleClick EATTEDIT ON
    ^C^C(if (and (findfile "AcEattedit.arx") (not (member "aceattedit.arx" (arx) ) ) ) (progn (arxload "AcEattedit") (command "._REDEFINE" "_EATTEDIT")) (command "._REDEFINE" "_EATTEDIT"))

    Turns DoubleClick EATTEDIT OFF
    ^C^C(if (and (findfile "AcEattedit.arx") (not (member "aceattedit.arx" (arx) ) ) ) (progn (arxload "AcEattedit") (command "._UNDEFINE" "_EATTEDIT")) (command "._UNDEFINE" "_EATTEDIT"))

    Note - you still need to do the other "stuff" (As OutLined in ID: TS69698) first, the two ToolBar Buttons above just allow you to switch On/Off.

    Karl, I was going to go with your answer (.EAttEdit) as it makes sense but I think you will find it doesn't work if EAttEdit has been UnDefined :(

    but this will work -

    .AcEAttedit.eattedit

    Note - the above will only work if AcEattedit.arx is loaded
    </snip>


    Have a good one, Mike
    Last edited by Mike.Perry; 2005-02-01 at 03:04 PM. Reason: Correct bad formatting.

Similar Threads

  1. ACAD Mech 07 - Double-click Attribute to open editor on selected Attribute
    By svanderputten in forum AutoCAD Mechanical - General
    Replies: 5
    Last Post: 2012-01-25, 06:08 PM
  2. 2011: CTRL + Double Click attribute
    By ordengate in forum AutoCAD General
    Replies: 1
    Last Post: 2011-02-07, 04:31 PM
  3. lost Double click block to edit attribute
    By jrb63 in forum ACA General
    Replies: 2
    Last Post: 2010-03-05, 04:21 PM
  4. Change double click
    By ndiamo4669 in forum AutoCAD General
    Replies: 2
    Last Post: 2009-09-08, 05:24 PM
  5. Multiline Attribute - Double Click
    By irneb in forum AutoCAD General
    Replies: 0
    Last Post: 2007-10-24, 07:12 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
  •