home *** CD-ROM | disk | FTP | other *** search
- on INTBrowserAlertUser
- global IntMainAlertSprite, IntTopStripAlertSprite, INTLastButtonAlertSprite, IntBrowserAlOption, DriveLtr, shortname, INTOption
- beep()
- case IntBrowserAlOption of
- 1:
- set the member of sprite IntMainAlertSprite to member "IntALERTOne"
- 2:
- set the member of sprite IntMainAlertSprite to member "IntALERTTwo"
- end case
- set the loc of sprite IntMainAlertSprite to point(200, 200)
- set the ink of sprite IntMainAlertSprite to 0
- set the member of sprite IntTopStripAlertSprite to member "InttopStripALERTOne"
- set the loc of sprite IntTopStripAlertSprite to point(200, 200)
- set the ink of sprite IntTopStripAlertSprite to 0
- repeat with t = IntMainAlertSprite to INTLastButtonAlertSprite
- set thiscastnumber to the memberNum of sprite IntTopStripAlertSprite + (t - IntTopStripAlertSprite)
- set the member of sprite t to member thiscastnumber of castLib "internet"
- set the loc of sprite t to point(200, 200)
- set the ink of sprite t to 0
- end repeat
- updateStage()
- repeat while 1
- if not rollOver(IntMainAlertSprite) and the mouseDown then
- beep()
- repeat while the mouseDown
- end repeat
- end if
- case rollOver() of
- IntTopStripAlertSprite:
- if the mouseDown then
- set IntOffsetH to the locH of sprite IntTopStripAlertSprite - the mouseH
- set IntOffsetV to the locV of sprite IntTopStripAlertSprite - the mouseV
- repeat while the mouseDown
- set INTMouseH to the mouseH
- set INTMouseV to the mouseV
- put IntMainAlertSprite && "to" && INTLastButtonAlertSprite
- repeat with t = IntMainAlertSprite to INTLastButtonAlertSprite
- set the loc of sprite t to point(INTMouseH + IntOffsetH, INTMouseV + IntOffsetV)
- end repeat
- updateStage()
- end repeat
- end if
- end case
- end repeat
- case INTOption of
- end case
- end
-