s

플래시관련.

· 17년 전 · 1232
안녕하세요.
맨날 자료만 구경하러 오다가 이렇게 질문과 대답에 글을 쓰는건 처음이네요^^

다름이 아니라 제가 한가지 작업을 하고있는데요.
간단히 설명드리면서 질문을 하겠습니다.
답변해주시면 감사하겠습니다^^

일단 main.html 로 플래시를 풀스크린으로 띄웁니다.
풀스크린인 플래시에서 버튼을 클릭하면 로드무비 되어서 다른 ex.swf가
나타납니다.
ex.swf가 나타나는 동시에 a.html이라는 레이어가 하나 뜹니다.(레이어 관련 스크립트는 main.html에 포함)
이후에 ex.swf에 있는 클로즈 버튼을 클릭하면 ex.swf와 레이어로 열린 a.html이 같이 종료되는 것을
제작하고 싶은데 이것이 잘안됩니다.
레이어로 열린 a.html은 종료가 안되고 ex.swf만 닫힙니다.


main.html소스는 이렇게 되어있습니다.
<html>
<head>

<!-- 레이어 관련소스 시작-->
<style type='text/css'>
.xfCIco { /* close icon */
position:absolute;
overflow:hidden;
font-size:small;
right:20px;
top:0px;
width:50px;
height:20px;
margin:0;
padding:0;
background:transparent;
cursor:pointer;
background-image:url(img/close.jpg);
}

.xfClient { /* The 'client area' can be an IFRAME or a DIV */
position:absolute;
left:0;
margin:15;
padding:0;
border:none;
}
.xFenster {
width:700px;
height:300px;
overflow:auto;
border:0px solid white;
}
</style>

<script type='text/javascript' src='http://www.blueb.co.kr/SRC/javascript/js/x_core.js'></script>
<script type='text/javascript' src='http://www.blueb.co.kr/SRC/javascript/js/x_event.js'></script>
<script type='text/javascript' src='http://www.blueb.co.kr/SRC/javascript/js/x_drag.js'></script>
<script type='text/javascript' src='http://www.blueb.co.kr/SRC/javascript/js/xfenster.js'></script>

<script type='text/javascript'>

var xf = []; // an array which will hold the xFenster objects

function fenster(n, title, url)
{
// Prepare initial size and position:
var cw = xClientWidth();
var ch = xClientHeight();
var fw = cw / 2;
var fh = ch / 1.3;
var fx = ((cw - fw) / 1) - (n * 1) + xScrollLeft();
var fy = ((ch - fh) / 2) - (n * 1) + xScrollTop();

// Open fenster number n with the requested title and url:
if (xf[n]) { // if it already exists
xf[n].show();
if (title && title != xf[n].title()) { // for this demo I assume that if the title is not different then the url is not different
if (url) xf[n].href(url);
if (title) xf[n].title(title);
}
}
else { // it doesn't yet exist so create it
xf[n] = new xFenster(['xf'+n, title, fw, fh, url], fx, fy);
}
}
</script>
<!-- 레이어 관련소스 끝 -->



<title></title>
</head>
<body leftmargin="0" topmargin="0" scroll="no" bgcolor="#003366">
<!--url's used in the movie-->
<!--text used in the movie-->
<table border="0" width="100%" height="100%" cellpadding="0" cellspacing="0">
<tr>
<td align=center valign=center>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%" height="100%" id="main" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="main.swf" />
<param name="quality" value="high" />
<param name="scale" value="exactfit" />
<param name="bgcolor" value="#ffffff" />
<param name="menu" value="false" />
<embed src="main.swf" loop="false" menu="false" quality="high" scale="exactfit" bgcolor="#ffffff" width="100%" height="100%" name="main" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
<table border="0" width="100%" height="100%">
<tr>
<td>
<object id="factory" style="display:none" viewastext classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814"
codebase="http://www.a.kr/ActiveX/ScriptX.cab#Version=6,1,431,2">
</object>
</body>
</html>



--------------------------------------------------------
ex.swf에는
클로즈 버튼에는
on (release) {

unloadMovie(40);
}
걸려있구요.

일반액션에는
getURL("javascript:fenster(0, '', 'edrawings/bottom_ring.htm')");
this.bg.useHandCursor = false;

이렇게 되어있습니다.



흐음.
설명이 잘 되었는지 모르겠네요.
알려주시면 감사하겠습니다.ㅠㅠ
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
17년 전 조회 2,210
17년 전 조회 1,210
17년 전 조회 1,221
17년 전 조회 1,288
17년 전 조회 6,235
17년 전 조회 6,046
17년 전 조회 2,225
17년 전 조회 1,199
17년 전 조회 1,309
17년 전 조회 2,280
17년 전 조회 1,681
17년 전 조회 1,339
17년 전 조회 1,360
17년 전 조회 1,304
17년 전 조회 1,242
17년 전 조회 4,154
17년 전 조회 2,366
17년 전 조회 1,808
17년 전 조회 2,958
17년 전 조회 1,650
17년 전 조회 1,331
17년 전 조회 1,362
17년 전 조회 1,414
17년 전 조회 1,310
17년 전 조회 1,411
17년 전 조회 2,592
17년 전 조회 4,393
17년 전 조회 1,363
17년 전 조회 4,132
17년 전 조회 4,280
17년 전 조회 1,392
17년 전 조회 2,361
17년 전 조회 1,813
17년 전 조회 3,403
17년 전 조회 1,545
17년 전 조회 3,789
17년 전 조회 3,582
17년 전 조회 2,762
17년 전 조회 3,124
17년 전 조회 2,821
17년 전 조회 2,143
17년 전 조회 3,496
17년 전 조회 2,827
17년 전 조회 3,713
17년 전 조회 1,325
17년 전 조회 2,440
17년 전 조회 1,508
17년 전 조회 1,370
17년 전 조회 1,247
17년 전 조회 1,233
17년 전 조회 1,611
17년 전 조회 3,049
17년 전 조회 3,437
17년 전 조회 3,192
17년 전 조회 2,075
17년 전 조회 4,194
17년 전 조회 1,596
17년 전 조회 1,306
17년 전 조회 1,425
17년 전 조회 1,294
17년 전 조회 1,537
17년 전 조회 1,915
17년 전 조회 2,528
17년 전 조회 2,604
17년 전 조회 1,599
17년 전 조회 1,356
17년 전 조회 2,622
17년 전 조회 3,053
17년 전 조회 3,416
17년 전 조회 3,375
17년 전 조회 2,527
17년 전 조회 3,948
17년 전 조회 3,376
17년 전 조회 5,683
17년 전 조회 2,843
17년 전 조회 2,050
17년 전 조회 2,127
17년 전 조회 1,970
17년 전 조회 1,908
17년 전 조회 2,968
17년 전 조회 2,084
17년 전 조회 1,753
17년 전 조회 2,256
17년 전 조회 1,302
17년 전 조회 1,855
17년 전 조회 3,066
17년 전 조회 2,316
17년 전 조회 1,985
17년 전 조회 2,216
17년 전 조회 1,507
17년 전 조회 1,898
17년 전 조회 1,416
17년 전 조회 1,953
17년 전 조회 1,974
17년 전 조회 1,227
17년 전 조회 3,335
17년 전 조회 4,493
17년 전 조회 2,652
17년 전 조회 7,658
17년 전 조회 4,021