If you just want to start the Script at a specific location you could use the GoTo trick, e.g. Public Module Main Dim _desktop As Desktop = Agent.Desktop Public Sub Main() GoTo OVER Workbench.ResultComment("Hello World 1") Workbench.ResultComment("Hello World 2") OVER: Workbench.ResultComment("Hello World 3") Workbench.ResultComment("Hello World 4") End Sub End Module Obviously you'd need to do this before you run the script.
↧