Skip to main content
Participant
May 8, 2007
Question

FLV and exe files going black

  • May 8, 2007
  • 1 reply
  • 260 views
I can get the FLV files to play as long as I don't tell the projector files to play full screen. If I do, as soon as it hits the first FLV file the projector file goes black and when I hit escape the file has quit running. The script that I have tried for full screen is as follows...
flash.system.fscommand("fullscreen", "true")
and
fscommand("fullscreen", "true")

The script I have for my two instances of FLV files (i resized them) is as follows:
import fl.video.*;

// Video component instance name
var flvControl = display;
var flvSource = "rel-wdb019sr-022_x.flv";
var flvControl2 = display2;
var flvSource2 = "Wedding2.flv";
// Loop the video when it completes
function completeHandler(event:VideoEvent):void
{
flvControl.seek(0);
flvControl.play()
flvControl2.seek(0);
flvControl2.play()
}
flvControl.addEventListener(VideoEvent.COMPLETE, completeHandler);
flvControl2.addEventListener(VideoEvent.COMPLETE, completeHandler);

// Set video
flvControl.source = flvSource;
flvControl2.source = flvSource2;

Does anybody have any advice?
This topic has been closed for replies.

1 reply

Inspiring
May 9, 2007
You can with Jugglor, see the FLV player here.

http://www.flashjester.com/?section=faq&cPath=14_53#385

Regards
FlashJester Support Team

e. - support@flashjester.com
w. - www.flashjester.com

"This has been one of the most impressive and thoroughly pleasant
experiences of customer support I have ever come across - astounding!"
Director - hedgeapple

relhokAuthor
Participant
May 9, 2007
I tried an evaluation copy and I could not get the bar at the top with the icon in it to go away. So its not really going full screen which is what I want.

Ugh!

maybe there is something wrong with my script?