Hi ,I was nuts finally got the flash file to work properly..
these were the thinks to look.
while designing skin we need to give the flash file path like this..
<tr>
<td width="520" height="85" valign="top" class="FlashMaster">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
width="520" height="85" hspace="0" vspace="0" align="top">
<param name="movie" value="<%= SkinPath %>nowopen.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<embed src="<%= SkinPath %>nowopen.swf" width="520" height="85" hspace="0" vspace="0"
align="top" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash"></embed>
</object>
</td>
</tr>
And When In HTML Module.. We need to give the flash file path like this.. give the
full path.. example..
<tr>
<td width="520" height="85" valign="top" class="FlashMaster">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
width="520" height="85" hspace="0" vspace="0" align="top">
<param name="movie" value="http://192.168.1.46/LatestDemoDNN/Portals/9/nowopen.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<embed src="http://192.168.1.46/LatestDemoDNN/Portals/9/nowopen.swf" width="520"
height="85" hspace="0" vspace="0" align="top" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash"></embed>
</object>
</td>
</tr>