묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
플래시 첨부시 태그 변경
2011.08.15 16:25
XE에서 글 작성시 swf파일을 업로드하고 본문에 첨부를 할 경우
이런식으로 태그가 생기는데요.
여기서 크기를 바꾸고 가운데 정렬로 수정하려 합니다.
어느 파일을 어떤식으로 수정하면 좋을까요?
<img src="/common/tpl/images/blank.gif" editor_component="multimedia_link" multimedia_src="파일주소" width="400" height="320" style="display:block;width:400px;height:320px;border:2px dotted #4371B9;background:url(modules/editor/components/multimedia_link/tpl/multimedia_link_component.gif) no-repeat center;" auto_start="false" alt=""/>
이런식으로 태그가 생기는데요.
여기서 크기를 바꾸고 가운데 정렬로 수정하려 합니다.
어느 파일을 어떤식으로 수정하면 좋을까요?
댓글 3
-
송동우
2011.08.15 22:48
-
도라란
2011.08.16 18:25
제 설명이 부족했나 보군요; 파일 첨부후 본문 삽입시 자동으로 삽입되는 태그를 수정하려고 합니다. 어느 파일을 수정하면 좋을까요? -
hyotory
2011.08.24 15:59
해결된요~~감사~~ 처음에는 html 수정으로 가능햇는데 어느순간 안되더라구용//ㅠ,ㅜ 버그라고 하시느분도 잇구~ 아무튼 해결했습니당~ -
송동우
2011.08.16 23:17
xe - modules - editor - tpl - js - uploader.js 열고
line 417 쯤에text.push("<img src=\"common/tpl/images/blank.gif\" editor_component=\"multimedia_link\" multimedia_src=\""+file.download_url+"\" width=\"400\" height=\"320\" style=\"display:block;width:400px;height:320px;border:2px dotted #4371B9;background:url(./modules/editor/components/multimedia_link/tpl/multimedia_link_component.gif) no-repeat center;\" auto_start=\"false\" alt=\"\" />");
위 내용중에 붉은 색 숫자를 조정하면 될 겁니다. height 값도 옆에 320 이걸 조정하면 될 겁니다.
두 개 모두 수정해야 소스 자동삽입때 두군데 모두 바뀔겁니다. -
도라란
2011.08.16 23:44
감사드립니다. 양 옆에 <center> 태그를 넣으려면 어떻게 하면 좋을까요? 그냥 이대로는 가운데 정렬이 안되더군요; -
송동우
2011.08.17 00:13
text.push("<center><img src=\"common/tpl/images/blank.gif\" editor_component=\"multimedia_link\" multimedia_src=\""+file.download_url+"\" width=\"400\" height=\"320\" style=\"display:block;width:400px;height:320px;border:2px dotted #4371B9;background:url(./modules/editor/components/multimedia_link/tpl/multimedia_link_component.gif) no-repeat center;\" auto_start=\"false\" alt=\"\" /></center>");
파란 글씨가 추가된 내용입니다. -
도라란
2011.08.17 01:19
정말 감사드립니다^^
<div style="text-align:center;">
<script type="text/javascript">displayMultimedia("파일경로", "가로","세로",true);</script>
</div>
원하는 대로 나왔으면 좋겠네요.....