简体   繁体   中英

How to load local shared swf file on site?

I have a local site in my system. The site index page contains an object and embed tag to load a SWF file.

I have a shared folder in my local system. This folder contains number of SWF files. It can access by other machine using my system IP path.

I am trying to load swf from the shared folder, its not get load. The code is;

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width = "400" height= "400" id="objFlash" align="middle">
       <param name="allowScriptAccess" value="always" />
       <param name="src" value= "file:\\\\52.234.85.84\Sites\abc\remoteasset.swf" />
       <param name="quality" value="high" />
       <param name="wmode" value="opaque" />
       <param name="menu" value="false" />
       <param name="allowFullScreen" value="true" />
       <embed src="file:\\\\52.234.85.84\Sites\abc\remoteasset.swf" quality="high" menu="false" wmode="opaque" width="400" height="400" id="objFlash" name="objFlash" allowScriptAccess="always" allowFullScreen="true" type="application/x-shockwave-flash" />        
</object>

Any one can suggest, How to load shared folder flash files into site in object/embed tag?

您的嵌入src错误,应为以下文件:\\\\ 52.234.85.84 \\ Sites \\ abc \\ remoteasset.swf

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM