asp.net - how to play multiple swf's in one flash player? -
is there way how play multiple swf's in 1 flash player on asp.net? needs change video being played button clicked. alot adrian
you can load external .swf files using loader class.
var request:urlrequest = new urlrequest("http://www.[yourdomain].com/externalswf.swf"); var loader:loader = new loader() loader.load(request); addchild(loader); you may use event.complete check when swf has finished loading.
http://livedocs.adobe.com/flex/3/html/help.html?content=working_with_movieclips_7.html
Comments
Post a Comment