I want to load swf assets
so I have written these codes in project.xml
<library path="Assets/B2B.swf" preload="true" generate="true"/>
and in Main.hx also I have written these codes:
var clip = Assets.getMovieClip ("layout:Layout");
addChild(clip);
when I build with test html5, I don’t have any problem and SWF assets are loaded in my html5.
but if somebody has IDM (Internet Download Manager) on windows, show downloaded window and try to download SWF file with IDM and the SWF file doesn’t load in my html5
How can I fix it?