home *** CD-ROM | disk | FTP | other *** search
- on exitFrame me
- global win, points, scoreBox
- if win = "yes" then
- puppetSound(3, "win")
- member("youwin").text = "You Win!!!"
- member("points").text = "total score:" && scoreBox.text && "pts"
- else
- puppetSound(3, "lose")
- member("youwin").text = "give it another try!"
- if scoreBox.text <> EMPTY then
- member("points").text = "total score:" && scoreBox.text && "pts"
- else
- member("points").text = "total score:" && "0 pts"
- end if
- end if
- end
-