HP Forums
Terminal Command (bug?) - 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: Terminal Command (bug?) (/thread-19042.html)



Terminal Command (bug?) - Eddie W. Shore - 10-29-2022 06:07 AM

Used: Emulator - Firmware 14596

Changing the contents of Twitter lines is fine. For instance, this code changes the 1st line of the Terminal to "{5,#0000FFh}":

Code:
EXPORT test2()
BEGIN
PRINT();
A:=1;
PRINT(A);
Terminal(1):={5,#0000FFh};
END;

This code, which is attempting to turn the first line blue, crashes the emulator:

Code:
EXPORT test2()
BEGIN
PRINT();
A:=1;
PRINT(A);
Terminal(−1):={5,#0000FFh};
END;




Also, I assume object is what I want printed. I don't know what to use for flags.