#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Icons.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 615, 438, 192, 124)
$ANIMATED = GUICtrlCreatePic("", 30, 30, 264, 90)
_SETIMAGE(-1, @ScriptDir & "\REZ_Systems\UI\UI_BI_FX\BI_FX001.PNG")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
$time = TimerInit()
$id_gui = 1
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
If TimerDiff($time) > 70 Then ; 3s loading image
$id_gui += 1
If $id_gui = 52 Then $id_gui = 1
$time = TimerInit()
_SETIMAGE($ANIMATED,@ScriptDir & "\REZ_Systems\UI\UI_BI_FX\BI_FX0" & $id_gui & ".PNG")
EndIf
WEnd