<html>
<head>
<title>用js代碼控制flash的播放</title>
<meta charset="utf-8" />
</head>
<body>
<input type="button" value="播放" onclick="myflash.Play()" />
<!-- flash會從暫停的那一幀開始播放-->
<input type="button" value="暫停" onclick="myflash.StopPlay()" />
<!-- flash暫停在當前幀-->
<input type="button" value="停止" onclick="StopPlay()" />
<input type="button" value="播放狀態" onclick="alert(myflash.IsPlaying())" />
<!--flash 的播放狀態 true || false-->
<br/>進度控制:
<input type="button" value="返回首幀" onclick="myflash.Rewind()" />
<!-- flash暫停在當前幀-->
<input type="button" value="前進" onclick="goForward()" />
<input type="button" value="后退" onclick="backOff()" />
<input type="button" value="當前幀" onclick="alert(myflash.CurrentFrame())" />
<!--從0開始-->
<input type="button" value="總幀數" onclick="alert(myflash.TotalFrames())" />
<!--返回總幀數-->
<br/>其它控制:
<input type="button" value="已加載" onclick="alert(myflash.PercentLoaded()+'%')" />
<embed src="test.swf" id="mySwf" allowscriptaccess="always" quality="high" width="1000" height="300" swliveconnect="false" wmode="opaque" flashvars="name=pmx&age=44">
<script>
var myflash = document.getElementById('mySwf');
function StopPlay() {
myflash.GotoFrame(0); //flash調到第一幀並停止播放
}
function goForward() {
myflash.GotoFrame(myflash.CurrentFrame() + 10); //flash跳轉到當前幀+10幀,並停在該幀
}
function backOff() {
myflash.GotoFrame(myflash.CurrentFrame() - 10);
}
</script>
</body>
</html>