Author Topic: Default Fullscreen EXE  (Read 244 times)

f117f117

  • Newbie
  • *
  • Posts: 8
Default Fullscreen EXE
« on: December 06, 2011, 01:02:12 pm »
Anywhere I can get a compiled exe that starts in fullscreen mode?

It's quite a complicate task to download all tools and sources files for just commenting 1 line of code to get a new exe.

I think a lot of people want that too.

:-)  Thanks!!!!!!


Florian Nücke

  • κρύα πόδια
  • Administrator
  • Hero Member
  • *****
  • Posts: 1989
  • MegaZine3 Developer
    • MegaZine3
Re: Default Fullscreen EXE
« Reply #1 on: December 06, 2011, 02:28:59 pm »
You could also just add a little scripting snippet in your .mz3 file:
Code: (xml)
  1. <book>
  2.  <background><script><![CDATA[
  3.    import flash.display.StageDisplayState;
  4.    mz.stage.displayState = StageDisplayState.FULL_SCREEN;
  5.  ]]></script></background>
  6.  <!-- rest of book -->
  7. </book>
For the Snark was a Boojum, you see.

Before you ask a question
          After you get an answer
  • please document your problem with the answer in the Project Wiki. (e.g. in the FAQs)
  • help others out if you can, by answering their questions on the forum.

f117f117

  • Newbie
  • *
  • Posts: 8
Re: Default Fullscreen EXE
« Reply #2 on: December 07, 2011, 02:43:53 am »
Thank you very much!!  8)

Is this script only works when Navigationbar Plugin is on?

Seems if I don't include Navigationbar Plugin, the fullscreen thing won't work.


Thanks!

Florian Nücke

  • κρύα πόδια
  • Administrator
  • Hero Member
  • *****
  • Posts: 1989
  • MegaZine3 Developer
    • MegaZine3
Re: Default Fullscreen EXE
« Reply #3 on: December 13, 2011, 08:49:45 am »
No plugin should be necessary for that, assuming you put it in the .mz3 file. If you put it in a plugin's .asul, then that plugin has to be loaded, of course.
For the Snark was a Boojum, you see.

Before you ask a question
          After you get an answer
  • please document your problem with the answer in the Project Wiki. (e.g. in the FAQs)
  • help others out if you can, by answering their questions on the forum.