Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (160 - 162 of 3866)

Ticket Resolution Summary Owner Reporter
#3781 No Bug Assign and Eval, Execute, they don't work like they should when it comes to variables. francomaro@…
Description

Assign and Eval, Execute, they don't work like they should when it comes to variables.

You cannot assign values ​​to arrays, nor values ​​when it comes to execute, nor using ByRef param.

#3780 Completed WinSetTitle reverts to default upon window focus on Notepad.exe >= Windows 19H1 Jpm AndyS19a@…
Description

I have a function that opens Notepad and sets its window title. However, the title reverts to whatever its default was when the Notepad window gets focus. To reproduce, run the WinSetTitle.au3 in the Examples folder, then move the cursor before the timeout expires.

Example()

Func Example()
	; Run Notepad
	Run("notepad.exe")

	; Wait 10 seconds for the Notepad window to appear.
	Local $hWnd = WinWait("[CLASS:Notepad]", "", 10)

	; Set the title of the Notepad window using the handle returned by WinWait.
	WinSetTitle($hWnd, "", "New Notepad Title - AutoIt")

	; Wait for 2 seconds to display the Notepad window and the new title.
	Sleep(2000)

	; Close the Notepad window using the handle returned by WinWait.
	WinClose($hWnd)
EndFunc   ;==>Example
#3779 Fixed AutoIt crashes anonymous
Description

The newest version of AutoIt has problem controlling Internet Explorer through COM objects and crashes. I have to sometimes switch back to version 3.3.12.0, because in that version it doesn't crash. This is confirmed not only in my computer. Overall I use Internet Explorer only for simple tasks because controlling it is unpredictable. Another issue I have is Excel in which when there is low available memory the AutoIt crashes, but the Excel and the system still works.

Note: See TracQuery for help on using queries.