History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: LPP-3132
Type: Bug Bug
Status: Open Open
Priority: P1 P1
Assignee: Don Hopkins
Reporter: James K
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
OpenLaszlo

videoview not responding to mouse events

Created: 17/Nov/06 03:38 PM   Updated: 31/Oct/07 08:35 AM
Component/s: Extensions - Streaming Audio / Video
Affects Version/s: 3.4
Fix Version/s: Future

Time Tracking:
Not Specified

Severity: Major
Runtime: N/A
Fix in hand: False


 Description  « Hide
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>


 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
There are no comments yet on this issue.