vote up 0 vote down star

Hi,

I create a flash interface for CD that contains some buttons that open some word documents.I use fscommand for open files.

fscommand("exec", "documnet.doc");

But after document open the flash document resized from fullscreen.

the Question is: How I can make flash document (swf or exe) still fullscreen after focusing another program or open another program?

flag

70% accept rate
What is the flash document running in, a browser, air? can you explain a little bit more? – ForYourOwnGood Jan 23 at 16:29
No, in a desktop. and I'll edit my qustion to be more clear. thatnks :) – ecleel Jan 23 at 17:35

1 Answer

vote up 1 vote down check

You may add an event listener to the stage. So, when the stage is activated you will reenter full screen mode. Try this code:

stage.addEventListener(Event.ACTIVATE, 
  function(event:Event) { 
    trace("Enter full screen");  
  } 
);

You may choose another events that more suitable to your project from list of events dispatched by the 'stage' object. (Don't forget to show all inherited events.

link|flag
Thanks a lot abobander for this solution. It's work :) – ecleel Jan 31 at 14:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.