I’m working on a project that involves a dragable slider image. I have the slider working but I want to play a movie clip when it is dragged to a specific location. I have 4 mc that I want to pop up and play when the slider is dragged
to the corresponding name. Maybe using the X Y coordinates. I’m really new to using flash so any help is really appreciated. Also this project has to be setup following some guidelines. The guidelines I got from the client are below.
Do not call the _root! Make all your actionscripts relative.
ActionScript 2.0
Flash Player 7
My personal preference is that your movie be in one movie clip placed on the main timeline. This way we can quickly resize the Flash if needed.
I will attach the swf file so it’s easier to see what I’m looking at. Thanks again.
This is the code that’s on the slider image.
dragger.onPress=function(){
this.startDrag(true,0,0,line._width,0);
this.onEnterFrame=function(){
}
if(dragger._y <= 200 && dragger._y >= 3) {
gotoAndPlay(“animals”);
}
dragger.onRelease=dragger.onreleaseOutside=stopDrag}
;
I’ll attache the swf and below is a link to the FLA file