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

FLVPlayback and key commands

New Here ,
Oct 31, 2008 Oct 31, 2008

Copy link to clipboard

Copied

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

Views

548

Translate

Translate

Report

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

Copy link to clipboard

Copied

Try making the stage the target of the listener

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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!!

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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!

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST
You have some extra parenthesis"
flvPlayer.seekToNextNavCuePoint()()();
should be:
flvPlayer.seekToNextNavCuePoint();

Votes

Translate

Translate

Report

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