I can made a bad hack of it using timers...
/timer 0 1 /CheckMin
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.