① 메뉴의 기초 구조
아래 세 개의 메뉴가 있습니다. 가운데 메뉴에 마우스를 올렸더니 부드럽게 색상이 분홍색으로 바뀌고 마우스로 영역을 벗어나면 원래의 위치로 돌아가는 메뉴를 만들어 보겠습니다.
결과는 간단하지만 모든 내비게이션에 기본으로 사용되는 개념이므로 매우 중요합니다.
결과는 간단하지만 모든 내비게이션에 기본으로 사용되는 개념이므로 매우 중요합니다.
menu_mc0.onEnterFrame = function(){
if(this.hitTest(_root._xmouse, _root._ymouse, 1) == true){
this.nextFrame();
} else {
this.prevFrame();
}
}
menu_mc1.onEnterFrame = function(){
if(this.hitTest(_root._xmouse, _root._ymouse, 1) == true){
this.nextFrame();
} else {
this.prevFrame();
}
}
menu_mc2.onEnterFrame = function(){
if(this.hitTest(_root._xmouse, _root._ymouse, 1) == true){
this.nextFrame();
} else {
this.prevFrame();
}
}
if(this.hitTest(_root._xmouse, _root._ymouse, 1) == true){
this.nextFrame();
} else {
this.prevFrame();
}
}
menu_mc1.onEnterFrame = function(){
if(this.hitTest(_root._xmouse, _root._ymouse, 1) == true){
this.nextFrame();
} else {
this.prevFrame();
}
}
menu_mc2.onEnterFrame = function(){
if(this.hitTest(_root._xmouse, _root._ymouse, 1) == true){
this.nextFrame();
} else {
this.prevFrame();
}
}