on stage, in frame 1 (the only one), I put Media Display
(myDisplay) and its Controller (myController).
then I associated myDisplay to my Controller

on (load) {
this.associateController(this._parent.myController );
}

From some button:

on(release){
_root.myDisplay.setMedia("video1.flv","FLV");
}
---
on(release){
_root.myDisplay.setMedia("video2.flv","FLV");
}


so the movie start well and change movie when I call it from other button.
but cursor (just it) in the Media Controller doesn't work, when click and
drag it, the movie stoped and doesn't restart anyway..
I can bring movie to begin with special button on the media controll or load
a new movie and play it from begin.
That is strange because if I load movie in a "static mode" from components
ispector all seems to work well (drag movie in any position.... after its
allready loaded of course)

What I missing?