Hi Devyn and Chris,

Yeah, I also confirmed on my Windows XP with Shoes 2 (0.r1134).

I attempted to edit a bit like the below snippet.
I guess you may be able to get the same behavior without disappearing. ;-)

Shoes.app :width => 400, :height => 300 do
 @x, @y = 0, -100
 @shape = shape :fill => '#333', :stroke => '#aaa',
  :left => @x, :top => @y do
   move_to 0,0
   line_to 300,0
   line_to 0,100
   line_to 0,0
 end
 animate 30 do
   @shape.move(@x+=3,@y+=5)
 end
end

Cheers,
ashbb

On Wed, Jul 8, 2009 at 2:40 AM, Christopher Small <[email protected]>wrote:

> That is weird - I confirm.
>
> Chris
>
>
> On Tue, Jul 7, 2009 at 10:30 AM, Devyn Cairns <[email protected]>wrote:
>
>> Shoes.app :width => 400, :height => 300 do
>>  @x, @y = 0, 0
>>  @shape = shape :fill => '#333', :stroke => '#aaa' do
>>    move_to 0,0
>>    line_to 300,-100
>>    line_to 0,-100
>>    line_to 0,0
>>  end
>>  animate 30 do
>>    @shape.move(@x+=3,@y+=5)
>>  end
>> end
>>
>> As you can (may) see, as soon as the shape touches the bottom it
>> disappears.
>>
>
>

Reply via email to