--- title: "TS2068 Tips" type: "article" slug: "ts2068-tips-3" url: "http://localhost/article/ts2068-tips-3/" markdown_url: "http://localhost/article/ts2068-tips-3.md" published_at: "2022-10-07T12:27:27+00:00" modified_at: "2026-08-08T21:06:16+00:00" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "The enclosed hardcopy of my dilemma is rather self explanatory, however just to clarify. Line 10: I want \"capacitance\" to flash but only until the input is printed. Then it is to remain on the screen in a non-flashing situation. 10 PRINT FLASH 1; \"CAPACITANCE\" 20 INPUT C: PRINT C 30 PRINT: PRINT FLASH O…" category: - name: "Quarters" slug: "quarters" taxonomy: "category" url: "http://localhost/category/periodicals/quarters/" post_tag: - name: "Best of Timex/Sinclair 2068 Articles and Documents" slug: "ts2068best" taxonomy: "post_tag" url: "http://localhost/tag/ts2068best/" - name: "Reference" slug: "reference" taxonomy: "post_tag" url: "http://localhost/tag/reference/" - name: "TS 2068" slug: "ts2068" taxonomy: "post_tag" url: "http://localhost/tag/ts2068/" model: - name: "Timex/Sinclair 2068" slug: "ts-2068" taxonomy: "model" url: "http://localhost/model/ts-2068/" indiv: - name: "Bill Johnson" slug: "bill-johnson" taxonomy: "indiv" url: "http://localhost/indiv/bill-johnson/" publication_r: id: 21505 title: "QuarTerS" type: "periodical" url: "http://localhost/periodical/quarters/" authors: "Bill Johnson" authors_r: - name: "Bill Johnson" slug: "bill-johnson" taxonomy: "indiv" url: "http://localhost/indiv/bill-johnson/" issues_articles: - id: 39506 title: "Quarters Summer 1985" type: "issue" url: "http://localhost/issue/quarters-summer-1985/" pages: "5" pubdate: "Summer 1985" archive_link: false --- # TS2068 Tips The enclosed hardcopy of my dilemma is rather self explanatory, however just to clarify. Line 10: I want “capacitance” to flash but only until the input is printed. Then it is to remain on the screen in a non-flashing situation. ``` 10 PRINT FLASH 1; "CAPACITANCE" 20 INPUT C: PRINT C 30 PRINT: PRINT FLASH O ``` What ever you can do to help would certainly be appreciated. Sincerely, Dave Trevor, Phoenix, AZ Dear Dave: Once an item is printed to the screen in the flashing mode there is no way to just turn it off. As you know FLASH 1 turns on the FLASH mechanism. Every character typed after FLASH 1 will be printed to the screen flashing. FLASH 0 turns off the FLASH mechanism. This simply allows you to return to the non-flashing mode. All characters after the FLASH O will be printed to the screen normally. There is no simple way to turn off a flashing character after they have been printed to the screen. The PRINT AT statement is a very powerful statement with many uses. Try this to the above program lines: ``` 10 PRINT FLASH 1; AT 1,0; "CAPACITANCE" 20 INPUT C: PRINT C 30 PRINT AT 1,0; "CAPACITANCE" ``` As you can see that LINE 30 goes back and rewrites “CAPACITANCE” in a non-FLASHING mode.