Hey everybody....
The problem I'm having now is I rebuilt my camera system so that it allows the viewer to control the sound, the speed and the direction of the main timeline, I also have a btn that allows the viewer to go back to the main menu, now here is where the problem lies...when I press the menu btn it won't respond at all...I made sure I was testing the whole movie, I used root code, I made sure the btn was hitable....but I don't have a clue wuts wrong? Here is the code thats on the button....
on (release) {
_root.gotoAndPlay("Scene 4", 1);
}
Also another problem I'm having is the sound control...when I push the bar left its making the sound go higher rather then lower... here is the code on the sound bar...
on (release) {
onClipEvent (load) {
top = _y;
left = _x-100;
right = _x;
bottom = _y;
if (_global.first_x == undefined) {
_global.first_x = _x;
}
if (_global.level == undefined) {
_global.level = 100;
}
_x = 100-(_global.level)+_global.first_x;
}
on (press) {
startDrag("", false, left, top, right, bottom);
dragging = true;
}
on (release) {
stopDrag();
dragging = false;
}
on (releaseOutside) {
stopDrag();
dragging = false;
}
onClipEvent (enterFrame) {
if (dragging) {
_global.level = 100-(_x-top);
_root.all.setVolume(_global.level);
_root.all = new Sound();
}
}
Also here is the movie so you all can see what I'm saying
The Movie
Thanks in advance!