Aaron Smith wrote:
For Each hk In ActiveSettings.Hotkeys : If hk.Key <> "Undefined" Then : print hk.Description & " = " & hk.Key : End If : Next
And since Immed supports JScript, here's the JScript example of doing the same thing:
keys = ActiveSettings.Hotkeys; for(i = 1; i < keys.count + 1; i++){ if (keys(i).Key != "Undefined") { print(keys(i).Description + " = " + keys(i).Key); } }
Aaron -- 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
