Hello,
I am basically an ASP programmer and does not have much knowledge about flash.
I added a flash banner (.swf) to right side of my web page and it created some extra space below the flash banner.
Questions:
- How to remove this extra space below flash file?
- How should I link this file with another web site so that when visitor clicks the banner, it opens web site in a new window?
- Currently animation in flash repeat only once. Can I make it to contineously repeat itself in code below?
The script I am using:
Quote:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" style="display:block" codebase="http://download.macromedia.com/pub/s...rsion=7,0,19,0">
<param name="movie" value="map.swf?button=1">
<param name="quality" value="high">
<param name="menu" value="false">
<param name="loop" value="true">
<param name="menu" value="true">
<param name="wmode" value="transparent" >
<param name="salign" value="l, t, r, b" >
<embed src="map.swf?button=1" menu="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" loop="true"></embed>
</object>
|