Groups | Blog | Home
all groups > flash actionscript > may 2007 >

flash actionscript : FLV and exe files going black


relhok
5/8/2007 9:26:01 PM
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?
FlashJester Support Team
5/9/2007 11:17:21 AM
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
relhok
5/9/2007 3:49:16 PM
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?
AddThis Social Bookmark Button