i'm no expert on sound, but here's what worries me:
Quote:
on (rollOver) {
setProperty("stuff 1", _alpha, "0");
}
on (rollOut) {
setProperty("stuff 1", _alpha, "100");
}
on (release) {
gotoAndPlay("Scene 3", 1);
|
I think looks better this way:
ActionScript Code:
on (rollOver) {
// should not have spaces in object names
// and why make a string of what should be a number?
setProperty("stuff_1", _alpha, 0);
}
on (rollOut) {
// should not have spaces in object names
// and why make a string of what should be a number?
setProperty("stuff_1", _alpha, 100);
}
on (release) {
// scenes are addressed as [scene nr],[frame nr], not strings
gotoAndPlay(3, 1);
...