All right. I want to do something simple. Or at least it should be.
In the main timeline, I have a keyframe where I have the majority of my actions. Also, I have a large movieclip with all my nav buttons inside of it, and inside each button I have a small movieclip.
I want to move the “small” movieclip inside the button down a little bit when the user clicks on the button. Simple enough.
So in the actions keyframe I have…
_root.nav.news.onRelease = function()
{
_root.nav.news.navfade._y += 10;
trace("yo");
}
For your information:
“nav” is the large movieclip with the buttons in it
“news” is one of the buttons
“navfade” is the small movieclip inside the button
The problem is that the “navfade” movieclip refuses to move. I know that the onRelease function is working, because the trace works. However, the movieclip just doesn’t move.
I’m not sure if I’m referencing the small movieclip correctly… Please help!
Thanks in advance,
Matt