Skip to main content
Inspiring
November 24, 2006
Answered

Playing FLVPlayback from AS

  • November 24, 2006
  • 2 replies
  • 337 views
I am new to using the FLVPlayback component. Currently it is set to not auto play. I would like begin playing whenever a certain action occurs. For instance:
this.onEnterFrame = function() {
my_FLVPlybk.play();
};
This code doesn't work however. What's the best way to call the play function of the FLVPlayback component?
This topic has been closed for replies.
Correct answer LSNsaltlamp
my mistake. my error was elsewhere in my code.

All I need is:
my_FLVPlybk.play();

2 replies

LSNsaltlampAuthorCorrect answer
Inspiring
November 24, 2006
my mistake. my error was elsewhere in my code.

All I need is:
my_FLVPlybk.play();
November 24, 2006
I've never used it before. But to hazzard a guess.....

this.onEnterFrame = function() {
my_FLVPlybk.autoPlay=true;
};

:P
Inspiring
November 24, 2006
I've played around with this with little success. Any other ideas?