Hi all,
I run the following code with Shoes-0.r925 on Windows XP box.
The image (red) oval works the mouse hovering feature
but the blue doesn't. :(
This behavior is Shoes new spec or bug or miss coding or Windows only?
--------
Shoes.app do
@msg = para ''
nostroke
@img = image :width => 20, :height => 20, :left => 30, :top => 30 do
oval :radius => 10, :fill => red
end
@img.hover{ @msg.replace 'hello' }
@img.leave{ @msg.replace '' }
@o = oval :left => 60, :top => 60, :radius => 10, :fill => blue
@o.hover{ @msg.replace 'hi' }
@o.leave{ @msg.replace '' }
end
--------
Regards,
ashbb