Hi KLAUS,
After playing with the last videoplayer version 1.0.8.14 (build 2011-10-21) it seems that there is a BUG in using the pausedonstart attribute...
As a test, edit the video-hotspot example, changing hotspot by plugin, like this:
Code
<!-- note - the url of the video must be always relative to the main krpano swf file -->
<plugin name="videospot" onvideoready="trace('ispaused returns = ',ispaused )"
.....
As the attribute pausedonstart is set to true, the variable ispaused returns true but the video does not show ...
A workaround that seems to work, is:
Code
<!-- note - the url of the video must be always relative to the main krpano swf file -->
<plugin name="videospot"
....
pausedonstart="false"
onvideoready="stop(); trace('ispaused returns = ',ispaused );"
/>
SAlut.