From: harmeetv on
Hi,

I am working on a desktop application and opened a file as MIAW (type: tool).
But when I click the minimize button of MIAW's parent exe, MIAW is not
minimizing on MAC and Windows XP, but it is minimizing on windows 2000
professional (even once in a while it is stucking on win 2000 too).

MIAW is not having title bar and it should minimize whenever it's parent is
minimized.

I really appriciate if anybody can help.

Regards,
Harmeet

From: Sean Wilson on
You might be able to trap the parent application minimising by creating
an 'on deactivateApplication' handler in a movie script in your #tool
MIAW, and use this to issue window.minimise():
--
on deactivateApplication
_player.activeWindow.minimize()
end

on activateApplication
_player.activeWindow.restore()
end