Help with menu animation

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();

is there a code that allows you to play out one movie before playing another one? like a delay on the second play command?

for example, i click a button, one movie plays and finishes, then with a time delay or something the second movie plays… ???

sorry, as isnt my strong point. though plenty will say i havnt a strong point at all… lol :goatee:

Rustyd, thank you for your help, with that kirupa´s tutorial i manage to do my menu. Like you notice i´m very very newbie in flash, but i manage.

Thank you all for your help and your patience :thumb2:

No Problem - I am very new as well so I look at the tutorials a lot - they are a great asset.