TheSwamp

CAD Forums => CAD General => CAD Standards => Topic started by: LE on April 27, 2006, 03:03:32 PM

Title: Typing or Using Toolbar Buttons?
Post by: LE on April 27, 2006, 03:03:32 PM
I only use the following buttons on different toolbars:

QSAVE
OPEN
QNEW
DRAWORDER FRONT, BEHIND
MSTRETCH
SHEETSET

Typing everything else [shortcuts & some number accelerators].....  :-)

And how about you?
Title: Re: Typing or Using Toolbar Buttons?
Post by: ronjonp on April 27, 2006, 03:06:23 PM
I mostly type everything in and use accelerators.
Title: Re: Typing or Using Toolbar Buttons?
Post by: dan19936 on April 27, 2006, 03:18:10 PM
only new/open, layer drop down, layer previous, color/linetype properties drop-down
use custom menu for less used power commands that I can't remember for typing

Dan
Title: Re: Typing or Using Toolbar Buttons?
Post by: Birdy on April 27, 2006, 04:56:22 PM
Prolly 85% keyboard entry.
Only one row of buttons cross the top.  mostly drop down windows (layer, dimstyle, etc.) and those generally for visual feedback on where I'm at.
Title: Re: Typing or Using Toolbar Buttons?
Post by: nivuahc on April 27, 2006, 08:16:38 PM
I use toolbars for symbology only. Everything else is keyboard entry.
Title: Re: Typing or Using Toolbar Buttons?
Post by: Jeff_M on April 27, 2006, 08:33:27 PM
I don't type worth a dink, so it's mainly Toolbars/Palletes for me. Plus, with all of the commands that aren't named in LDD/C3D it is far easier than typing.
Title: Re: Typing or Using Toolbar Buttons?
Post by: Kerry on April 27, 2006, 08:38:10 PM
Both .. probably equally
I get enough practice typing, so buttons are a refreshing diversion sometimes.

... but I do have a fairly comprehensive shortcut/hotkey file.

Title: Re: Typing or Using Toolbar Buttons?
Post by: MickD on April 27, 2006, 08:45:33 PM
If it can be done in one go, ie. 'co' for copy or ctrl+s for save, ctrl+n for New etc. I'll type it, if it's a multiple choice command such as ucs->new->3point or dimensioning etc. I'll use the toolbuttons.
Title: Re: Typing or Using Toolbar Buttons?
Post by: JohnK on April 27, 2006, 10:20:08 PM
keyboard for about 95%+ of it. The rest is the tool pallets or the one tool bar i have open.

I too have customized my pgp file; i moved all my popular keys to the left side of the keyboard.

v = copy
b = line
vv = move
c = copy
df = match props
as = curent layer to selected
sa = selected to cur lay
q = id layer
r = roatate
...
I dont remeber anymore right now.
Title: Re: Typing or Using Toolbar Buttons?
Post by: Bryco on April 27, 2006, 11:02:22 PM
Same as se7en, 95% keyboard.
Mick you don't need the N, I use UU->ob or UU->3
(UU is my shortcut  ucs)
Title: Re: Typing or Using Toolbar Buttons?
Post by: jonesy on April 28, 2006, 02:20:30 AM
Mines approx 50/50 split.

Usually the old ones like zoom, move, copy are keyboard, but the commands I dont use daily I tend to use the toolbars and menus.
Title: Re: Typing or Using Toolbar Buttons?
Post by: FengK on April 28, 2006, 02:39:23 AM
About 80% keyboard typing, plus 15% toolbars buttons (commands ususally too long or not that frequently used), and 5% menus.
Title: Re: Typing or Using Toolbar Buttons?
Post by: Dinosaur on April 28, 2006, 08:05:13 AM
"The times, they are a changin'"

Regular drafting mode I have about 10 favorite buttons and the rest is two or three key commands I have used since r10.

 With my design software though, I am probably splitting things about 20% from the pulldown menu and the rest is split between context menu selections from the toolspace interface (the primary program interface) and similar actions and choices from right mouse clicks on objects.  The Civil 3d commands were obviously not intended to be used with keyboard entry.
Title: Re: Typing or Using Toolbar Buttons?
Post by: M-dub on April 28, 2006, 08:15:19 AM
I would guess about 90% keyed in.  I have a number of handy dandy macro buttons that I use frequently.  Most of it is typed in and I'm lost (more like aggravated) when I go to a machine without my pgp file.
Title: Re: Typing or Using Toolbar Buttons?
Post by: Slim© on April 28, 2006, 08:23:03 AM
There are tools bars with buttons?
Title: Re: Typing or Using Toolbar Buttons?
Post by: M-dub on April 28, 2006, 08:25:55 AM
There are tools bars with buttons?

Yeah, the Home Depot started serving drinks...

Get it? Get it?  Tool Bar?  :roll:


I make myself sick...
Title: Re: Typing or Using Toolbar Buttons?
Post by: Slim© on April 28, 2006, 08:26:39 AM
 :lmao: :lmao: :lmao:
Title: Re: Typing or Using Toolbar Buttons?
Post by: CADaver on April 28, 2006, 08:47:58 AM
EVERY possible command is PGP'd with usually 2 or 3 letters.
Some 500 two or three key lisp functions for a multitude of additional specific functions
Nearly evrything is at the keyboard. Very old keyboard junkie.
Pull downs for specific symbology insertions
One toolbar, six buttons for  "midpoint between two points" and "point along vector" calculations as osnaps
Title: Re: Typing or Using Toolbar Buttons?
Post by: M-dub on April 28, 2006, 09:14:21 AM
One toolbar, six buttons for  "midpoint between two points" and "point along vector" calculations as osnaps

I love that little gem! :)
Code: [Select]
(defun c:btwn (/ PT1 PT2)
  (setq PT1
    (getpoint "\nEnter first point:")
  )
  (setq PT2
    (getpoint "\nEnter second point:")
  )
  (polar PT1
    (angle PT1 PT2)
    (/ (distance PT1 PT2) 2)
  )
); end btwn.lsp
Title: Re: Typing or Using Toolbar Buttons?
Post by: CADaver on April 28, 2006, 09:24:13 AM
Code: [Select]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(setq dst 1.0
      frc 0.5)
(defun cvd ()
(if (= cal nil)
(arxload "geomcal")
)
(setq pt1 (getpoint "\n Select First Point Of Vector")
      pt2 (getpoint "\n Select Second Point Of Vector")
)
 (IF (SETQ Ndst (GETdist (STRCAT "Enter Distance along Vector <" (rtos dst) ">:  ")))
(setq dst ndst)
 )
(cal "pld(pt1,pt2,dst)")
)
(defun cvt ()
(if (= cal nil)
(arxload "geomcal")
)
(setq pt1 (getpoint "\n Select First Point Of Vector")
      pt2 (getpoint "\n Select Second Point Of Vector")
)
 (IF (SETQ Nfrc (GETdist (STRCAT "Enter Percentage of Distance along Vector <" (rtos frc 2 6) ">:  ")))
(setq frc nfrc)
 )
(cal "plt(pt1,pt2,frc)")
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Title: Re: Typing or Using Toolbar Buttons?
Post by: M-dub on April 28, 2006, 09:27:50 AM
Cool, I'll have to give yours a try :)
Title: Re: Typing or Using Toolbar Buttons?
Post by: CADaver on April 28, 2006, 10:17:09 AM
Cool, I'll have to give yours a try :)
CVD and CVT are not midpoint calculators, but point along vector calculators
CVD calculates a point along a vector (defined by two points) at some distance
CVT calculates a point along a vector (defined by two points) as a percentage of the distance between those points
Title: Re: Typing or Using Toolbar Buttons?
Post by: hudster on April 28, 2006, 11:05:03 AM
I type about 90% of my commands, the toolbars I use to string macros together which do lots of things at once, purge and audit for example.
Title: Re: Typing or Using Toolbar Buttons?
Post by: CottageCGirl on May 01, 2006, 02:12:56 PM
keyboard for about 95%+ of it. The rest is the tool pallets or the one tool bar i have open.

I too have customized my pgp file; i moved all my popular keys to the left side of the keyboard.

v = copy
b = line
vv = move
c = copy
df = match props
as = curent layer to selected
sa = selected to cur lay
q = id layer
r = roatate
...
I dont remeber anymore right now.


Hope you have job security....my last job had custom quick-keys and when I changed jobs to a company that dosen't do that, I automatically type "c" for copy and get circle instead

uggg-been doing that for almost 5 years now............
Title: Re: Typing or Using Toolbar Buttons?
Post by: M-dub on May 01, 2006, 02:16:47 PM
uggg-been doing that for almost 5 years now............

:shock:

You're not allowed to modify your pgp file?!?!?!?!?!?! For Shame!  I feel sorry for you!
Title: Re: Typing or Using Toolbar Buttons?
Post by: M-dub on May 01, 2006, 02:19:21 PM
Here's a button for ya's :)

Code: [Select]
^C^C^P(command"notepad"(findfile"acad.pgp")) ^P
...and another

Code: [Select]
^C^C_RE-INIT 16
Title: Re: Typing or Using Toolbar Buttons?
Post by: JohnK on May 01, 2006, 02:26:21 PM
(defun c:c () (command "_copy") (princ))

Why would i need job security for keyboard shortcuts? Im pretty sure those have been that way since r14. I took them with me to all the companies ive been at so far.
Title: Re: Typing or Using Toolbar Buttons?
Post by: M-dub on May 01, 2006, 02:29:57 PM
Taken from AutoCAD 2004 Help File:

Quote
Command aliases are shortcuts or alternative names for commands that you enter at the keyboard. The acad.pgp file lists the command aliases. You can change or delete these aliases, or you can add some of your own by editing the acad.pgp file. To access the acad.pgp file, on the Tools menu, click Customize, then Edit Custom Files, and then Program Parameters (acad.pgp).

The acad.pgp file also defines aliases for external commands for Windows® and DOS, which are not listed here.

IMO, edit away and keep your own copy somewhere.  If you have an internet e-mail address, e-mail it to yourself.
Title: Re: Typing or Using Toolbar Buttons?
Post by: dubb on May 01, 2006, 02:40:17 PM
Keyboard - 75%
pulldowns - 15%
buttons - 10%

commands like "L" "C" "M" "z" and all basic cad commands are done with typing.

for pulldowns i use the civil menu, express tools, map, and other commands that are hard to find

i use buttons for most of my 3d type projects

Title: Re: Typing or Using Toolbar Buttons?
Post by: CADaver on May 01, 2006, 05:16:04 PM
You're not allowed to modify your pgp file?!?!?!?!?!?! For Shame!  I feel sorry for you!
Around here it is discouraged.  The PGP is networked and locked.  You can force it to use your own, but you need to path it that way. However, if you do that and find yourself in a bind for some reason, you'll be on your own.
Title: Re: Typing or Using Toolbar Buttons?
Post by: SDETERS on May 01, 2006, 06:09:11 PM
We use two different Cad packages

I used to be able to fly around Autocad using Keyboard with cool accelerator keys and hidden pop up tool bars for less used commands.  I had  several routines were I hit an accelerator key and pop up a toolbar I hit the command and with that command the toolbar automatically hides it self and I go into that command.  Really cool.  But Since 99% of my work is in the 3D software different than autocad I use the toolbars for the little bit I do use autocad these days.  In the 3d software I use 80% percent keyboard and 10% tool bar or icons. 

My I/O


Title: Re: Typing or Using Toolbar Buttons?
Post by: MickD on May 01, 2006, 07:31:35 PM
Same as se7en, 95% keyboard.
Mick you don't need the N, I use UU->ob or UU->3
(UU is my shortcut ucs)

cool, thanks Bryce :)

I'll have to give that a go on some other commands.
Title: Re: Typing or Using Toolbar Buttons?
Post by: glee on May 01, 2006, 07:34:38 PM
Probably 90% keyboard. 
The toolbars I used are for our custom titlebloack, detail callouts etc. 
Our pgp file is locked.  (well a back up is kept in case somebody finds the file and messes with it).
As much single key strokes as possible.  No underscores for shortcuts or file names. 
Title: Re: Typing or Using Toolbar Buttons?
Post by: uncoolperson on May 01, 2006, 07:41:11 PM
i'm stuck with (well stuck upkeeping) mostly dialog boxes and toolbars, because nobody here seems to understand the command prompt or the keyboard...

drafter - "i click the button and nothing happens"
me - "what's it say?"
drafter - "what's it say where?"
me - "where you type commands in"
drafter - <puzzled 10 seconds> "huh?"
me - " let me see.... ohhh you made it go away, good job! lets not do that again... it tells you stuff, like 'pick starting point', see that button was doing something, it was waiting for you"
Title: Re: Typing or Using Toolbar Buttons?
Post by: glee on May 01, 2006, 07:45:31 PM
I have seen people hide their command lines or make it only one line to increase screen real estate because they have so many tool bars up.   :-(
Title: Re: Typing or Using Toolbar Buttons?
Post by: M-dub on May 01, 2006, 07:56:16 PM
I have seen people hide their command lines or make it only one line to increase screen real estate because they have so many tool bars up.   :-(

Hey, I do that!  :)

But, I also know when it should be telling me things that take up more than one line and I know where the F2 button is.  :)
Title: Re: Typing or Using Toolbar Buttons?
Post by: Crank on June 28, 2006, 01:13:41 AM
Try a 2nd screen.

My menu is so heavy customized, that It's impossible to make/remember shortcuts for every command.
The keyboard is only used for some basic commands like ERASE, LIST, ...

We have an acad.pgp on the network. If someone wants to modify this they can make a local copy that is first found in the search paths.

90% toolbars
8% keyboard
2% pull-downs
Title: Re: Typing or Using Toolbar Buttons?
Post by: ElpanovEvgeniy on June 28, 2006, 01:19:02 AM
 :-)
95% keyboard (Ctrl+ 70-80%)
3-4% toolbars
1-2% pull-downs