nabster023
nabster023

Reputation: 45

video using FLVPlayback does not work in .exe mode

I'm building a flash desktop app with several frames, one of which have a video, i used the FLVPlayback that i found in the library, added my video to it. It works fine when i compile the file in a SWF format, but when i compile it in a .exe format, when i arrive at the frame that has the video i get a black screen, i did some research and found that the problem is that my app is full screen:

//i have this code in frame 1
stage.displayState = StageDisplayState.FULL_SCREEN;

so the solution they suggested is to add the folowing code in the frame that contains the video:

myPlayer.fullScreenTakeOver = false;

i tried it and still, no changes. any idea why this happens?

Upvotes: 0

Views: 34

Answers (1)

Elliz
Elliz

Reputation: 39

First of all make sure that the video is in the same folder with your other files. Also video could be too heavy for this format, so you can try to reduce it's weight.

Upvotes: 1

Related Questions