xuzo 1 Posted December 29, 2015 How to know on what line script exited on pause and how to view script as it's running?When I run a script, sometimes I pause it pressing break:HotKeySet("{pause}", "_exit"); Ctrl+BreakThen the script does stop and shows me this in console:>Exit code: 0 Time: 83.6Tells me how long the run lasted before pausing it. However, I would like to know on what line number the script paused. Additionally, is it possible to view the script running, live, line by line? So I can see what the script does simultaneously as it is executing? (2 window panes, one for script and one where the script gets executed. Share this post Link to post Share on other sites
dcat127 1 Posted December 29, 2015 If you use scite, use Trace:add trace lines Share this post Link to post Share on other sites
water 2,392 Posted December 29, 2015 UseAutoItSetOption("TrayIconDebug", 1)to show the current script line in the tray icon tip to help debugging. My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites