10 lines
195 B
Text
10 lines
195 B
Text
|
|
global count
|
||
|
|
on openCard
|
||
|
|
put empty into count
|
||
|
|
put "There have been no clicks yet" into field "clicks"
|
||
|
|
end openCard
|
||
|
|
on mouseUp
|
||
|
|
add 1 to count
|
||
|
|
put count into field "clicks"
|
||
|
|
end mouseUp
|