ShaunRWs Commands
TBM_Update

This command will update the timer based movement.

  Syntax
TBM_Update *No parameters*
  Returns

This command does not return a value.

  Description

This command will update the timer based movement.

  Example Code
// Call this command so that the timer based movement
// can adjust to the speed of the computer.
TBM_Initialize

// Main Loop
Do

	// Clear the screen
	CLS
	
	// Move Line 100 units per second
	inc X#,TBM_Move(100)
	Line X#,0,X#,Screen Height()
	
	// Dispite how long you wait, the line will
	// always move at the same speed.
	wait rnd(10)/10
	
	//update timer based movement
	TBM_Update
	
Loop
  See also

Timer Based Movement Commands Menu
ShaunRW`s Commands