Custom Query (3920 matches)
Results (352 - 354 of 3920)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1286 | No Bug | FileGetShortName does not expand . or .. directories | ||
| Description |
ConsoleWrite(FileGetShortName('.')) ConsoleWrite(FileGetShortName('..')) Current behavior: The above commands do not return the shortname of the directories in question; rather they return the argument itself. Desired behavior: Return the absolute path's shortname. |
|||
| #1292 | No Bug | _IETagNameGetCollection | ||
| Description |
I have a script which is downloading the anti virus files from symantec, but if the script doesn't reach internet I get an error calling _IETagNameGetCollection, that function is calling _IEDocGetObj and that is where the error occur. Attaching script and erro message. |
|||
| #1293 | No Bug | odd value returned when assigning "default" to Scripting.Dictionary | ||
| Description |
When the AutoIt "default" value is assigned to a Scripting.Dictionary object, and later retrieved, the result is no longer "default". Instead, it becomes a strange "falsy" value which varGetType() identifies as "Object", yet it fails the isObj() test. The code below illustrates what happens - I've also confirmed that this issue is present in the latest beta (3.3.1.5). func testDictionary($v)
local $d=objCreate('Scripting.Dictionary')
$d.add('x',$v)
return $d.item('x')
endfunc
msgbox(0,default,@AutoItVersion)
local $v=default
msgbox(0,default,'"' & string($v) & '"' & @LF & varGetType($v) & @LF & isObj($v))
; returns "Default", Keyword, 0
; assign to dictionary & then retrieve
$v=testDictionary($v)
msgbox(0,default,'"' & string($v) & '"' & @LF & varGetType($v) & @LF & isObj($v))
; returns "", Object, 0
if $v then
msgbox(0,default,'truey')
else
msgbox(0,default,'falsy')
endif
; returns "falsy"
|
|||
