0

I installed AutoIt extension for Visual Studio Code and when I run the script using Ctrl + F5 it executes but does not display the form to enter IP details. Same script in SciTE editor is working fine.

enter image description here

How can I make my AutoIt script run in Visual Studio code?

user4157124
  • 2,809
  • 13
  • 27
  • 42
  • 1
    `Reason I moved to visual studio code is due to debugging features which Scite editor lacks and it is very difficult to troubleshoot the flow of the script.` Can you point me to description of how you can debug AutoIt script in a "better way" ? – Michał Lipok Jan 30 '21 at 13:48
  • AutoIt is an interpreted language you should make breakpoints and watch in your code bo creating `MsgBox()` or `ConsoleWrite()` or any other invention. There are some projects like [raphical AutoIt Debugger](https://www.autoitscript.com/forum/topic/21834-graphical-autoit-debugger/). – Michał Lipok Feb 01 '21 at 15:03

1 Answers1

1

AutoIt extension for Visual Studio Code requires SciTE4Autoit3, not just the version that comes with the AutoIt installer.

user4157124
  • 2,809
  • 13
  • 27
  • 42