Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (388 - 390 of 3927)

Ticket Resolution Summary Owner Reporter
#2626 Fixed ControlGetText wrong encoding for some words. Jon anonymous
Description
$gui=GUICreate("", 200, 100)
$id1=GUICtrlCreateCheckbox("Выполнение приложений", 5, 5)
$id2=GUICtrlCreateInput("Включить в группу", 5, 35)
$id3=GUICtrlCreateLabel("Сохранять пропорции", 5, 65)
GUISetState()
ConsoleWrite(ControlGetText($gui, "", GUICtrlGetHandle($id1)) & @LF)
ConsoleWrite(ControlGetText($gui, "", GUICtrlGetHandle($id2)) & @LF)
ConsoleWrite(ControlGetText($gui, "", GUICtrlGetHandle($id3)) & @LF)
Do
Until GUIGetMsg() = -3

In console and in Autoit v3 Windows Info on Visible Text tab the encoding of this text is wrong and show this:

K?>;=5=85 :;NG8BL !>E@0=OBL

$text = ControlGetText($gui, "", GUICtrlGetHandle($id1) $array = StringToASCIIArray($text) array is: Row|Col 0 [0]|18 [1]|4 [2]|75 [3]|4 [4]|63 [5]|4 [6]|62 [7]|4 [8]|59 [9]|4 [10]|61 [11]|4 [12]|53 [13]|4 [14]|61 [15]|4 [16]|56 [17]|4 [18]|53 [19]|4 [20]|32

But if now change id1 text to Выполнение приложений2 or add a couple of characters of any kind, for example Выполнение приложенийblabla or Выполнение the text begins to determine the correct.

#2632 No Bug MouseDown dose not delay even i set MouseClickDownDelay to 2000 milliseconds Jon zhengbowang1984@…
Description

MouseDown dose not delay 10 milliseconds, even i set MouseClickDownDelay option to 2000 milliseconds it will not delay, you can see and download the demo program from http://www.autoitscript.com/forum/topic/157934-what-is-the-meaning-of-mouseclickdowndelay-option/

Thanks.

#2639 Fixed Unable to Copy/Paste from Embedded IE object Jon JLogan3o13
Description

This issue was reported in the Help and Support forum. Since an upgrade from 3.3.8.1, OP is unable to copy and paste from an embedded IE object. This has been verified by several members and MVPs; it works in 3.3.8.1, stops working in 3.3.10.0, and does not work in latest Beta 3.3.11.3. Reproducer is below.

#include <misc.au3>
#include <Array.au3>
#include <IE.au3>

HotKeySet("{ESC}", "Close")

Local $TOOLS[10]
Global Enum $output1,$output2,$output3,$output4
$TOOLS[1] = "one"
$TOOLS[2] = "two"
#include <GUIConstantsEx.au3>
Opt("GUIOnEventMode", 1)

GUICreate("Embedded IE Test", 640, 480, -1, -1)
GUISetOnEvent($GUI_EVENT_CLOSE, "Close")
Global $oIE = ObjCreate("Shell.Explorer.2")
GUICtrlCreateObj($oIE, 0, 0, 640, 480)
GUISetState(@SW_SHOW)
$oIE.navigate("http://www.autoitscript.com")

While 1
    sleep(100)
WEnd

Func Close()
    ControlClick("Embedded IE Test", "", "[CLASS:Internet Explorer_Server; INSTANCE:1]")
    Sleep(200)
    Send("^a")
    Sleep(200)
    Send("^c")
    Run("Notepad.exe")
    WinWait("Untitled - Notepad")
    WinActivate("Untitled - Notepad")
    Sleep(200)
    Send("^v")
    Exit
EndFunc
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.