묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
플래시 타겟 지점 좀 알려주세요
2006.11.05 13:15
같은 창에 페이지를 열구 싶은데요.
이놈이 자꾸 새창으로 떠버리네요. 흑흑
link[1] = "./1_sungsim1.php", "_self"; 이렇게 하면 같은 창에 뜨는거 아닌가요?? 넘 초보라...
link = new Array();
link[1] = "./1_sungsim1.php", "_self";
link[2] = "./2_sungsim1.php", "_self";
link[3] = "./3_sungsim1.php", "_self";
link[4] = "./4_sungsim1.php", "_self";
link[5] = "./5_sungsim1.php", "_self";
link[6] = "#";
// 메인버튼 링크주소
numOfMainBtn = 6;
// 메뉴개수
for (i=1; i<=numOfMainBtn; i++) {
this[i].bg.onRollOver = function() {
_global.over = this._parent._name;
};
this[i].bg.onRollOut = this[i].bg.onDragOut=function () {
_global.over = 0;
};
this[i].bg.onRelease = function() {
getURL(link[this._parent._name], "_blank");
};
this[i].onEnterFrame = function() {
if (this._name == over) {
this.nextFrame();
} else {
this.prevFrame();
}
};
}
이놈이 자꾸 새창으로 떠버리네요. 흑흑
link[1] = "./1_sungsim1.php", "_self"; 이렇게 하면 같은 창에 뜨는거 아닌가요?? 넘 초보라...
link = new Array();
link[1] = "./1_sungsim1.php", "_self";
link[2] = "./2_sungsim1.php", "_self";
link[3] = "./3_sungsim1.php", "_self";
link[4] = "./4_sungsim1.php", "_self";
link[5] = "./5_sungsim1.php", "_self";
link[6] = "#";
// 메인버튼 링크주소
numOfMainBtn = 6;
// 메뉴개수
for (i=1; i<=numOfMainBtn; i++) {
this[i].bg.onRollOver = function() {
_global.over = this._parent._name;
};
this[i].bg.onRollOut = this[i].bg.onDragOut=function () {
_global.over = 0;
};
this[i].bg.onRelease = function() {
getURL(link[this._parent._name], "_blank");
};
this[i].onEnterFrame = function() {
if (this._name == over) {
this.nextFrame();
} else {
this.prevFrame();
}
};
}
link[1] = "./1_sungsim1.php", "_self";
link[2] = "./2_sungsim1.php", "_self";
link[3] = "./3_sungsim1.php", "_self";
link[4] = "./4_sungsim1.php", "_self";
link[5] = "./5_sungsim1.php", "_self";
link[6] = "#";
// 메인버튼 링크주소
numOfMainBtn = 6;
// 메뉴개수
for (i=1; i<=numOfMainBtn; i++) {
this[i].bg.onRollOver = function() {
_global.over = this._parent._name;
};
this[i].bg.onRollOut = this[i].bg.onDragOut=function () {
_global.over = 0;
};
this[i].bg.onRelease = function() {
getURL(link[this._parent._name], "_blank"); // 여기 "_blank" 을 "_self"로 바꾸니까 잘 되네요^^''
};
this[i].onEnterFrame = function() {
if (this._name == over) {
this.nextFrame();
} else {
this.prevFrame();
}
};
}