home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1996 April / BYER_0496.iso / multimed / haight / data / shared.dir / 00546_Script_546 < prev    next >
Text File  |  1995-10-25  |  560b  |  19 lines

  1. on HelpInAWindow
  2.   global HelpWindow
  3.   if objectP(HelpWindow) then
  4.     forget HelpWindow
  5.   end if
  6.   set horzOrigin to the stageleft + 68
  7.   set vertOrigin to the stageTop + 78
  8.   set myWindowRect to rect(horzOrigin,vertOrigin, horzOrigin + 320, vertOrigin + 240)
  9.   set HelpWindow to window "Help"
  10.   set the rect of HelpWindow to myWindowRect
  11.   set the filename of HelpWindow to "HELP.DIR"
  12.   set the titleVisible of HelpWindow to true
  13.   set the modal of HelpWindow to true
  14.   set the windowtype of HelpWindow to 16
  15.   pause
  16.   open HelpWindow
  17. end
  18.  
  19.