im using the sliding menu from the kirupa tutorials and the sliding works
what doesnt work is that i have buttons in some of the colored squares (acts as a subnav)thats supposed to change information within the square (4 in total that slide with seperate information on each)
heres the AS on my first frame:
var currentPosition:Number = contentHold.content1._x;
var startFlag:Boolean = false;
menuSlide = function (input:MovieClip) {
if (startFlag == false) {
startFlag = true;
var finalDestination:Number = input._x;
var distanceMoved:Number = 0;
var distanceToMove:Number = Math.abs(finalDestination-currentPosition);
var finalSpeed:Number = .3;
var currentSpeed:Number = 0;
var dir:Number = 1;
if (currentPosition<=finalDestination) {
dir = -1;
} else if (currentPosition>finalDestination) {
dir = 1;
}
this.onEnterFrame = function() {
currentSpeed = Math.round((distanceToMove-distanceMoved+1)finalSpeed);
distanceMoved += currentSpeed;
contentHold._x += dircurrentSpeed;
if (Math.abs(distanceMoved-distanceToMove)<=1) {
contentHold._x = maskMovie._x-currentPosition+dir*distanceToMove;
currentPosition = input._x;
startFlag = false;
delete this.onEnterFrame;
}
};
}
};
b1.onRelease = function() {
menuSlide(contentHold.content1);
};
b2.onRelease = function() {
menuSlide(contentHold.content2);
};
b3.onRelease = function() {
menuSlide(contentHold.content3);
};
b4.onRelease = function() {
menuSlide(contentHold.content4);
};
b5.onRelease = function() {
menuSlide(contentHold.content5);
};
this.contentHold.content2.professors_btn.onRelease = function(){
gotoAndStop (“professors”);
}
this.contentHold.content2.academy_btn.onRelease = function(){
gotoAndStop (“academy”);
}
this.contentHold.content2.curriculum_btn.onRelease = function(){
gotoAndStop (“curriculum”);
}
this.contentHold.content2.press_btn.onRelease = function(){
gotoAndStop (“press”);
}
stop();
is the sliding interfering with the buttons?
does anyone know what’s wrong?