See the top rated post in this thread. Click here

Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12

Thread: keyboard commands tweaked

  1. #11
    Member
    Join Date
    2004-06
    Location
    Oklahoma
    Posts
    19
    Login to Give a bone
    1

    Thumbs up Re: keyboard commands tweaked

    Thanks a million this has been bugging me since last March when I install Acad 2005. I am still new to AutoLISP and I am trying to learn as much as I can. It's just difficult while juggling work/family time.

  2. #12
    100 Club
    Join Date
    2005-01
    Posts
    185
    Login to Give a bone
    0

    Default Re: keyboard commands tweaked

    Quote Originally Posted by mike.mccall
    I also believe that one should keep AutoCAD as is, so I created some simple lisp routines to make commands easier to input.

    Such as:

    (defun c:zx () (command "zoom""e""zoom"".95x"))
    (defun c:zp () (command "zoom""p"))
    (defun c:ze () (command "zoom""e"))
    (defun c:zz () (command "zoom"".75x"))
    (defun ca () (command "purge""all""*""n"))
    (defun c:cb () (command "_copybase"))
    (defun c:cc () (command "copy"))

    These all work great except for: (defun c:cc () (command "copy")) since the upgrade from AutoCAD 2002 to AutoCAD 2005 when the copy command went to multiple copy by default instead of the single copy that was the default in AutoCAD 2002 this command still gives me the single copy and I would like it to use the multiple. Anyone have any ideas as to how to make this work like copy in 2005?
    (defun c:cc () (command "copy" "m"))

    or

    (defun c:cc () (command "copy" PAUSE))


    Should do the trick, I am not positive though, I haven't tried it.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Keyboard Commands
    By backtothefuture4 in forum AutoCAD Customization
    Replies: 10
    Last Post: 2008-03-28, 12:43 PM
  2. Keyboard Short Commands
    By lureguy in forum AutoCAD CUI Menus
    Replies: 1
    Last Post: 2007-10-18, 08:58 PM
  3. Keyboard shortcut commands not working
    By wpeacock in forum AutoCAD General
    Replies: 13
    Last Post: 2007-06-19, 11:09 AM
  4. keyboard shortcut commands in revit
    By Max Lloyd in forum Revit Architecture - Tips & Tricks
    Replies: 5
    Last Post: 2005-09-01, 04:12 PM
  5. How to: Keyboard Shortcuts (Was: change commands)
    By mwittens83539 in forum Revit Architecture - General
    Replies: 5
    Last Post: 2005-05-09, 06:00 PM

Posting Permissions

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