I can made a bad hack of it using timers...

/timer 0 1 /CheckMin

Code:
alias CheckMin {
if $window(name).state != minimized {
%Win.State = $window(name).state
}
elseif $window(name).state == minimized {
if %Win.State != minimized {
Do Your Stuff Here
}
%Win.State = $window(name).state
}
}



Untested, but you ought to get the general idea.

Last edited by Thrull; 15/09/07 01:10 AM.