Author Topic: ortho buttons  (Read 3460 times)

0 Members and 1 Guest are viewing this topic.

CADaver

  • Guest
ortho buttons
« Reply #15 on: June 24, 2005, 01:26:15 PM »
Quote from: ryandk
However, in his defense, F8 is a long way to go if you're just using the left hand on the keyboard and the right hand on the mouse.
"Long way to go" from where?  Does he not use 9's or 0's because they are a "long way to go'?  I understand how big a PITB some folks can be, but I think this is a little much, at least it would be for me.  Sorry, But I'd have to drop a rock on this guy.

daron

  • Guest
ortho buttons
« Reply #16 on: June 24, 2005, 02:15:50 PM »
I wouldn't do that, CADaver. You might crack his ski goggles. :lol: :lol: :lol: :lol:

I'm glad I'm the only one up here right now. I'd be getting a lot of looks otherwise, from laughing so much.

ronjonp

  • Needs a day job
  • Posts: 7529
ortho buttons
« Reply #17 on: June 24, 2005, 03:43:18 PM »
You could load this:

Code: [Select]
(defun c:OM (/ b)
  (setq b (getvar 'orthomode))
  (if (= b 1)
    (progn
      (setvar 'orthomode 0)
      (princ "\n  < O r t h o  i s  O F F >")
    )
  )
  (if (= b 0)
    (progn
      (setvar 'orthomode 1)
      (princ "\n  < O r t h o  i s  O N >")
    )
  )
  (princ)
)


Then redefine an accelerator key to allow for only one keystroke.
Code: [Select]

["F1"]^C^C'om;


Still kinda reinventing the wheel though.

Ron

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC

CADaver

  • Guest
ortho buttons
« Reply #18 on: June 24, 2005, 05:42:29 PM »
Yeah, I'd tell him I redefined a button for him, the big silver one on the front of the computer case.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
ortho buttons
« Reply #19 on: June 24, 2005, 06:05:10 PM »
Sometimes I am really, really happy that I work by myself.
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

David Hall

  • Automatic Duh Generator
  • King Gator
  • Posts: 4075
ortho buttons
« Reply #20 on: June 24, 2005, 06:21:27 PM »
Quote from: CADaver
Yeah, I'd tell him I redefined a button for him, the big silver one on the front of the computer case.

Note to self: dont drink soda while reading Cadaver's post.  Dr. Pepper has the tendency to make the keys on the keyboard sticky.  ROFLMAO!  Oh and Daron, I just got all the funny looks you were avoiding.
Everyone has a photographic memory, Some just don't have film.
They say money can't buy happiness, but it can buy Bacon and that's a close second.
Sometimes the question is more important than the answer. (Thanks Kerry for reminding me)

ronjonp

  • Needs a day job
  • Posts: 7529
ortho buttons
« Reply #21 on: June 24, 2005, 07:06:57 PM »
Quote
Yeah, I'd tell him I redefined a button for him, the big silver one on the front of the computer case.


Or something like:

["F1"]^C^C_shell SHUTDOWN -s -t 01;
["F2"]^C^C_shell SHUTDOWN -s -t 01;
["F3"]^C^C_shell SHUTDOWN -s -t 01;
["F4"]^C^C_shell SHUTDOWN -s -t 01;
["F5"]^C^C_shell SHUTDOWN -s -t 01;
["F6"]^C^C_shell SHUTDOWN -s -t 01;
["F7"]^C^C_shell SHUTDOWN -s -t 01;
["F8"]^C^C_shell SHUTDOWN -s -t 01;
["F9"]^C^C_shell SHUTDOWN -s -t 01;
["F10"]^C^C_shell SHUTDOWN -s -t 01;
["F11"]^C^C_shell SHUTDOWN -s -t 01;
["F12"]^C^C_shell SHUTDOWN -s -t 01;

  :lol:  :lol:

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC