Determining if Presentation Window is Minimized or Maximized ------------------------------------------------------------ You can load functions from USER.EXE, located in the \windows\system directory, to determine if your Authorware application window is minimized or maximized. Note that these functions will probably only work if your application is packaged. Minimized --------- Function name: IsIconic Argument: word Return: short WinStatus:=IsIconic(WindowHandle) ...where WindowHandle is Authorware's internal window handle variable. If WinStatus = 0 then the window is not minimized. Maximized --------- Function name: IsZoomed Argument: word Return: short WinStatus:=IsZoomed(WindowHandle) ...where WindowHandle is Authorware's internal window handle variable. If WinStatus = 0 then the window is not maximized.