일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- ios
- XML
- swf
- 게임
- Game
- builder
- unity
- 3d
- 배열
- Build
- Flash
- class
- file
- iphone
- Mac
- Android
- sdk
- 경로
- texture
- Ane
- smartfoxserver
- path
- flash builder
- AS3
- 아이튠즈
- 단축키
- 태그를 입력해 주세요.
- AIR
- 영어
- unity3D
- Today
- Total
목록loader (2)
상상 너머 그 무언가...
iOS에서 loader로 로드했던 swf를 unload 한뒤 다시 로드 하려하면 아래와 같은 오류가 발생한다. Reloading a SWF is not supported on this operating system 같은경로의 swf는 오류가 나는데 다른경로의 같은 swf는 된다고 한다.더 자세한 내용은 아래 경로를 확인하자... 참조 : http://blogs.adobe.com/airodynamics/2012/11/09/packaging-and-loading-multiple-swfs-in-air-apps-on-ios/ 출처 : http://ymson.tistory.com/entry/AIR-for-iOS%EC%9D%98-SWF-%ED%8C%8C%EC%9D%BC-%EB%A1%9C%EB%93%9C
Adobe® Flash® Platform용 ActionScript® 3.0 참조 설명서에 보면텍스트, 이진 데이터 또는 URL 인코딩된 변수 형식으로 데이터를 다운로드 하는것이라고 설명이 되어 있다. 예) json 텍스트 파일 로드var request:URLRequest = new URLRequest("test.json");jsonLoader = new URLLoader();try{jsonLoader.load( request );}catch ( error: SecurityError ){trace("A SecurityError has occurred.");}jsonLoader.addEventListener(IOErrorEvent.IO_ERROR, jsonError);jsonLoader.addEventLis..