안녕하세요.
플렉드 빌더를 사용해서 RssReader 프로그램을 작성했구요.
플렉스 빌더를 사용해서 Run을 사용하면 이상없이 잘 돌아가거든요..
그래서 회사 서버에 올려서 웹으로 보려고 파일을 올렸는데... 다음과 같은 에러가 뜨는데.. 해결방법을 전혀 못찾겠습니다. ㅠㅠ
답변좀 부탁드립니다.
서버에 올리기전 Export Release Build로 해서 올려도 안되고.. 도와주세요.
댓글로라도 부탁드립니다.
nate : hws30141@nate.com
mxml 코드는 다음과 같습니다.
_?xml_ version="1.0" encoding="utf-8"?>
_?xml_:namespace prefix = mx />
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="rssRequest.send()" initialize="System.useCodePage=true">
<mx:Panel layout="vertical" title="{rssRequest.lastResult.rss.channel.title}" left="10" right="10" top="10" bottom="10">
<mx:DataGrid id="dgPosts" width="100%" height="100%" dataProvider="{rssRequest.lastResult.rss.channel.item}">
<mx:columns>
<mx:DataGridColumn headerText="제목" dataField="title"/>
<mx:DataGridColumn headerText="발행날짜" dataField="pubDate"/>
</mx:columns>
</mx:DataGrid>
<mx:LinkButton label="LinkButton" click="navigateToURL(new URLRequest(dgPosts.selectedItem.link))"/>
<mx:TextArea width="100%" height="100%" htmlText="{dgPosts.selectedItem.description}"/>
</mx:Panel>
</mx:Application>
[이 게시물은 최고관리자님에 의해 2012-12-20 12:16:06 Adobe Flex/AIR 자유게시판에서 이동 됨]