'*********************************************** ' 都啓一生誕祭 CSS Document ' http://www.miyakokeiiteam.com/birthday/ ' copyright(C):kaorhythm All right reserved. '*********************************************** ' Flash Player ActiveX コントロールのバージョン情報を検出するには、Visual Basic ヘルパーが必要です Function VBGetSwfVer(i) on error resume next Dim swControl, swVersion swVersion = 0 set swControl = CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i)) if (IsObject(swControl)) then swVersion = swControl.GetVariable("$version") end if VBGetSwfVer = swVersion End Function