home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1997 December / WPCDEC97.ISO / DXRS / MGIWDEC.DXR / 00019_MGIRadio.ls < prev    next >
Encoding:
Text File  |  1997-10-13  |  490 b   |  19 lines

  1. on MGIRadio
  2.   global MGIRadioON
  3.   if MGIRadioON = 0 then
  4.     forget(window "stoney")
  5.     set the locH of sprite 14 to 2000
  6.     updateStage()
  7.     set MGIRadioON to 3
  8.     set the windowType of window "RADIO" to 2
  9.     set the rect of window "RADIO" to rect(the stageLeft + 323, the stageTop + 100, the stageLeft + 564, the stageTop + 338)
  10.     open(window "RADIO")
  11.   else
  12.     if MGIRadioON = 2 then
  13.       set MGIRadioON to 1
  14.       forget(window "RADIO")
  15.     end if
  16.   end if
  17.   updateStage()
  18. end
  19.