Kann man es machen, das WinSetTrans nicht alle Objekte betrifft? Also Ich habe eine Gui mit einem Button, einem Bild und eine Liste, und ich will das das Bild nicht Durchsichtig wird, geht das?
Hier mal ein Script, damit, wenn ihr eine Idee hab und ein Script schreiben wollt nicht alles alein machen müss
Spoiler anzeigen
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <ListBoxConstants.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("Form1", 617, 419, 303, 219)
$Pic1 = GUICtrlCreatePic(@WindowsDir & "\system32\ntimage.gif", 0, 0, 520, 388, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
$Button1 = GUICtrlCreateButton("Button1", 540, 390, 75, 25, 0)
$List1 = GUICtrlCreateList("", 525, 3, 91, 383)
GUICtrlSetData(-1, "Test")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd