|
|
|
18년 전
|
조회 2,874
|
|
|
|
18년 전
|
조회 2,095
|
|
|
|
18년 전
|
조회 2,408
|
|
|
|
18년 전
|
조회 2,389
|
|
|
|
18년 전
|
조회 2,239
|
|
|
|
18년 전
|
조회 2,858
|
|
|
|
18년 전
|
조회 3,041
|
|
|
|
18년 전
|
조회 2,548
|
|
|
|
18년 전
|
조회 2,661
|
|
|
|
18년 전
|
조회 2,673
|
|
|
|
18년 전
|
조회 2,436
|
|
|
|
18년 전
|
조회 3,004
|
|
|
|
18년 전
|
조회 4,031
|
|
|
|
18년 전
|
조회 2,323
|
|
|
|
18년 전
|
조회 2,756
|
|
|
|
18년 전
|
조회 2,285
|
|
|
|
18년 전
|
조회 2,821
|
|
|
|
18년 전
|
조회 2,462
|
|
|
|
18년 전
|
조회 2,954
|
|
|
|
18년 전
|
조회 2,623
|
|
|
|
18년 전
|
조회 2,866
|
|
|
|
18년 전
|
조회 2,591
|
|
|
|
18년 전
|
조회 3,550
|
|
|
|
18년 전
|
조회 2,292
|
|
|
|
18년 전
|
조회 2,359
|
|
|
|
18년 전
|
조회 2,298
|
|
|
|
18년 전
|
조회 2,069
|
|
|
|
18년 전
|
조회 1,805
|
|
|
|
18년 전
|
조회 2,075
|
|
|
|
18년 전
|
조회 2,170
|
댓글 5개
if(i == "1") {
getURL(link[this.no], "_blank");
} else {
getURL(link[this.no]);
}
로 바꾸어 보세요.
------------------------------------------
startX = 0; // 시작 X 좌표
startY = 0; // 시작 Y 좌표
space = 0; // 메뉴 간 간격
max = 177; // 메뉴의 최대 가로길이 -> 메뉴를 제외한 본문 영역의 넓이
min = 27; // 메뉴의 최소 가로길이
link = []; // 메뉴 링크설정
link[0] = "/callbook.php";
link[1] = "http://webmail.karl.or.kr";
link[2] = "/sub6_7.php";
//***********| 이하 내용은 수정을 권장하지 않습니다 |***********
mNum = link.length;
depth = 0;
openNum = 0;
max += space;
min += space;
pos = [];
for(var i=0; i<mNum; i++){
if(i == 0){
pos[i] = {pos1:startX, pos2:startX};
}else{
pos[i] = {pos1:startX + max+min*(i-1), pos2: startX + min*i};
}
}
for(var i=0; i<mNum; i++){
this["menu"+i]._y = startY;
this["menu"+i].no = i;
this["menu"+i].onRollOver = function(){
timer.gotoAndStop(1);
openNum = this.no;
this.swapDepths(++_root.depth);
};
this["menu"+i].onRollOut = function(){
timer.play();
};
this["menu"+i].onRelease = function(){
----43번째줄 변경------------------------------
if(i == "1") {
getURL(link[this.no], "_blank");
} else {
getURL(link[this.no]);
}
------------------------------------------------
};
this["menu"+i].onEnterFrame = function(){
if(this.no == openNum){
this.nextFrame();
}else{
this.prevFrame();
}
if(this.no <= openNum){
this.targetX = pos[this.no].pos2;
}else{
this.targetX = pos[this.no].pos1;
}
this._x += 0.4*(this.targetX - this._x);
};
}
그 링크가 있는지 확인 해보시고 _blank로 변경후 save하시고 실행 해보신것 맞으시죠?
on (release) {getURL("주소","_blank");}
그런데 위와같이 액션을 사용한 파일 입니다.감사합니다.