PHP Code:
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Bomberman", 746, 649, 428, 94)
$oGame = ObjCreate("ShockwaveFlash.ShockwaveFlash.1")
$oGameGUI = GUICtrlCreateObj($oGame, 0, 0, 762, 665)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
With $oGame
.Movie = "http://media.jaludo.com/multiplayers/v1.5.0/LobbyLoader.swf?game=6&version=1.4.1"
.bgcolor = "#000000"
.wmode = "Opaque"
.allowscriptaccess = 'always'
.scale = 'noscale'
EndWith
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd






