In addition to the enums, here's a nice way to use Immed to get a list of all the hotkeys in the current set file:

For Each hk In ActiveSettings.Hotkeys : print hk.Description & " = " & hk.Key : Next

With 200+ keys, it will take a while. If you only want the defined keys, weed out the undefined, like this:

For Each hk In ActiveSettings.Hotkeys : If hk.Key <> "Undefined" Then : print hk.Description & " = " & hk.Key : End If : Next

Aaron

Stephen Clower wrote:
Sean,

All of the hotkey values are listed under the enums section of the WE scripting manual. I use Dragon on occasion, although I'm still using 7.0 preferred. I'd be happy to help come up with a Window-Eyes interface to the program.

Regards,
Steve


Sean Farrow wrote:
Hi:
Cheers, just what I needed. Is there a way to get a list of all hotkeys?
Aditionaly, arethere any dragon naturally speaking users on this list
willing tohelp test/develop an interface to window-eyes?
Sean.
-----Original Message-----
From: Stephen Clower [mailto:[EMAIL PROTECTED] Sent: 12 October 2008 20:24
To: [email protected]
Subject: Re: Activating a hotkey no matter what application is active

Sean Farrow wrote:
No, I want to execute that hotkey, how do I do this?

Use ExecuteHotkey.

Regards,
Steve

__________ Information from ESET NOD32 Antivirus, version of virus
signature database 3515 (20081011) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com
__________ Information from ESET NOD32 Antivirus, version of virus
signature database 3515 (20081011) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com


--
To insure that you receive proper support, please include all past
correspondence (where applicable), and any relevant information
pertinent to your situation when submitting a problem report to the GW
Micro Technical Support Team.

Aaron Smith
GW Micro
Phone: 260/489-3671
Fax: 260/489-2608
WWW: http://www.gwmicro.com
FTP: ftp://ftp.gwmicro.com
Technical Support & Web Development

Reply via email to