Need Image Path

I need to know where the image path for the SWFs are in this ActionScript.

Stage.showMenu = false;
var i = 1;
while (i <= 3)
{
var t = attachMovie(“photo”, “photo” + i, i, {_x: Stage.width / 2 - 200 + Math.random() * 400, _y: Stage.height / 2 - 200 + Math.random() * 400, rotation: -45 + Math.random() * 90});
t.init("pic
" + i + “.swf”);
++i;
} // end while
stop ();

Thanks