Looks like it is your Menu code. The one that works seems to be empressa, which calls symbol 5 (named ‘menusao’) which sends it to frame 36 and then, on the main timeline, goes to frame 140.
The menu item ‘colecao’, just says “Hey, go to 11 and stop”.
I’m not very good at AS, but it looks to me like a good starting point would be there.
FYI, This looks like a lot of stuff to achieve what this tutorial seems to be doing very easily: http://www.kirupa.com/developer/flash8/slidingMenu.htm
Good Luck!
home.onPress = function() {
};
home.onRollOver = function() {
};
home.onRollOut = function() {
this.gotoAndPlay(12);
};
empresa.onPress = function() {
this.gotoAndStop(11);
_root.menusao(36);
_root.gotoAndPlay(140);
};
empresa.onRollOver = function() {
this.gotoAndPlay(2);
};
empresa.onRollOut = function() {
this.gotoAndPlay(12);
};
colecao.onPress = function() {
this.gotoAndStop(11);
};
colecao.onRollOver = function() {
this.gotoAndPlay(2);
};
colecao.onRollOut = function() {
this.gotoAndPlay(12);
};
utilidades.onPress = function() {
this.gotoAndStop(11);
_root.gotoAndPlay(181);
};
utilidades.onRollOver = function() {
this.gotoAndPlay(2);
};
utilidades.onRollOut = function() {
this.gotoAndPlay(12);
};
noticias.onPress = function() {
this.gotoAndStop(11);
};
noticias.onRollOver = function() {
this.gotoAndPlay(2);
};
noticias.onRollOut = function() {
this.gotoAndPlay(12);
};
contactos.onPress = function() {
this.gotoAndStop(11);
_root.gotoAndPlay(232);
};
contactos.onRollOver = function() {
this.gotoAndPlay(2);
};
contactos.onRollOut = function() {
this.gotoAndPlay(12);
};
stop();