Hallo, ich hab ein Problem^^ ich hab ne einfach Gui erstellt mit der ich eben meine Spiele starte kann, also per knopf druck und möcht eben ein foto als hintergrund für die gui, hab aber keine Ahnung wich ich das anstellen soll ich hoffe ihr könnt mir helfen ich bin am verzweifeln , BITTTEEEE
#include <GUIConstants.au3>
[/autoit][autoit][/autoit][autoit]#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Games", 202, 483, 479, 120)
GUISetCursor (0)
GUISetFont(12, 800, 0, "Blood Omen")
GUISetBkColor(0x000000)
$Button1 = GUICtrlCreateButton("WoW", 16, 16, 169, 49, 0)
GUICtrlSetColor(-1, 0x800000)
GUICtrlSetBkColor(-1, 0xC0C0C0)
GUICtrlSetCursor (-1, 3)
$Button2 = GUICtrlCreateButton("Css", 16, 72, 169, 49, 0)
GUICtrlSetColor(-1, 0x800000)
GUICtrlSetBkColor(-1, 0xC0C0C0)
GUICtrlSetCursor (-1, 3)
$Button3 = GUICtrlCreateButton("NGame", 16, 128, 169, 49, 0)
GUICtrlSetBkColor(-1, 0xC0C0C0)
GUICtrlSetColor(-1, 0x800000)
GUICtrlSetCursor (-1, 3)
$Button4 = GUICtrlCreateButton("Die Siedler 2 (alt)", 16, 184, 169, 49, 0)
GUICtrlSetBkColor(-1, 0xC0C0C0)
GUICtrlSetColor(-1, 0x800000)
GUICtrlSetCursor (-1, 3)
$Button5 = GUICtrlCreateButton("Die Siedler 2(neu)", 16, 240, 169, 49, 0)
GUICtrlSetBkColor(-1, 0xC0C0C0)
GUICtrlSetColor(-1, 0x800000)
GUICtrlSetCursor (-1, 3)
$Button6 = GUICtrlCreateButton("ROM", 16, 296, 169, 49, 0)
GUICtrlSetBkColor(-1, 0xC0C0C0)
GUICtrlSetColor(-1, 0x800000)
GUICtrlSetCursor (-1, 3)
$Button7 = GUICtrlCreateButton("S4", 16, 352, 169, 49, 0)
GUICtrlSetBkColor(-1, 0xC0C0C0)
GUICtrlSetColor(-1, 0x800000)
GUICtrlSetCursor (-1, 3)
$Button8 = GUICtrlCreateButton("GTA San Andreas", 16, 408, 169, 49, 0)
GUICtrlSetBkColor(-1, 0xC0C0C0)
GUICtrlSetColor(-1, 0x800000)
GUICtrlSetCursor (-1, 3)
GUISetState(@SW_SHOW)
GUISetState(@SW_DISABLE)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Run ("C:\games\crossfire the game\World of Warcraft3.2.2\Launcher.exe","C:\games\crossfire the game\World of Warcraft3.2.2")
Exit
Case $Button2
Run ("C:\Programme\Steam\Steam.exe","C:\Programme\Steam")
Exit
Case $Button3
Run ("C:\Dokumente und Einstellungen\christian\Desktop\Desktop\Orginizer\Love\Neuer Ordner\n_v14.exe","C:\Dokumente und Einstellungen\christian\Desktop\Desktop\Orginizer\Love\Neuer Ordner")
Exit
Case $Button4
Run ("C:\Programme\Ubisoft\Funatics\Die Siedler II - Die nächste Generation\bin\S2DNG.exe","C:\Programme\Ubisoft\Funatics\Die Siedler II - Die nächste Generation\bin")
Exit
Case $Button5
Run ("C:\games\die siedler\Neuer Ordner\Die Siedler - Aufbruch der Kulturen\bin\SADAK.exe","C:\games\die siedler\Neuer Ordner\Die Siedler - Aufbruch der Kulturen\bin")
Exit
Case $Button6
Run ("C:\games\Runes of Magic\Client.exe","C:\games\Runes of Magic")
Exit
Case $Button7
Run ("C:\games\s4\patcher_s4.exe","C:\games\s4")
Exit
Case $Button8
Run ("C:\games\GTA San Andreas\samp.exe","C:\games\GTA San Andreas")
Exit
EndSwitch
WEnd