Jump to content

Recommended Posts

Posted

I have a memory leak caused by an object ShockwaveFlash.

The below script will delete the the control and the object and recreate it, if you watch the memory in Task Manager it keeps going up every time you delete and recreate the control.

Any ideas?

Thanks

 

 
Opt("GuiOnEventMode",1)

#include <GUIConstantsEx.au3>
Global $hGui, $flashControl, $SWFObj

_Gui()

While 1
Sleep(250)
WEnd

Func _Gui()

$hGui = GUICreate("ShockwaveFlash.ShockwaveFlash",280,280)
GuiSetState()
GUISetOnEvent($GUI_EVENT_CLOSE,"_Exit")

$flashControl = _CreateSWF(@scriptDir & "\loading9.swf", 40,40, 200,200)

Local $button = GUICtrlCreateButton("Delete and Renew",10,10)
GUICtrlSetOnEvent($button,"_DeleteFlashControlAndCreateANewOne")

EndFunc


Func _DeleteFlashControlAndCreateANewOne()

GUICtrlDelete($flashControl)
ConsoleWrite("$SWFObj is object = " & IsObj($SWFObj) & @CRLF)
$SWFObj = 0
ConsoleWrite("$SWFObj is object = " & IsObj($SWFObj) & " so why don't I get my memory back?" & @CRLF)
Sleep(250)
$flashControl = _CreateSWF(@scriptDir & "\loading9.swf", 40,40, 200,200)

EndFunc

Func _CreateSWF($SWFPath, $SWFL, $SWFT, $SWFW, $SWFH, $SWFBGColor = "#000000")

If NOT FileExists($SWFPath) then Return

$SWFObj = ObjCreate("ShockwaveFlash.ShockwaveFlash")
Local $SWFActiveX = GUICtrlCreateObj($SWFObj, $SWFL, $SWFT, $SWFW, $SWFH)

With $SWFObj
.Movie = $SWFPath
.ScaleMode = 1
.bgcolor = $SWFBGColor
.Loop = True
.allowScriptAccess = "Always"
.Quality = 1
.Playing = 1
.Menu = 1
EndWith

Return $SWFActiveX

EndFunc

Func _Exit()
Exit
EndFunc

 

loading9.zip

Posted

Or perhaps add a long sleep duration between deleting and creating the object, I had the same issue with _IENavigate (irrelevant I know) where _IEQuit didn't work everytime and the process would start hugging the memory and causing a leak.

Posted

I do delete the object and recreate and that is where the memory leak happens, even if there is a long delay there is always memory taken up when you create a flash object delete it and create another several times.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...