home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- global gActivePlayers, gPlayers, gPlayerNumber
- repeat while char 1 of field "NameField" = " "
- put EMPTY into char 1 of field "NameField"
- end repeat
- repeat while char length(field "NameField") of field "NameField" = " "
- put EMPTY into char length(field "NameField") of field "NameField"
- end repeat
- if field "NameField" = EMPTY then
- return
- end if
- set gPlayerNumber to 0
- repeat with i = 1 to count(gPlayers)
- if the text of member "NameField" = getAt(getAt(gPlayers, i), 1) then
- set gPlayerNumber to i
- end if
- end repeat
- if gPlayerNumber = 0 then
- setaProp(gPlayers, field "NameField", [field "NameField", 1, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY])
- end if
- set gPlayerNumber to 0
- repeat with i = 1 to count(gPlayers)
- if the text of member "NameField" = getAt(getAt(gPlayers, i), 1) then
- set gPlayerNumber to i
- end if
- end repeat
- playsound(1, "Ok", 1)
- go("NameOK")
- end
-