home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hot Shareware 37
/
hot37.iso
/
FICHEROS
/
WEDU
/
MICSCOP3.ZIP
/
TESTDIAL.DIR
/
00048_Script_48
< prev
next >
Wrap
Text File
|
1998-02-07
|
536b
|
23 lines
on SetPercent Correct, total
set aString to string (integer ((correct * 100 / total)))
set the text of member "percent Field" to aString & " %"
end SetPercent
on SetScore Correct, Total
set the text of member "Score Field" to string (Correct) & "/" & string (total)
end SetScore
on GetPercent
set aString to the text of member "Percent Field"
set aString to word 1 of aString
return value (aString)
end GetPercent
on waitabit
startTimer
repeat while the timer < 10
nothing
end repeat
end