On a Mac Mini running 10.4 (Tiger) and I get the same issue when I
copy/paste...
On Sat, Aug 16, 2008 at 1:43 AM, Satoshi Asakawa <[EMAIL PROTECTED]> wrote:
> 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
>
>
--
--TIMOTHY