Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

FLVPlayback and key commands

New Here ,
Oct 31, 2008 Oct 31, 2008
PLEASE HELP. I've only spent a couple of weeks working with Flash, and my head hurts. I'm trying to get the arrow keys to function as SeekNext and SeekPrev in FLVPlayback. I'm aware of the security issues with full-screen mode, but I plan on using the project as a locally-deployed projector or Flash player window.

Where am I going wrong?
TOPICS
ActionScript
633
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 01, 2008 Nov 01, 2008
Try making the stage the target of the listener
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 01, 2008 Nov 01, 2008
Since my initial post, I have modified the code some. I feel like I'm getting close, but when I press a key now, I get an error message as Output.


\\\TypeError: Error #1006: value is not a function.
at GettingClosewKeys3_fla::MainTimeline/Key()



Thanks for your suggestions!!
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 01, 2008 Nov 01, 2008
I believe my problem now lies in the fact that I am trying to navigate to metadata cue points by calling a method that applies to "navigation" cue points. Is there an easy approach to scripting playhead movement using the metadata? I'M RUNNING OUT OF TIME! Please help!
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 03, 2008 Nov 03, 2008
LATEST
You have some extra parenthesis"
flvPlayer.seekToNextNavCuePoint()()();
should be:
flvPlayer.seekToNextNavCuePoint();
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines