2010-04-03 51 views

回答

0

可以在HTML編輯模式

<embed src="//example.com/filename.swf" 
    width="540" height="540" pluginspage="http://www.macromedia 
    .com/go/getflashplayer"></embed> 

使用embed選項卡中保存後,它會自動生成一個小工具包的SWF文件。您使用https協議來確保健壯性,否則可能無法顯示內容。

0

你可以創建自己的小工具http://example.com/gadget.xml

<?xml version="1.0" encoding="UTF-8"?> 
<Module> 
    <ModulePrefs title="Demo" 
       author="You!" 
       author_email="[email protected]" 
       width="558" 
       height="558"> 
    <Require feature="flash"/> 
    </ModulePrefs> 
    <Content type="html"> 
    <![CDATA[ 
     <div id="flash-container" 
      style="text-align:center;height:558;border:0;padding:0;margin:0"> 
     Loading... 
     </div> 
     <script type="text/javascript"> 
     function showFlash() { 
      gadgets.flash.embedFlash(
      '//example.com/demo.swf', 'flash-container', 6 
     ); 
     } 

     gadgets.util.registerOnLoadHandler(showFlash); 
     </script> 
    ]]> 
    </Content> 
</Module> 

,那麼你可以通過菜單,通過URL嵌入的小工具。