Custom Query
Results (85 - 87 of 3834)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#274 | Fixed | AutoIt V2 Website | Bert | |
Description |
Is it still supported since you made the V2 forum and Archive (AutoIt2 will continue to be available for download and supported to enable legacy scripts to be used.) [The supported link is not leading to the archive]? Also, on the downloads page for it, the link for AutoIt Script Editor, is broken. Thats really all I found. Thanks Guys, |
|||
#282 | Fixed | Transparency issue with icon controls on tabs (revisited) | Jpm | Ultima |
Description |
This is actually an issue with AutoIt v3.2.12.0 RC4. The problem I'm noticing this time is that icon controls simply don't have transparent backgrounds on tab controls anymore (where as prior to RC4, it was that the transparency stopped working in specific situations as mentioned here). The problem might not be noticable depending on the Windows theme being used, but I tested on XP Luna. The main point is that the icon seems to be inheriting its background color for the transparent sections from the window background color instead of the tab control. Here's the test script (slightly modified from the linked thread so that moving is optional -- simply there for testing regression again): Global $winWidth = 256, $winHeight = 256 Global $hGUI = GUICreate(@AutoItVersion, $winWidth, $winHeight, 0) GUICtrlCreateTab(5, 5, $winWidth - 10, $winHeight - 10) GUICtrlCreateTabItem("Tab") GUICtrlCreateIcon("shell32.dll", -5, ($winWidth-128)/2, ($winHeight-128)/2, 128, 128) GUICtrlCreateTabItem("") GUISetState() ;performMove() Do Until GUIGetMsg() = -3 Func winHMove($iOffset) WinMove($hGUI, "", $aiPos[0] + $iOffset, $aiPos[1]) Sleep(1) $aiPos = WinGetPos($hGUI) EndFunc Func performMove() Global $aiPos = WinGetPos($hGUI) Do winHMove(-1) Until $aiPos[0] <= -$winWidth Do winHMove(1) Until $aiPos[0] >= 0 EndFunc |
|||
#284 | Fixed | help file error | Jon | GEOSoft |
Description |
history.htm contains a link to a non-existant file <li>Added: <a href="functions/RunAs.htm">RunAs()</a> Link should be removed like this <li>Added: RunAs() |