Flex에서 내보낸 swf 런타임 Error #2148
물론 이 일련의 과정에서 얻은 것이 하나도 없는 것은 아니다.
1. FB에서 컴파일한 것은 일반적으로 bin-debug에서 디버깅하여 실행하는데 어떻게 웹 응용 프로그램에 사용할 수 있도록 내보낼 수 있습니까? FB의 도움말 설명을 참고하십시오.
private function getAbsPath():void
{
var swfPath:String = this.parent.stage.loaderInfo.url;// swf
var swfPathArray:Array = swfPath.split("/");
if (swfPathArray[0] == "file:") { //
if(swfPathArray.length<=3){
currSwfUrl = swfPathArray[2];
currSwfUrl = currSwfUrl.substring(0,currSwfUrl.lastIndexOf(currSwfUrl.charAt(2)));
}
else{
currSwfUrl = swfPath;
currSwfUrl = currSwfUrl.substring(0,currSwfUrl.lastIndexOf("/"));
}
}else{ //
currSwfUrl = swfPath;
currSwfUrl = currSwfUrl.substring(0,currSwfUrl.lastIndexOf("/"));
}
currSwfUrl += "/";
}
본론으로 돌아가 구글, 테스트, 실망 끝에 갑자기 외국의 게시물을 찾았습니다. 다음은 원문입니다.
쓰다
Error #2148 is a very strange error that I get when I load xml files from the local machine. It’s strange because I only get it with Flex 3 and I don’t get the error all the time when I load xml files.
[RPC Fault faultString=”Error #2148: SWF file file:///D:/_path_to_file_/Main.swf cannot access local resource assets/xml/config.xml. Only local-with-filesystem and trusted local SWF files may access local resources.” faultCode=”InvokeFailed” faultDetail=”null”
So the quick fix is to add this arguments to the compiler:
-use-network=false
Go to Project -> Properties -> Flex Compiler and add -use-network=false to Additional compiler arguments
If you got the #2148 Error in a different situation let me know and I will post you comments/solutions.
뜻이 뚜렷하다. 바로 당신이 컴파일한 응용 프로그램이다. 만약에 로컬 실행 방식을 사용하고 외부의 접근을 사용할 필요가 없다면 컴파일할 때 컴파일 파라미터를 추가해야 한다.
-use-network=false
"Project -> Properties -> Flex Compiler and add -use-network = false to Additional compiler arguments"
가입 후, 컴파일, 다시 내보내기, 테스트, ok, 문제 해결!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Qiita의 API를 부를 때 끝에 슬래시를 붙이면 http://~로 리디렉션되므로 조심합시다.제목대로. curl 결과는 . 예전에 보았던 오류에 근거한 박자를 만났습니다 이것은 메시지처럼 HTTP 통신을 시도할 때 iOS가 차단하는 사람입니다. URLSession 에 건네주고 있는 url는 확실히 https...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.