|
由于 flash 升级导致旧版金鹰教程无法正常播放,自制播放器如何直接调用 flash8.ocx
查网上有一款雅致 flash 打包软件可从做到,但不知如何实现。
半成品代码如下:
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
GUICreate("", 1024, 750, -1, -1, $WS_POPUPWINDOW)
GUISetState( )
$Flash = ObjCreate("ShockwaveFlash.ShockwaveFlash")
$FlashObj = GUICtrlCreateObj($Flash, 0, 0, 1024, 750)
$Flash.Movie = "c:\1.swf"
$Flash.FlashVars = "autoPlay=true&channel=xfire_mausmausmaus1&embed=true"
$Flash.Loop = True
While 1
Dim $msg = GuiGetMsg()
If $GUI_EVENT_CLOSE = $msg Then
$Flash.Stop()
$Flash.Movie = ""
ExitLoop
EndIf
WEnd |
|