﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1255	127 characters limitation with AutoItX v3.3.0.0 (with titles and controls)	marc0v	Jon	"127 characters limitation with AutoItX ActiveX ver 3.3.0.0
tested with winXP SP3, WScript.exe v 5.7.0.16599

short_str has length <= 127
long_str has length > 127

* title is blanked when doing
res = WinSetTitle(short_str, """", long_str) ; but res = 1

* control is blanked when doing
res = ControlSetText(short_str, """", controlID, long_str) ; but res = 1

* WinGetTitle returns the active window title instead of the targeted window title when doing
res = WinGetTitle(long_str) ; res = current active window title

looks very much like ticket #1083 with ClipPut, fixed in v3.3.1.4
has it been fixed in the same time for WinSetTitle, ControlSetText, WinGetTitle...?

{{{
wintitle = ""provide_here_a_valid_window_title""
newtitle_127 = ""1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567""
newtitle_128 = ""12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678""

Set autoitx3obj = WScript.CreateObject(""AutoItX3.Control"")

autoitx3obj.WinSetTitle wintitle, """", newtitle_127
MsgBox ""Title is set to newtitle_127""

autoitx3obj.WinSetTitle newtitle_127, """", newtitle_128
MsgBox ""Title is set to blank""
}}}
"	Bug	closed	3.3.1.5	AutoItX	3.3.0.0	Blocking	Fixed	Title Control String	
