Urget help need

i have loaded so many swf files to the Movie clips. this works fine. But when i am trying to access those dynamic swf, i am not able to do that.

Like i wanna control the external swf from the main swf(_root) swf. which i am not able to that.

what i did is. i made an array where i’ve added all the swf Movie clip.

from that array i am trying to control the external swf files.

command are like this
array


pageClips = new Array();
pageClips[1] = pages.p1.page.pf.ph.pic;
pageClips[2] = pages.flip.p2.page.pf.ph.pic;
pageClips[3] = pages.flip.p3.page.pf.ph.pic;
pageClips[4] = pages.p4.page.pf.ph.pic;
pageClips[5] = pages.p5.page.pf.ph.pic;


control command on btns


this.onEnterFrame = function() {
    findlinksBtn.onRelease = function() {
        _root[pageClips[5]]._alpha = 50;
        trace("one tow");
    };
};

plz need this help urgent.

:slight_smile: