タグ

ブックマーク / www.mizunotomoaki.com (1)

  • JavaScriptでFlashPlayerのバージョンを取得する

    JavaScriptでFlashPlayerのバージョンを取得するサンプル。 Flash関連のライブラリはたくさんあるが、自前でいろいろやりたい、という場合に。 メジャーバージョンだけ返す関数です。 シンプル・イズ・ベスト。 「navigator.mimeTypes.length」での判定がミソかと。 function getFlashPlayerVersion() { var vsn = ''; if( navigator.plugins && navigator.mimeTypes.length ) { // not IE var tmp = navigator.plugins["Shockwave Flash"].description.match(/([0-9]+)/); vsn = tmp[0]; } else { // IE var tmp = new ActiveX

  • 1