Gentlefolk;
I have some very large screen shots that are assembled, with audio, in a
MovieClip called "Screens".
This MC is viewed thru a ScrollPane, by referencing the identifier, Screens_ID.
So far so good. The movie displays.
Now, I want to add some basic controls, start, stop, play and resizing
buttons. I have the resizing script, and that works, and the start, stop and
play controls are simple.
But, I cannot figure out how to get these buttons to act on the "Screens" MC.
Attaching ActionScript to the button "StopBtn", like this does not work:
----------------------------------------------------
on (release){
this.Screens.stop();
}
----------------------------------------------
If I bring the MC "Screens" to the stage, and give it an instance name, then
this control will work. But I would like to use the ScrollPane to handle the
scrolling of the images as they enlarge.
Ideas?
Thank you.
Don