Jump to content
Search Community

Search the Community

Showing results for tags 'fast forward'.

  • 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. 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.
×
×
  • Create New...