Custom Query (3922 matches)
Results (367 - 369 of 3922)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #2455 | Fixed | Mouse Cursor not changing on resizable GUIs | ||
| Description |
With new AutoIt Beta 3.3.9.20, the mouse cursor doesn't change on resizable AutoIt GUIs to the two-arrow-cursor. The GUI is still resizable, but the cursor remains as standard mouse-arrow. Problem is not reproducible with versions below 3.3.9.20. |
|||
| #2461 | Fixed | GUICtrlSetImage doesn't handle certain types of .gif file | ||
| Description |
Using the attached files, try the following script. GUICreate("test")
$pic = GUICtrlCreatePic("C:\blah\White.gif",0,0)
GUISetState()
sleep(1000)
GUICtrlSetImage($pic,"C:\blah\Blue.gif")
sleep(1000)
exit
A white image will be displayed, a second later it will be replaced by a blue image. Now try the following (switching the order of the images) GUICreate("test")
$pic = GUICtrlCreatePic("C:\blah\Blue.gif",0,0)
GUISetState()
sleep(1000)
GUICtrlSetImage($pic,"C:\blah\White.gif")
sleep(1000)
exit
A blue image will be displayed, the white image will never appear. This doesn't happen with 8 bit gif images but seems to happen with anything less than 8 bit. Also, it doesn't only happen with white, it happens with any colour where the values for R G & B are all greater than 0. |
|||
| #2471 | Fixed | Bad restore for script using $WS_EX_LAYOUTRTL | ||
| Description |
just use following script to repro #include <WindowsConstants.au3>
#include <GUIConstantsEx.au3>
#include <GuiEdit.au3>
Global $aPos[4] = [30, 20, 400, 400]
Local $hWnd = GUICreate("test " & @ScriptName, 800, 600, -1, -1, BitOR($GUI_SS_DEFAULT_GUI, $WS_MAXIMIZEBOX, $WS_SIZEBOX), $WS_EX_LAYOUTRTL)
;~ Local $hWnd = GUICreate("test " & @ScriptName, 800, 600, -1, -1, BitOR($GUI_SS_DEFAULT_GUI, $WS_MAXIMIZEBOX, $WS_SIZEBOX))
Local $Menu = GUICtrlCreateMenu("help")
Local $idGroup = GUICtrlCreateGroup("", 10, 100, 780, 470)
GUICtrlSetResizing($idGroup, $GUI_DOCKBORDERS)
;~ WinMove($hWnd, "", $aPos[0], $aPos[1], $aPos[2], $aPos[3])
Local $idEdit = GUICtrlCreateEdit("", 20, 120, 760, 440, BitAND($GUI_SS_DEFAULT_EDIT, BitNOT($ES_AUTOHSCROLL), BitNOT($WS_HSCROLL)))
GUICtrlSetResizing($idEdit, $GUI_DOCKBORDERS)
WinMove($hWnd, "", $aPos[0], $aPos[1], $aPos[2], $aPos[3])
Local $aTemp = WinGetClientSize($hWnd)
GUICtrlSetPos($idGroup, 10, 10, $aTemp[0] - 20, $aTemp[1] - 20)
GUICtrlSetPos($idEdit, 20, 30, $aTemp[0] - 40, $aTemp[1] - 50)
;~ Local $Menu = GUICtrlCreateMenu("help")
GUISetState(@SW_SHOW)
GUISetState(@SW_MINIMIZE)
GUISetState(@SW_RESTORE)
;~ Local $Menu = GUICtrlCreateMenu("help")
While True
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
EndSwitch
WEnd
|
|||
