Ik wil is één button (image) welke een 'play'/'pause' functies combineert. Dus als de compositie played, dan moet de button op 'pause.gif' staan, en als de compositie gepauzeerd is moet de button op 'play.gif' staan. Er deze code werkt niet, wat doe ik nu verkeerd?
thx
PHP:
<script type="text/javascript">
function PlayPauseFunc(imgref)
{
if (imgref.src=='images_template/slideshow_pause.gif')
{
var res = document.VirtoolsATL.DoCommand('Pause');
imgref.src='images_template/slideshow_play.gif';
} else
{
var res = document.VirtoolsATL.DoCommand('Play');
imgref.src='images_template/slideshow_pause.gif';
}
}
PHP:
<img src="images_template/slideshow_pause.gif" onclick="PlayPauseFunc(this)">
thx