Hello again ;)
I did not want to mix up two distinct cases in the previous post, so
I'm sending this one.
I would like to use every element in my code, but I would like to make
use of its methods (start, stop, toggle). So, right now after it is
defined I don't want to run it. I have the following code, but it
doesn't work.
Shoes.app do
@ev = every 2 do
para "blah"
end
@ev.stop
end
The @ev.stop doesn't stop the @ev element. If I have a button which
will call the @ev.stop method it would stop the every indeed. But why
I cannot force it to stop right now after definition?
regards
sw