> Huh, okay. Thanks ^_^

One small tip too: you'll want to wrap your thread code with exception
catching, as shoes won't show these ones in the error console.

I tend to use :

Thread.new do
  begin
    ..
  rescue => e
    label.text = "Error happened: #{e}"
  end
end

This could be wrapped into something more concise if needed though.

hth,

-- Thibaut

Reply via email to