2011-07-15 103 views
0

我使用swfobject.js文件將Flash內容嵌入到我的網站上。如何將HTML標題屬性添加到通過它嵌入的Flash對象中。swfobject:如何將html標題屬性添加到對象(flash)

因爲有些瀏覽器確實在鼠標懸停或狀態下顯示對象的標題,或者作爲工具提示或瀏覽器狀態顯示。 [例如。 IE6和Opera]

請幫

梅豔芳

+0

Stackoverflow不是論壇。閱讀[常見問題]。如果您認爲他們沒有解決您的問題,您可以在答案上留下意見。除此之外,你可以編輯你的問題來澄清它。 – dandan78

回答

0

可以在變量傳遞到一個Flash文件,並且能夠在跨平臺的方式提示。

so.addVariable("var", "value"); 

從DOM獲得的價值:

document.title 

所以:

var mytitle; 
var = document.title; 
so.addVariable("mytitle", mytitle); 
0

使用SWFObject 2.2

var attributes = { 
    title: document.title 
}; 
swfobject.embedSWF("mymovie.swf", //URL for SWF file 
        "mytargetdiv", //Target element 
        "550",   //SWF width 
        "400",   //SWF height 
        "9",   //Minimum required version of Flash Player 
        false,   //Path to ExpressInstall SWF (if desired) 
        false,   //Flashvars (if desired) 
        false,   //Parameters (if desired) 
        attributes); //Attributes (if desired) 

這裏假設你的<title>元件放置在你的面前<script>您網頁標記中的元素。