// =============================================================================== // DESCRIPTION: Abstract class for loops in frame // CALLED BY: // PARAMS: // TYPE: // =============================================================================== // Init ========================================================================== @INIT if [__debug == 1] goto DEBUG goto SCRIPT // =============================================================================== // Debug ========================================================================= @DEBUG Echo #__debug_prefix#"Calling script __FRAME_LOOP" goto SCRIPT // =============================================================================== // Script ======================================================================== @SCRIPT if [__debug == 1] Echo #__debug_prefix#"Calling method __FRAME_LOOP::"#GetScriptParam(::)# goto #GetScriptParam(::)# goto EOF @START_PROGRESS Set __loop_progress true goto EOF @STOP_PROGRESS Set __loop_progress false goto EOF @EOF // ===============================================================================