videoview does not properly respond to mouse events. The following code snipet works only if I wrap the videoview with a container view, which in turn responds to the mouse events.
<canvas debug="true">
<videoview id="theVideo" width="320" height="240 url="
http://localhost/video.flv" type="http" autoplay="false" clickable="true">
<handler name="onmouseover">
Debug.write("mouseover");
</handler>
<handler name="onmouseout">
Debug.write("mouseout");
</handler>
<handler name="onclick">
Debug.write("onclick");
</handler>
</videoview>
<button onclick="theVideo.stream.play()">Start!</button>
</canvas>