home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fuji Wa La Te I Ka - Hyakunin Isshu Karuta
/
KARUTA.bin
/
wins
/
library.dir
/
00181_Script_181
< prev
next >
Wrap
Text File
|
1995-11-13
|
816b
|
30 lines
on mouseUp
global myCast,myLine,myword
set ch = clickOn()
set myCast = the mouseCast
set myLine = the mouseLine
set myword = char 1 of word 1 of line myLine of field myCast
if 0 < myword and myword < 10 then
hilite line myline of field myCast
hilite line myline + 1 of field myCast
hilite line myline of field myCast
else
hilite line myline of field myCast
hilite line myline - 1 of field myCast
end if
repeat while the stillDown
if rollOver(ch) then
if myLine = the mouseLine then next repeat
else
set myLine = the mouseLine
hilite line myLine of field myCast
hilite line (myLine + 1) of field myCast
end if
else
hilite line 1 of field myCast
end if
updateStage
end repeat
end