IE does not clear Flash object

I dynamically added a Flex object to the HTML page through JavaScript. The Flex object is in the "div" tag. Now, when I call the "removeChild" Javascript function to remove the dynamically added "Object" tag, the object tag is deleted successfully; however, memory that has increased due to loading of the Flex object is never remembered by IE. Even if I update the browser, the memory is still not cleared. How can I recall the memory that was allocated for my Flex object?

+4
source share
2 answers

This assumption: did you try to add the OBJECT tag statically and only change your SRC attribute to load the Flex object? For offloading, you can probably try setting SRC to an empty string.

+1
source

Finally, the problem is resolved. IE does not release SWF, if you open some Flex functions for Javascript using ExternalInterface, you need to clear the memory. Heare is the link that helped me solve the problem http://www.mail-archive.com/ flashcoders@chattyfig.figleaf.com /msg18731.html

+1
source

Source: https://habr.com/ru/post/1310452/


All Articles