Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (181 - 183 of 3927)

Ticket Resolution Summary Owner Reporter
#3836 Fixed FileExists with trailing quotation mark Jon therks@…
Description

Mentioned here first: https://www.autoitscript.com/forum/topic/206186-fileexists-with-trailing-quote/

For some reason FileExists is treating paths that end with a quote mark (or multiple marks) as valid.

; Assuming File.txt exists:
ConsoleWrite(FileExists('File.txt'))   ; Returns 1
ConsoleWrite(FileExists('"File.txt"')) ; Returns 0
ConsoleWrite(FileExists('"File.txt'))  ; Returns 0
ConsoleWrite(FileExists('File.txt"'))  ; Returns 1
ConsoleWrite(FileExists('File.txt""')) ; Returns 1
#3743 Fixed [LAST] and WinWaitClose, WinExists, WinGetHandle, etc Jon therks <rksaunders@…>
Description

A very simple example is here:

WinWait('[CLASS:TaskManagerWindow]')
ConsoleWrite(WinGetTitle('[last]'))
WinWaitClose('[last]')

Even after you launch task manager and then close it, this script will never end. For some reason WinWaitClose, along with some other functions, doesn't get an updated or dynamic value for [last]. There is some more detail/testing on this forum post.

#296 No Bug Random(1, 1, 1) theimer@…
Description

Random(1, 1, 1) generated each time 0 - zero

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.