Displays output on a debugging session started by _DebugSetup()
#include <Debug.au3>
_DebugOut ( $sOutput )
@error and @extended of the caller are preserved.
Each time _DebugOut() is called, the output is put on its own line.
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.2.8.1
Author: David Nuttall
Script Function:
Base script to show functionality of Debug functions.
#ce ----------------------------------------------------------------------------
#include <Debug.au3>
_DebugSetup ("Check Excel")
For $i= 1To 4
WinActivate ("Microsoft Excel")
; interact with Excel
Send ("{Down}")
_DebugOut ("Moved Mouse Down")
Next