Tutorial gallery (+ thumbnail) not working

I tried this morning the tutorial gallery with thumbnail. Is anyone have tried it in as3? I mean just make it in as2 as suposed but load it in a as3 file.

if so tell me how because on my side it doesn’t work (and I took the original at the end of the tutorial).

All the files load (probably).
The thumbnails load.
But if I click on a thumbnail to change the picture… There is just the caption that are switching, the main picture blink (alpha 0 to 100) but stay the same.

Is anyone can help me with that?

here’s the code I use to load the file in as3

Thx for the help


import flash.net.URLRequest;
import flash.display.Loader;
import flash.events.Event;
import flash.events.ProgressEvent;

var l:Loader = new Loader();
l.contentLoaderInfo.addEventListener(Event.COMPLETE, done);
l.load(new URLRequest("test.swf"));

function done(e:Event):void
{
	addChild(l);
}