Also ich will ein Flasgame in autoit einbauen
am besten brauch es keine internet verbindung danach das wäre am besten
ich habe es jetz mit internet verbindung gemacht
Spoiler anzeigen
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <IE.au3>
_IEErrorHandlerRegister ()
$oIE = _IECreateEmbedded ()
#Region ### START Koda GUI section ### Form=
$Height = @DesktopHeight
$Width = @DesktopWidth
GUICreate("Form1",$Width-5 ,$Height -70, 1, 1, $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS)
$GUIActiveX = GUICtrlCreateObj($oIE, 1, 4, $Width, $Height)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
_IENavigate ($oIE, "http://www2.rasterwerks.com/game/phosphor/beta1.asp")
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd