Hi there,
So, i have a simple little problem here that is eating my mind. I have a MC on my stage that has 2 buttons nested inside. So, the problem is that i have a stop(); actions on the first frame ( first frame is blank ) and i only play the movie once someone rolled over another button outside this MC. The animation works well and all that the problem i’m facing is with the code. Because i’m giving the instructions to my buttons from the timeline. I have all the code on a frame and am calling the buttons from there but it seems that the buttons won’t work properly if they are not placed on the first frame.
Example:
_root.myMC.otherMC.myButton.onRelease = function(){
getURL(“www.yourDomain.com”,"_self");
}
^ that simple thingie won’t work if the button are placed the way they are now, it seems that flash can see the button only if they are at frame 1… and no, i don’t want to put the code directly on the button, i want to make it work this way
Any ideas people ?