Custom Query
Results (16 - 18 of 3827)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#504 | Fixed | "au3check" doesn't handle special characters properly | Jos | ptrex |
Description |
When storing an include file, in a folder wich contains special characters, like this : c:\temp\UDF's "au3check" doesn't handle special characters properly in SciTE. #Include "c:\temp\UDF's\TEST.au3" It will only accept :-> #Include "c:\temp\UDF\TEST.au3" |
|||
#2566 | Fixed | "global" cursor in GUISetCursor fails. | Jon | steinar@… |
Description |
Setting the override flag in GUISetCursor() does not work in latest beta. When hovering another control autoit defaults to the cursor id of that control. Example script: #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> $Form1 = GUICreate("Form1", 615, 438, 192, 124) $Button1 = GUICtrlCreateButton("Button1", 64, 56, 89, 33) $Button2 = GUICtrlCreateButton("Button2", 272, 56, 89, 33) GUISetState(@SW_SHOW) GUISetCursor(15, 1, $Form1) While 1
WEnd |
|||
#3204 | No Bug | "if" function does not see variables that contain _IE objects as being "true" | mexykanu | |
Description |
Hello, We have the following code: Global $oIE = _IEAttach("your website","url") local $body1 = _IETagNameGetCollection($oie,'body',0) local $body2 = False local $body3 = True local $body4 = 'text' local $body5 = 2 if $body1 Then MsgBox(0,'','body1 is not empty') EndIf if $body2 Then MsgBox(0,'','body2 is not empty') EndIf if $body3 Then MsgBox(0,'','body3 is not empty') EndIf if $body4 Then MsgBox(0,'','body4 is not empty') EndIf if $body5 Then MsgBox(0,'','body5 is not empty') EndIf Issue: if $body1 does not return True but the variable $body1 contains information. This is very confusing and generates a lot of wasted time debugging code that has no bugs. Workaround: using the following code returns True if $body1 <> '' Then |