Custom Query (3931 matches)
Results (418 - 420 of 3931)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #2436 | Rejected | AutoIt Command Line Interpreter | ||
| Description |
AutoIt3.exe is a GUI application so a console isn't allocated for it when it is runs. All console output (i.e. ConsoleWrite) is ignored. You HAVE to compile a .au3 as a console application for it to run in a command prompt. We need a console AutoIt3Console.exe that can be called from the command prompt. .au3c files (or whatever) could be registered to run AutoIt3Console so that you could natively run .au3c files from a command prompt by simply typing "clean_temp.au3c". I think using AutoIt to make command line programs would make AutoIt way more useful for creating administrative and miscellaneous utilities. AutoIt3 isn't really designed for GUIs. I mean, it's difficult to use AutoIt to create a proper GUI application that's event driven. Using input and message boxes are very similar to using console write and read. Are most AutoIt3 scripts event GUI applications? Mine aren't. Most scripts would run better as console applications, hence why I believe full support for command line interpretation should be added. I can't run .au3 files from a command prompt and would like to! Thanks for such fantastic software! |
|||
| #2717 | Fixed | AutoIt Constants include files | ||
| Description |
Using #include <Constants.au3> include all of them except the Font, GUI and Windows constants. This is not true. What about: #include <InetConstants.au3> ?? |
|||
| #3021 | Fixed | AutoIt Crash - calling obj method | ||
| Description |
Repro code: #include <ie.au3>
MsgBox(0, 'Correct', _IEObj().Navigate('https://www.autoitscript.com/forum/'))
MsgBox(0, 'Crash', _IEObj.Navigate('https://www.autoitscript.com/forum/'))
Func _IEObj()
Local $oIE = _IECreate("www.autoitscript.com")
Return $oIE
EndFunc
Result: >"C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /beta /ErrorStdOut /in "Z:\TOOLs\Macro\FORUM\___FORUM -- na forum\TEST_IE_CRASH.au3" /UserParams +>02:53:32 Starting AutoIt3Wrapper v.15.503.1200.1 SciTE v.3.5.4.0 Keyboard:00000415 OS:WIN_7/Service Pack 1 CPU:X64 OS:X64 Environment(Language:0415) +> SciTEDir => C:\Program Files (x86)\AutoIt3\SciTE UserDir => C:\Users\user\AppData\Local\AutoIt v3\SciTE\AutoIt3Wrapper SCITE_USERHOME => C:\Users\user\AppData\Local\AutoIt v3\SciTE >Running AU3Check (3.3.13.21) from:C:\Program Files (x86)\AutoIt3\Beta input:Z:\TOOLs\Macro\FORUM\___FORUM -- na forum\TEST_IE_CRASH.au3 +>02:53:32 AU3Check ended.rc:0 >Running:(3.3.13.20):C:\Program Files (x86)\AutoIt3\Beta\autoit3.exe "Z:\TOOLs\Macro\FORUM\___FORUM -- na forum\TEST_IE_CRASH.au3" --> Press Ctrl+F11 to Restart or Ctrl+Break -or- F11 to Stop !>02:53:57 AutoIt3.exe ended.rc:-1073741819 +>02:53:57 AutoIt3Wrapper Finished. >Exit code: 3221225477 Time: 25.39 |
|||
