I was working with some Flash files that someone had sent me. They included some runtime shared library objects. The problem was that when the files were played in IE, the memory usage just kept increasing (IE6, 6,0,79,0 player, win2k) The files were as simplified as possible, but it turned out that it was the path declared in the properties which were causing the issue. The swf was linked as “./lib/lib.swf” when I changed this to “lib/lib.swf” it all worked beautifully, without the “memory leak”
Categories