I tried with a messagebox() and the messagebox shows up then.
But I also already said this will not happen with each click, because it only works in the moment the control gets focus. Once it has focus already further clicks don't cause GotFocus anymore. It's not an identical event to click, it's a compromise and secondary alternative, but there is nothing better, at least nothing that simple.
If your form only has this Flash object the gotfocus will happen at form start, as it'll get focus, then it wont even work once.
You could make it work more than once by setting focus to anything else in the form in the GotFocus, because then the next click will again trigger the GotFocus event.
If you don't know yet, what the focus is and what GotFocus means, then please look it up in the help, that's very basic windows knowledge, not VFP specific. Always one window, one control of one pageframe or grid has focus. It's the control getting all keyboard messages sent to, for example.
Bye, Olaf.