Custom Query (3920 matches)
Results (334 - 336 of 3920)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #436 | Fixed | Aut2Exe more efficient from command line? | ||
| Description |
When I used the Aut2Exe GUI to compress a script it came out to 311kb, every time, regardless what I set compression to. When I used the command line with /comp 4 it came out to 309kb, with /comp 3 it came to 310kb, /comp 2 was 311kb. It appears that the GUI is ignoring the compression selection, using the default of /comp 2 (nothing to do with UPX, as turning it off/on works as it should). |
|||
| #3583 | No Bug | AutoIT Window Info (64) produces incorrect position numbers | ||
| Description |
I am currently running AutoIt (64) version 3.3.14.2 on an up-to-date Windows 10 Home laptop (Dell Inspiron 5759). Run AutoIT Window Info (64). Open any application window Move it until AutoIT Window Info shows an X value for Position of 0. The window will actually be 7-8 pixels to the right of 0. Now maximize the application window. Position will be displayed as -7,-7 When a window is maximized, the upper left corner should have Position 0,0 Note that using WinMove and giving the coordinates 0,0 will also incorrectly position the window. |
|||
| #2170 | Fixed | _ArrayDisplay fails handling arrays with no elements | ||
| Description |
When trying to view with _ArrayDisplay, array.au3 crashes at: Line #(depending on version) --> Local $avArrayText[$iUBound + 1] #include <array.au3>
_Test()
Func _Test()
Local $objWMI = ObjGet('Winmgmts:\\.\root\CIMV2')
Local $objClass = $objWMI.Get('__NotifyStatus')
Local $Value
;
For $objItem in $objClass.SystemProperties_()
$Value = $objItem.Value
If IsArray($Value) Then
MsgBox(0, '', 'Elements: ' & UBound($Value) & @CRLF & 'Subscripts: ' & UBound($Value, 0))
_ArrayDisplay($Value)
EndIf
Next
EndFunc
Link: http://www.autoitscript.com/forum/topic/139097-arraydisplay-and-arrays-with-no-elements/ |
|||
