In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

Loaderで他のwonderfl-swfを読み込んでみるテスト

Loaderで読み込んでBGMにするテスト
とりあえず音は鳴るようだ、でもなんかおかしい
// forked from seagirl's Dynamic Sound Generation
// Loaderで読み込んでBGMにするテスト
//     とりあえず音は鳴るようだ、でもなんかおかしい
package
{
	import flash.display.*;
        import flash.net.*;

	[SWF(backgroundColor="#000000")]
	public class LoaderTest extends Sprite
	{
		public function LoaderTest()
		{
                    var url :String = "http://wonderfl-swf.kayac.com/swf/usercode/a/a9/a965/a96531c7ba4966a0be37d1f4b548ceb8479f2360.swf";
                    var loader :Loader = new Loader;
                    loader.load( new URLRequest(url) );
                    addChild( loader );
		}
        }
}