;=================================================================== ;I attempted to upload to AHK.net but it is blocked from work. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. #SingleInstance Force ;=================================================================== Gui +Resize Gui, Add, Button, x5 y5 gHelpGDI, Help Info Gui, show, w100 h100, Test GDI+ color bug return ;=================================================================== HelpGDI: Gui, 2:+owner1 +resize ; Make the main window (Gui #1) the owner of the "about box" (Gui #2).= ;Gui +Disabled ; Disable main window. Gui, 2:Color, aaffaa Gui, 2:Add, Picture, , testGDI.bmp Gui, 2:Show, w375 h200, GDI+ HELP return ;=================================================================== kill: GuiClose: GuiEscape: ExitApp ;=================================================================== 2GuiClose: 2GuiEscape: Gui, 2:Destroy return ;===================================================================