Hi all, With lots of thanks to weaponx who showed me, StructureConstants.au3 and realised that I had my DllCall mixed up and monoceres for showing me how to create a structure, I present to you AutoIt3 and Aero Glass! Komalo for the original DWMEnableBlurBehind and BrettF for another structure issue. Four functions: _Vista_ApplyGlass($hWnd) - Applies the glass effect to the whole GUI _Vista_ApplyGlassArea($hWnd, $Area) - Applies glass to an area (array) on the GUI _Vista_EnableBlurBehind - Bl
You can easily do this using WinApiEx Uploaded with ImageShack.us #Include <WinAPIEx.au3>
#Include <WindowsConstants.au3>
Opt('MustDeclareVars', 1)
Global $hForm, $AlphaKey = 0xABABAB
$hForm = GUICreate('MyGUI', 400, 400, -1, -1, -1, $WS_EX_LAYERED)
GUISetBkColor($AlphaKey)
GUICtrlCreateInput('Simple Text', 20, 20, 360, 19)
GUICtrlCreateEdit('', 20, 47, 360, 200)
GUICtrlCreateButton('OK', 165, 370, 70, 23)
GUICtrlCreateLabel("Label1",25,250,150,50)
GUICtrlSetFont(-1,25,800)
GU