Jump to content
Search Community

Alexius

Members
  • Posts

    3
  • Joined

  • Last visited

Alexius's Achievements

0

Reputation

  1. Hey! I used loadermax for our latest realease and it works perfectly. The site is very heavy, and I used loadermax because of the work put into garabage collection. It helped a lot, and I am very satisfied! The videos are also streamed with the videoloader class. Have a look! http://www.hvemvetminst.no/
  2. I used the videoloader. It seems like it is dispatching 2 events for when the buffer is full. I traced out that the function playvideo is being called twice. Maybe I ve done something wrong here.. Here is my code anyway: _videoLoader = new VideoLoader(videoSrc, {name:"sectionVideo", container:_assets, width:900, height:450, bgColor:0x000000, autoPlay:false, volume:1, estimatedBytes:900000}); _videoLoader.addEventListener(VideoLoader.VIDEO_BUFFER_FULL, onBufferFinished); _videoLoader.addEventListener(VideoLoader.VIDEO_COMPLETE, hide); _videoLoader.load(); } private function onBufferFinished(event:Event):void { TweenMax.to(_assets.videoMask, .8, {delay: .3, x: 0, ease: Sine.easeIn, onComplete: playVideo}); } Another strange thing is when I set bufferTime property is doesnt want to play at all.
  3. Alexius

    Sound

    Hey! Just started looking at LoaderMax and it looks great! How can I best control sounds, that have been qeued with mp3loader in loadeMax? Is there a good example for this? I want to easily dispose the sound as soon as they have been played, for example a clicksound. Thanx! Again, it looks terrific!
×
×
  • Create New...