Вот решение для красных туфель
Shoes.app do
s = stack :width => 400, :height => 400 do
@tip = flow :height => 20 do
para ""
end
@r = flow :width => 60, :height => 20 do
background red
para "button"
click do
alert("You clicked me !!")
end
hover do
@tip.clear()
@tip.para "this is the tip"
end
leave do
@tip.clear(background white)
@tip.para ""
end
end
end
end