● adds transparent attribute for insertion Flash with the attribute face plate of Dreamweaver, this method is simple and practical.
Make insertion Flash is in option position, in clicking attribute face plate " parameter " , the parameter that go out is played in immediately group is added in the watch, parameter name is " Wmode " , the value is " Transparent " . Use the attention when this method, if there is the Flash ID of manual input in the page, this ID will be deleted, input ID afresh after adding parameter please.
● adds transparent attribute for insertion Flash in Html code.
It is to add a value to be likewise " Transparent " " Wmode " parameter.
< ! - - to load AC_RunActiveContent.js, this is the file that DW makes automatically, need not revise, when changing file directory, remember revising the method here- - >
<script Src="Scripts/AC_RunActiveContent.js" Type="text/javascript"></script>
< ! - - below when this paragraph of JS is revised, want to notice, altogether should revise 4 places:
300 it is width;
200 it is height; Images/killIEBorder is method and file name, the attention when revising, share two office, even special attention, do not add at the back of file name " .swf " , after this compose has been written in AC_RunActiveContent.js- - >
<script Type="text/javascript">AC_FL_RunContent('codebase' , 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7, 0, 19, 0' , 'width' , '300' , 'height' , '200' , 'src' , 'images/killIEBorder' , 'quality' , 'high' , 'pluginspage' , 'http://www.macromedia.com/go/getflashplayer' , 'wmode' , 'transparent' , 'movie' , 'images/killIEBorder' ); //end AC Code
</script>
< ! - - encounter a browser to ban when using Javascript, will call below the code inside this paragraph of <noscript></noscript> , it is Dreamweaver upgrades 8.0.2 before that paragraph of code when we insert Flash. <param>Label acts well in the light of IE, <embed>Label acts well in the light of Firefox and Netscape. - - >
<noscript>
<object Classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" Codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7, 0, 19, 0" Width="300" Height="200">
<param Name="movie" Value="images/killIEBorder.swf">
<param Name="quality" Value="high">
<param Name="wmode" Value="transparent">
<embed Src="images/killIEBorder.swf" Width="300" Height="200" Quality="high" Pluginspage="http://www.macromedia.c om/go/getflashplayer" Type="application/x-shockwave-flash" Wmode="transparent"></embed>
</object>
</noscript>

No comments:
Post a Comment