Using Shoes, I would like to have a block made when breaking a window. I thought I could use the finish event, but the following code snippet displays "Starting", but "Finished" never displays.
Shoes.app(:title => "Test") do
flow do
start do |obj|
alert("Starting")
end
finish do |obj|
alert("Finished")
end
button "Hello"
end
end
source
share