Topic: Disable double click in media player |
|
---|---|
Author | Thread |
Neurotic (0) Inmate Newly admitted From: |
posted 08-25-2008 07:50
Hi all, |
Obsessive-Compulsive (I) Inmate From: JavaScript World |
posted 08-25-2008 08:02
You could use a flash player to play the video/sound instead of using WMP plugin. |
Obsessive-Compulsive (I) Inmate From: |
posted 08-25-2008 08:22
thanks for the suggestion but I have to use the media player as I am streaming my video and the duration of the video is also big. |
Maniac (V) Mad Scientist with Finglongers From: Germany |
posted 08-25-2008 10:20
Streaming is easily handled by flash - see youtube, and I'm sure flash's even more accessible from javascript than the media player. code: function preventFullscreen() { player.fullScreen = false; setTimeout(preventFullscreen,100); } |