Jump to content
Search Community

Search the Community

Showing results for tags 'loadermax videoloader'.

  • 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 loading in an array (using loadermax as well, thanks!) which contains links to some facebook videos and i'd like to queue them up with loadermax. i'm hacking together some code based on the tutorial you helped with here. i get the following error: ---- Error on VideoLoader 'myVideo3' (http://video.ak.fbcdn.net//cfs-ak-prn1//v//611182//748//10151093028945843_20102.mp4?oh=2d61fa37f6a76e667a93767da7ac99f7&oe=5085B2D1&__gda__=1350940320_f137165199e04b3bf2a087d0624cf2d5): NetStream.Play.StreamNotFound ---- can you please help me understand what i did wrong here? thanks! var queue:LoaderMax = new LoaderMax({onComplete:completeHandler, maxConnections:1}); var tempLoad:VideoLoader; for (var i=0; i<tempDataArray.length; i++) { var videoString = tempDataArray[i].video as String; tempLoad = new VideoLoader(videoString,{name:"myVideo" + i,width:720,height:406,scaleMode:"proportionalInside",centerRegistration:true,bgColor:0x000000,autoPlay:false,volume:0,requireWithRoot:this.root,estimatedBytes:75000}); queue.append(tempLoad); } queue.load();
×
×
  • Create New...