Custom Query (3927 matches)
Results (106 - 108 of 3927)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #453 | No Bug | ControlSend dont work properly | ||
| Description |
Full Thread: http://www.autoitscript.com/forum/index.php?showtopic=76409 I tried this thing: ControlSend("Der Herr der Ringe Online: Schatten von Angmar", "", "", "c")
It doesnt work! When I Focus the Window like that: ControlFocus ("Der Herr der Ringe Online: Schatten von Angmar", "", "")
ControlSend("Der Herr der Ringe Online: Schatten von Angmar", "", "", "c")
He sends the key, but the window ist focused And this: Global $Window = WinGetTitle("[CLASS:CLIENT]")
While 1
Tryout()
WEnd
Func Tryout()
While 1
ControlSend($Window, "", "", "2")
Exit
ExitLoop
WEnd
EndFunc
Doesnt work like the first thing... |
|||
| #457 | No Bug | I'm a moron and like to swear in ticket titles. | ||
| Description |
Inside of _ArrayDelete you get "Local $iUBound = UBound($avArray, 1) - 1". In the loop in Case 1 you also substract -1 which is wrong. "For $i = $iElement To $iUBound - 1" should be "For $i = $iElement To $iUBound" greetings, Pascal257 |
|||
| #458 | No Bug | ($var == '')=true for, Array, DllStruct.(?) | ||
| Description |
($var == ) = true for, Array, DllStruct.(?) not sure if this is correct autoit behavior or not.(bug?) but the following ($var == "") test returns true for a array type var. kind a expected it to return a false as the var type/content is not a string, nor empty. (same is true for a DllStruct var) ;~ dim $var = DllStructCreate("byte")
dim $var[2] = [1,2]
dim $Out = "if $var == '' then" & @CRLF
if $var == '' then
$Out &= 'True'
else
$Out &= 'False'
EndIf
ConsoleWrite($Out & @CRLF)
MsgBox(0,'MsgBox',$Out)
tested on v3.2.12.1(missing in version list) and v3.2.13.4 also tested on v3.0.100.0 witch returned false(array). |
|||
