von dp am 06.Maerz 97 um 01:44:57:
zu: kleine tricks paint, sound von dp am 06.Maerz 97 um 01:26:59:
John Dowdell wrote:
"don't know of a way to achieve that offhand"
Oh the thrill of coming up with something John didn't suggest! :)
This should work even if the shapes are animating. Put in the first channel of the series of sprites into s, the last into e, or change the repeat to work through a list of channel numbers:
on exitFrame
set mousechannels = []
set s = 1
set e = 5
repeat with a = s to e
set the visible of sprite a to false
end repeat
repeat with a = s to e
set the visible of sprite a to true
if the mousecast = the castnum of sprite a then append mousechannels,a
end repeat
put mousechannels
go the frame
end
D. Plänitz