Skip to main content
Participating Frequently
May 24, 2012
Question

How can i make minimize button in flash 8?

  • May 24, 2012
  • 2 replies
  • 2433 views

I am working on a project in flash so i want make minimize button to minimize the projector how i can do this?

This topic has been closed for replies.

2 replies

esdebon
Inspiring
May 25, 2012

Download:

Winstate

Comando to ActionScript:

fscommand("EXEC", "winstate.exe" + chr(9) + "min" + chr(9) + "Flash");

Minimize any window with “Flash” in your title.

Comando to ActionScript:

fscommand("EXEC", "winstate.exe" + chr(9) + "max" + chr(9) + "Flash");

Maximize   any window with “Flash” in your title.

Comando to ActionScript:

fscommand("EXEC", "winstate.exe" + chr(9) + "show" + chr(9) + "Flash");

Remove the effects minimize or  Maximize  and restore to any window  cualquiewith “Flash” in your title to your size and position original.

Participating Frequently
May 25, 2012

the given link is broken.

esdebon
Inspiring
May 24, 2012

minimize_btn.onPress = function ()

{

     mWindow.minimize();

}

Participating Frequently
May 25, 2012

but it is not working plz explain it in which frame does the code to be given