• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Maximize/Minimize Multiboard Event

Status
Not open for further replies.
Level 3
Joined
Oct 21, 2008
Messages
18
I did a small research but i havent found anything about events with multiboards. So is it possible to detect minimalization of multi board?
If it is possible through JASS please gimme this part of the code.
 
Level 16
Joined
May 1, 2008
Messages
1,605
Seas =)

Hmm I dont know an event but you can check if it is max or min.

Fore expample:
  • Test Multi
    • Events
      • Time - Every 1.00 seconds of game time
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Multiboard_test is minimized) Equal to True
        • Then - Actions
          • Game - Display to (All players) for 1.00 seconds the text: Hello
        • Else - Actions
          • Game - Display to (All players) for 1.00 seconds the text: Bye
1) "Then Action": If it is minimized
2) "Else Actions": If it is not minimized.
3) If you check it every seconds, there maybe lags.


But actualy I dont know how it is else possible.
 
Status
Not open for further replies.
Top