HP Forums
Defining User Function for "a b/c" key? - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: HP Prime (/forum-5.html)
+--- Thread: Defining User Function for "a b/c" key? (/thread-7149.html)



Defining User Function for "a b/c" key? - toml_12953 - 11-01-2016 07:13 PM

Sorry if this has been answered before but I searched and couldn't find it. I can't seem to define the "a b/c" key to do anything. I have version 10637 of the Prime software and when I define a b/c, nothing happens when I'm in user mode and press it. Is it supposed to work for that key?

Code:
KEY K_Abc()
RETURN "Hello";
END;

Tom L


RE: Defining User Function for "a b/c" key? - eried - 11-01-2016 07:21 PM

You need to put "BEGIN" after KEY line


RE: Defining User Function for "a b/c" key? - Carlos295pz - 11-01-2016 09:20 PM

So far is not allowed to create a user key for:
+/- [ K_Neg ]
a b/c [ K_Abc ]
Shift + a b/c [ KS_Abc ]

Do not know if there is a reason for it.

Additional Information
Application for management of an User Keyboard additional [ HERE ]


RE: Defining User Function for "a b/c" key? - CH3791 - 11-02-2016 06:05 AM

This issue has been discussed before: http://www.hpmuseum.org/forum/thread-5261.html


RE: Defining User Function for "a b/c" key? - toml_12953 - 11-02-2016 05:24 PM

(11-01-2016 07:21 PM)eried Wrote:  You need to put "BEGIN" after KEY line

You're right. Even when I include the BEGIN, though, a b/c isn't mappable as a user key.

Tom L