Jump to content
Search Community

rhinolu

Members
  • Posts

    6
  • Joined

  • Last visited

rhinolu's Achievements

0

Reputation

  1. Hi I want to make a simple video player with VideoLoader. But when I try to "fast forward" my video, addEventListener(Event.ENTER_FRAME, onFrame); private function onFrame(e:Event):void { if (videoLoader.duration - videoLoader.videoTime < 1) { removeEventListener(Event.ENTER_FRAME, onFrame); }else { videoLoader.videoTime += someSpeed; } } I found "videoTime" it never change, then in http://www.greensock...loadermax/#bugs If you seek() to a certain time in a NetStream and then immediately check its “time” property, it is often incorrect (reflects the previous time, not the new one) so, I change my code, just skip some frames do videoLoader.videoTime += someSpeed; not every frame. it works! But not smooth enough. If there has a better solution? Thanks.
  2. Hi, Thank your Great TweenMax Libs! I use VideoLoader to make a small video player lib. When [sub.swf] use the lib, no problem. But, [main.swf] loads [sub.swf] , something went wrong. I found it invoked "Cancel event". Please help me, thank you.
  3. Hi, When SWFLoader.dispose(true); all embed video will not play. please check my atachment, thank u.
  4. Hi, I just embedded a FLV file to timeline (sub2.swf in attach file), and I use LoaderMax in container.swf to load sub2.swf. When Ctrl+Enter at first time, everything perfect. But, Ctrl+Enter again, progress stop at 1 or 2, after few seconds, suddenly jump to 100. this is sample file:[attachment=0]progressBug.7z[/attachment] Please help me, thank you.
×
×
  • Create New...