delete_timer

Declaration

delete_timer (name: STRING)

Description

Removes the timer name from the test engine. The timer must have been previously created with make_timer. You can check if a timer exists using is_timer.

See Also

is_timer
make_timer
timer functions
Timer_Manager

Example

script start_test is
  make_timer ('test', 3600, False, False)
    -- a timer that fires in an hour and counts down
end

script on_test_fired is
  delete_timer ('test')
  load_item_in_frame ('time_is_up', 'main_window_frame')
end