How to resolve the algorithm Terminal control/Hiding the cursor step by step in the Action! programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Terminal control/Hiding the cursor step by step in the Action! programming language

Table of Contents

Problem Statement

The task is to hide the cursor and show it again.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Terminal control/Hiding the cursor step by step in the Action! programming language

Source code in the action! programming language

PROC Wait(BYTE frames)
  BYTE RTCLOK=$14
  frames==+RTCLOK
  WHILE frames#RTCLOK DO OD
RETURN

PROC Main()
  BYTE CRSINH=$02F0 ;Controls visibility of cursor

  Print("Hiding the cursor...")
  Wait(50)
  CRSINH=1 PutE() ;put the new line character to force hide the cursor
  Wait(50)

  Print("Showing the cursor...")
  Wait(50)
  CRSINH=0 PutE() ;put the new line character to force show the cursor
  Wait(50)
RETURN

  

You may also check:How to resolve the algorithm Smarandache prime-digital sequence step by step in the F# programming language
You may also check:How to resolve the algorithm Sorting algorithms/Quicksort step by step in the MAXScript programming language
You may also check:How to resolve the algorithm Conditional structures step by step in the Simula programming language
You may also check:How to resolve the algorithm Sum of elements below main diagonal of matrix step by step in the AutoHotkey programming language
You may also check:How to resolve the algorithm Keyboard input/Obtain a Y or N response step by step in the OpenEdge/Progress programming language