Jump to content
Search Community

Search the Community

Showing results for tags 'Error #2032'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • GreenSock Forums
    • GSAP
    • Banner Animation
    • Jobs & Freelance
  • Flash / ActionScript Archive
    • GSAP (Flash)
    • Loading (Flash)
    • TransformManager (Flash)

Product Groups

  • Club GreenSock
  • TransformManager
  • Supercharge

Categories

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Personal Website


Twitter


CodePen


Company Website


Location


Interests

Found 1 result

  1. I'm getting the following errors below, when I'm loading a SWF into another SWF, the parent will eventually be an executable. I don't think this error is related to LoaderMax (great product by the way), but I feel that since you guys are the experts in loading assets you might know the answer. Things to point out: - when I change the method type to URLRequestMethod.POST it loads great, but for some reason I can't grab the parameters from the loaded SWF. I'm using this.loaderInfo.parameters["appendPath"] but it's undefined, I think that is only for query string variable? If I knew the way to grab the posted values, I think that would fix my problem. - I have queue.append twice only to show the code.. when I run the code I comment one out, one throws URL not found the other is the Stream Error. - I have modified my Flash Professional CS 5.5 so that I can compile Air for IOS, I did read somewhere something about using debug player that may be causing this, I need to test this app on a different Flash professional version that is not modified. I don't remember the exact things I did, but i had to change XML's and update players.. not sure if that is causing this error. - I've also tried passing file path as a string with the query params at the end, the minute it saw a key it thru the error, when I had the ? it loaded ok. It's like the minute it sees a query string it blows up. - The child.swf is compiled using FLASHDEVELOP 4.0 with compiler "C:\flex_sdk_3.3.0.4852" -use-network=true and "Use Network Services = False" not sure if that is the problem, I do have access to the child and can compile it in anyway needed. - The Parent.swf is compiled in FP CS 5.5 targeting flash player 10 and above.. I've test all players and got the same results. Please help!! thx in advance! var request:URLRequest = new URLRequest("assets/child.swf"); var data:URLVariables = new URLVariables(); data.appendPath = "test"; request.data = data; request.method = URLRequestMethod.GET; var queue:LoaderMax = new LoaderMax({name:"mainQueue", onProgress:progressHandler, onComplete:completeHandler, onError:errorHandler}); queue.append( new SWFLoader(request, { name:"loaderClip", auditSize:true, container:container.holder, y:0, x:0 } ) ); queue.append( new SWFLoader(request, { name:"loaderClip", estimatedBytes:369920, container:container.holder, y:0, x:0 } ) ); queue.load(); progress: 0 LoaderMax 'mainQueue' is complete! ---- Error on SWFLoader 'loaderClip' (assets/child.swf): Error #2035: URL Not Found. URL: file:///C|/CDA/DVD/deploy/assets/child.swf?appendPath=test ---- error occured with SWFLoader 'loaderClip' (assets/child.swf): SWFLoader 'loaderClip' (assets/child.swf) > Error #2035: URL Not Found. URL: file:///C|/CDA/DVD/deploy/assets/child.swf?appendPath=test ---- Error on SWFLoader 'loaderClip' (assets/child.swf): Error #2032: Stream Error. URL: file:///C|/CDA/DVD/deploy/assets/child.swf?appendPath=test ---- error occured with SWFLoader 'loaderClip' (assets/child.swf): SWFLoader 'heaLoader' (assets/child.swf) > Error #2032: Stream Error. URL: file:///C|/CDA/DVD/deploy/assets/child.swf?appendPath=test progress: 0 LoaderMax 'mainQueue' is complete!
×
×
  • Create New...