Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

ESC key

0 views
Skip to first unread message

Bennett Engineers, Inc.

unread,
Jun 25, 1998, 3:00:00 AM6/25/98
to

Does anyone know how to assign the ESCAPE key to a digitizer puck button.
I want to modify the ***BUTTONS1 area of the menu file, but I don't know
what macro to put in there. Thanks!

Ryan

Clint Moore

unread,
Jun 25, 1998, 3:00:00 AM6/25/98
to

If your are desiring a cancel just use ^C in the menu.

--
Clint Moore
Moore Design
Cl...@mooredesign.net
http://www.mooredesign.net
Electrical Design Software for AutoCAD
Bennett Engineers, Inc. <b...@aloha.net> wrote in message
01bda07b$9cfd27e0$91010ccf@eng...

Warren Medernach

unread,
Jun 25, 1998, 3:00:00 AM6/25/98
to

Actually that won't execute a "true" cancel, ie it won't cancel grips.

Try this, somebody posted this a while back.

^C^P(sssetfirst)(princ);^P

Hope this helps
Warren M.

Matt Stachoni

unread,
Jun 25, 1998, 3:00:00 AM6/25/98
to

Try ^c^c^c

Three cancels will cancel any command and make any "hot" grips cold.

Matt
stac...@bellatlantic.net
msta...@architectsde.com

Clint Moore

unread,
Jun 25, 1998, 3:00:00 AM6/25/98
to

Matt,

I don't think so, or at least it doesn't on my machine.

Enjoy,

--
Clint Moore
Moore Design
Cl...@mooredesign.net
http://www.mooredesign.net
Electrical Design Software for AutoCAD

Matt Stachoni <stac...@bellatlantic.net> wrote in message
3592ca93...@adesknews.autodesk.com...

John Elliott

unread,
Jun 25, 1998, 3:00:00 AM6/25/98
to

And check carefully. Depending on the editor you are using you
may get it even if you don't want it, and if you think you've deleted it.

This will totally blow you mind if you are writing attribute extraction templates.

John

Matt Dillon wrote:

> You wouldn't, by any chance, have a trailing space at the end of the ^C^C^C, would
> you? That would be translated as a <RETURN>


John Schmidt

unread,
Jun 25, 1998, 3:00:00 AM6/25/98
to

>> ESCAPE key <<

I haven't tried this for a digitizer button, but it works fine when
assigned to a toolbar button:

^c^c_graphscr

or:

^c^c_graphscr;_redraw

The second version simply cleans up the screen; both versions will even
cancel all the way out of a hot grip.

John

Bennett Engineers, Inc.

unread,
Jun 26, 1998, 3:00:00 AM6/26/98
to

OK, I've tried all of your suggestions -- still no go! The ^C^C^C command
seems to work for a mouse (in the ***AUX1 menu section), but I'm still
having problems with my digitizer (a Summasketch III with 4 button puck).

If I put ^C^C^C in the ***BUTTONS1 section for my puck, the following
occurs (using the "Move" command as an example):

1. Invoke the "move" command.
2. Select object(s)
3. Now if I try to cancel (using the ^C^C^C defined button), I get a
"Invalid point" error. It's seems as if the button is invoking an enter
keypress.

I get the same result using the ^C^P(sssetfirst)(princ);^P command.

When we used to have AutoCAD v12, a ^C^C command worked fine. I am so used
to using the 3rd button on the puck as a true cancel, I really want to
retain this function.

Ryan

Matt Dillon

unread,
Jun 26, 1998, 3:00:00 AM6/26/98
to

You wouldn't, by any chance, have a trailing space at the end of the ^C^C^C, would
you? That would be translated as a <RETURN>

Matt Dillon
The D.C. CADD Company, Inc.
(Remove nospam for email reply)

Matt Dillon

unread,
Jun 26, 1998, 3:00:00 AM6/26/98
to

Good point. I remember having this happen to me back in the dark ages of DOS EDIT. Eeeeeew.


On Thu, 25 Jun 1998 23:38:33 -0400, John Elliott <drjohn...@upstate.net> wrote:

>And check carefully. Depending on the editor you are using you
>may get it even if you don't want it, and if you think you've deleted it.
>
>This will totally blow you mind if you are writing attribute extraction templates.
>
>John
>
>Matt Dillon wrote:
>

>> You wouldn't, by any chance, have a trailing space at the end of the ^C^C^C, would
>> you? That would be translated as a <RETURN>
>
>
>

Matt Dillon


The D.C. CADD Company, Inc.

(remove "nospam" for email replies)

Matt Dillon

unread,
Jun 26, 1998, 3:00:00 AM6/26/98
to

Then you don't have one...

Don't know what else it might be.


On 26 Jun 1998 21:51:14 GMT, "Bennett Engineers, Inc." <b...@aloha.net> wrote:

>I don't believe I have a trailing space (I use WordPad to edit the acad.mns
>file). How do I make sure I don't have a space? The cursor butts right up
>to the last C when I click on the line.
>
>Ryan

Bennett Engineers, Inc.

unread,
Jun 26, 1998, 3:00:00 AM6/26/98
to

Hey John -- thanks for your input. I tried this and it doesn't work on the
puck button.

Ryan


Bennett Engineers, Inc.

unread,
Jun 26, 1998, 3:00:00 AM6/26/98
to

Cabot Eudaley

unread,
Jun 26, 1998, 3:00:00 AM6/26/98
to

Here's some of our 16-button (non-shifted) menu
section. I reported that ^c doesn't cancel grips,
so they gave me the '^p(sssetfirst)(princ)' part.
It still won't cancel realtime pan/zoom - no fix
for that.

Cabot

//---------------------------------------------------------
// tablet menus
//---------------------------------------------------------
***BUTTONS1
[Button 1]^o
[Button 2]^c^c^p(sssetfirst)(princ)
[Button 3];
[Button 4]nea
[Button 5]endp
[Button 6]int
[Button 7]per
[Button 8]'zoom w
[Button 9]'zoom p
[Button A]nod
[Button B]mid
[Button C]ins
[Button D]cen
[Button E]qua
[Button F]fro

Steve Doman

unread,
Jun 26, 1998, 3:00:00 AM6/26/98
to

Matt Dillon wrote ...
>>>>> ... back in the dark ages of DOS EDIT. Eeeeeew. <<<<<


Or even darker ages: Using Edlin to edit acad.mnu one line at a time while
shelling out of Acad.

-Steve Doman

John Schmidt

unread,
Jun 28, 1998, 3:00:00 AM6/28/98
to

>> it doesn't work on the puck button. <<

Hmmm...that's funny. I just tried assigning it to the middle mouse
button, (AUX1 section), and it worked fine, so I don't know why it
wouldn't work on a puck button. I should be around a digitizer in the
next week or so, and I'll try it there.

Wait a minute...are you using a Wintab driver? If so, you might have to
assign it in the AUX1 section. Have you tried this? Just for grins, see
if it works if you replace the $P0=SNAP $p0=* line with ^c^c_graphscr in
the AUX1 section.

John

Ed Williams

unread,
Jun 29, 1998, 3:00:00 AM6/29/98
to

Umm, are you using the right mouse button for this, or a digitizer?
Under Windows, I have had trouble assigning any function to that durn
right mouse button (or even the corresponding one on a digitizer...)

On 26 Jun 1998 21:53:22 GMT, "Bennett Engineers, Inc." <b...@aloha.net>
wrote:

>Hey John -- thanks for your input. I tried this and it doesn't work on the
>puck button.
>
>Ryan
>

| G. Edward Williams
| GIS Consultant
| AUGI #7943 ADN #3460
| EdW...@Bham.Net

0 new messages