0
FLVPlayback and key commands
New Here
,
/t5/animate-discussions/flvplayback-and-key-commands/td-p/133987
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?
Where am I going wrong?
TOPICS
ActionScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
4
Replies
4
Community Expert
,
/t5/animate-discussions/flvplayback-and-key-commands/m-p/133988#M3737
Nov 01, 2008
Nov 01, 2008
Copy link to clipboard
Copied
Try making the stage the target of the listener
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
GAGSound
AUTHOR
New Here
,
/t5/animate-discussions/flvplayback-and-key-commands/m-p/133989#M3738
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!!
\\\TypeError: Error #1006: value is not a function.
at GettingClosewKeys3_fla::MainTimeline/Key()
Thanks for your suggestions!!
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
GAGSound
AUTHOR
New Here
,
/t5/animate-discussions/flvplayback-and-key-commands/m-p/133990#M3739
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!
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/animate-discussions/flvplayback-and-key-commands/m-p/133991#M3740
Nov 03, 2008
Nov 03, 2008
Copy link to clipboard
Copied
You have some extra parenthesis"
flvPlayer.seekToNextNavCuePoint()()();
should be:
flvPlayer.seekToNextNavCuePoint();
flvPlayer.seekToNextNavCuePoint()()();
should be:
flvPlayer.seekToNextNavCuePoint();
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more