When producer is done, how do I link back to the original web pag.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When using producer to create html and slide presentation with audio, how do
I link back to the original web page when the producer stream is done?

Thanks
Helen
 
You were absolutely right. I just added this code to the dummy slide at the
end of the presentation and changed the URL. The presentation closed, and I
was back to the web page.
What a clean, easy solution!!
Thank you so much.

-----------------------------------------------------------------------------------------------
<html>
<head>
<title>start over</title>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2)
eval(args+".location='"+args[i+1]+"'");
}
//-->
</script>
</head>
<body
onLoad="MM_goToURL('parent','../default.htm#event=1&nopreload=1&autostar
t=1');return document.MM_returnValue">
</body>
</html>
------------------------------------------------------------------------------------------------
 
Back
Top