Shoes2 win xp2 sp3:
I have been having some problems with events
If the focus goes from a slot, e.g. to a button, the keypress event does
not seem to work if the slot is re-focused
or possibly once the button event has fired
example
Shoes.app do
stack do
@p=para "Test"
keypress do |key|
@p.replace("#{key}")
end
@b=button 'do something' do
@p.replace("button clicked")
end
end
end
also
the run-this example in the manual for events has a problem:
when you hover over the red stack the whole app goes blue and then there
is no leave event
I couldn't find anything about these on the list - so sorry if i missed
anything but can anyone shed light on these?
I am hoping to do a little app that needs this functionality