My friend asked me this but I could not figure out why. Below is a
html page and include some javascript to control the play and rewind
of the swf file shape.swf. It works in Safari with Falsh plug-in 8
installed but could not work with Flash 7 (would report that obj.play
is not a recognized object etc).
I also tried it with FireFox 1.5.0 (Flash 8 plug-in) and it also
reports obj.play is not a function. Can anyone help point out what is
the problem?
Thanks,
Leon
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=
ISO-8859-1" >
<script type="text/javascript">
function playFlash()
{
var obj = document.getElementById("ebooksysflashcontrol");
obj.Play();
}
function stopFlash()
{
var obj = document.getElementById("ebooksysflashcontrol");
obj.Rewind();
}
</script>
</head>
<body>
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Web-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/web-dev/email@hidden