Can't get "animate" to work on green shoes

Hi there,

I am trying to do a simple animation. Basically I have a small png image
of
a car on the bottom, left corner of my screen. I tried the
*“animate”*method but I get the following error"

animate001.rb:2:in <main>': undefined methodanimate’ for main:Object
(NoMethodError)

So, I copied the following code from the web to see if the problem was
with
my code and it also failed with the same message.

require “green_shoes”
animate do |frames|
unless frames > 100
@p.fraction = (frames % 100) / 100.0
else
break
end
end

Any words on how to move my car left to right on the bottom on the
screen?

Thank you in advanced!

Sorry team, I found the failure for the “animate.” I forgot to add *
Shoes.app*. Rookie stuff !

I still would like to know how to move the car bottom left to bottom
right
though!

Thank you