' *** INPUT.GFA *** ' ' *** In a window the cursor is not completely erased after (LINE) INPUT ' *** GFA 3.07 ' CLS ' PRINT PRINT " GFA uses a special cursor for (LINE) INPUT on the TOS-screen. After you press" PRINT " the cursor is erased. In this demo we examine LINE INPUT." PRINT LINE INPUT " Type anything here: ",t$ PRINT PRINT PRINT " Please note that the cursor was neatly erased from the screen. Press any key..." ~INP(2) CLS TITLEW #1," LINE INPUT " FULLW #1 CLEARW 1 PRINT AT(1,2);" Now a window is opened and we'll use LINE INPUT again..." PRINT LINE INPUT " Type anything here: ",t$ PRINT PRINT PRINT " But now the cursor is not erased correctly. You'll notice that the rightmost" PRINT " pixel of the cursor is left on the screen, unless you pressed at" PRINT " once. I think this is a GEM-bug. Either that, or a fly left something on" PRINT " your screen." ~INP(2) CLOSEW 1 CLOSEW 0 ' CLS