I have a movie clip wrapped in UIComponent. What I would like to do is
move the move from one side of the form to the other using the Move
effect.

I can't seem to get this working.  Some code excerpts are below.  Any
help would be greatly appreciated.

bpMovie = new MovieClip();
bpUic = new UIComponent();
bpUic.addChild(bpMovie);

private function applyPhaseCancellation():void
{
        moveBpMovie.end();
        moveBpMovie.yTo = noiseUic.y;
        moveBpMovie.play();

        //bpMovie.y = noiseMovie.y;
}
                        

<mx:Move id="moveBpMovie" target="{bpMovie}" duration="1000"/>

Reply via email to