Hi,
I also want to show a video on mouse over the webcam but i cant find the documention on how to do this please help
include the video with the videoplayer plugin,
e.g. in this way: (paused and hidden at start)
|
Source code
|
1
2
3
4
5
6
7
8
9
|
<plugin name="video"
url="videoplayer.swf"
videourl="video.flv"
align="center"
pausedonstart="false"
visible="false"
alpha="0.0"
enabled="false"
/>
|
and the in the "onover" and onout" events on an "webcam" graphic,
start and show the video or stop and hide it,
e.g. (here the video will fade in and out by tweening the alpha value)
|
Source code
|
1
2
3
4
5
6
|
<plugin name="webcam"
...
onover="plugin[video].play(); set(plugin[video].visible,true); tween(plugin[video].alpha,1);"
onout="plugin[video].pause(); tween(plugin[video].alpha, 0.0, default, set(plugin[video].visible,false) );"
...
/>
|
best regards,
Klaus