PDA

View Full Version : Navigation Help


Browzer
07-25-2008, 01:40 AM
Hello guys. im a somewhat of an intermediate at flash. Heres my questions. Im trying have my main navi menu mc move to certain locations and have other mc appear which correspond to the button onrelease. Heres a site that im tryin to mimic. Link/ (http://www.nachitz.com.ar/) Any type of help would be fortunate for me. I've been looking for tuts, articles, postin in other forums seekin for any type tip. plz help thanks.

tjensen
07-25-2008, 01:55 AM
You would need something like the following:


mymenu.mybutton.onRelease() = function{
_root.menuMove(this);
};

function menuMove(buttonPressed){
if(buttonPressed = "folio"){
mymenu._x = 100;
//or tween menu here
}
}