HP Forums
(user key programming)Turning on alpha phase by pressing sto 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: (user key programming)Turning on alpha phase by pressing sto key? (/thread-10833.html)



(user key programming)Turning on alpha phase by pressing sto key? - vvolkan - 05-31-2018 04:45 PM

Hi everyone, i want to add code to my program to turn on the alpha phase simultaneously by pressing sto key. Is there any function or command to turn on alpha? I reassign the EEX button with shift+EEX button and want to add "alpha on" to where i wrote "?Alpha on?".

KEY K_Eex()
BEGIN
RETURN "▶a";
?Alpha ON?
END;

KEY KS_Eex()
BEGIN
RETURN "1e";
END;


RE: (user key programming)Turning on alpha phase by pressing sto key? - vvolkan - 05-31-2018 08:21 PM

I found a short way to store variables instead of using only letter. I use the program and EEX button return "▶a" then press a number. By this way expression store to alphanumeric var like "a1,a2...".
"x1,x2.." can also be used to store inputs with less confusing key strokes without the program.