플래시에서 자동이로 페이지 이동하려면요? 정보
Flash 플래시에서 자동이로 페이지 이동하려면요?
본문
on(release){
getURL("javascript:alert('곧 오픈합니다')")
}
플래쉬에서 위소스를 넣어서 경고창을 띠운 후 자동으로 원하는 페이지로 이동하려면
어떻게 해야하나요?
답변 좀 부탁드립니다 ^^;<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
getURL("javascript:alert('곧 오픈합니다')")
}
플래쉬에서 위소스를 넣어서 경고창을 띠운 후 자동으로 원하는 페이지로 이동하려면
어떻게 해야하나요?
답변 좀 부탁드립니다 ^^;<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
추천
0
0
댓글 3개

on (release)
{
getURL("javascript:alert('곧 오픈합니다');location.href='http://sir.co.kr/'");
}
아니면 띄울 페이지에 아래와 같은 자바 스크립트 함수를 하나 만들고
<script>
function mylink(){
alert('곧 오픈합니다');
location.href='http://sir.co.kr/';
}
</script>
버튼 명령은 아래처럼...
on (release)
{
getURL("javascript:mylink()");
}
{
getURL("javascript:alert('곧 오픈합니다');location.href='http://sir.co.kr/'");
}
아니면 띄울 페이지에 아래와 같은 자바 스크립트 함수를 하나 만들고
<script>
function mylink(){
alert('곧 오픈합니다');
location.href='http://sir.co.kr/';
}
</script>
버튼 명령은 아래처럼...
on (release)
{
getURL("javascript:mylink()");
}

아니면...
aaa.html 을 다음과 같이 작성한 후...
<script>
window.onload=function(){alert('곧 오픈합니다');location.href='http://sir.co.kr/'}
</script>
플래시 버튼에 아래처럼 넣어줘도 됩니다.
on (release) {
getURL("aaa.html", "_self");
}
aaa.html 을 다음과 같이 작성한 후...
<script>
window.onload=function(){alert('곧 오픈합니다');location.href='http://sir.co.kr/'}
</script>
플래시 버튼에 아래처럼 넣어줘도 됩니다.
on (release) {
getURL("aaa.html", "_self");
}

네 감사합니다 !!..정말 감사합니다..