hello !
first of all thank you for your answer, and for your time.
i tried the html module and i got the same result - i see the flash is uploading but i don;t see any images at all ( i distinguish that the flash uploading because it have black-gray background and i saw the same background with the images when i run the flash from windows and not from the site ). i also mentioned that in html the flash is working, i also try to use your code from above - but i got the same result. in the code below i tried to run two flash - in both i got the sam result.
here is the code that i used :
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="600" height="300" data="content.xml"
xcodebase="http://download.macromedia.com/pub/sh...">
<param name="Movie" value="/DesktopModules/CI_MainPage/Files/preview.swf?param=/DesktopModules/CI_MainPage/Files/content.xml" />
<param name="Quality" value="high" />
<param name="wmode" value="transparent" />
<param name="allowFullScreen" value="true" />
<param name="scale" value="noscale" />
<param name="salign" value="tl" />
<param name="bgcolor" value="#336699" />
<param name="flashvars" value="urlForXML=/DesktopModules/CI_MainPage/Files/content.xml" />
<embed src="/DesktopModules/CI_MainPage/Files/preview.swf?param=/DesktopModules/CI_MainPage/Files/content.xml"
width="600" height="300"
quality="high" wmode="transparent" allowfullscreen="true"
type="application/x-shockwave-flash" scale="noscale" salign="tl" bgcolor="#336699"
pluginspage="http://www.macromedia.com/go/getflash...">
</embed>
</object>
i also use this code :
<asp:UpdatePanel ID="updpnlPatientBodyParts" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Panel ID="MyPanel" runat="server">
<div id="ScrollerDiv">
<a href="http://www.adobe.com/go/getflashplayer">
</a>
FLASH Should Be Visible Here
</div>
</asp:Panel>
<script src="/DesktopModules/CI_MainPage/swfobject.js" type="text/javascript"></script>
<script type="text/javascript">
var flashvars = {};
var params = {};
var attributes = {};
flashvars.settingsXML = "settings.xml";
flashvars.imagesXML = "images.xml";
params.scale = "noscale";
params.salign = "tl";
params.wmode = "transparent";
//attributes.id = "myytplayer"
swfobject.embedSWF("imagescroller.swf", "ScrollerDiv", "600", "300", "9.0.0", false, flashvars, params, attributes);
</script>
</ContentTemplate>
</asp:UpdatePanel>
and also this code :
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<ASPNetFlash:Flash ID="Flash2" runat="server" DataSourceID="XmlDataSource3"
WindowMode="Transparent" width="600" Height="300" PlayerVersion="9"
PlayerVersionAutoDetect="False" ScaleMode="NoScale" Alignment="Center"
AllowScriptAccess="always" MovieURL="/DesktopModules/CI_MainPage/Files/preview.swf" >
<HTMLAlternativeTemplate>
<asp:ImageButton ID="ImageButtonGetFlashPlayer" runat="server" PostBackUrl="http://www.adobe.com/go/getflashplayer" ImageUrl="http://www.aspnetflash.com/images/get..." />
</HTMLAlternativeTemplate>
</ASPNetFlash:Flash>
<asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="/DesktopModules/CI_MainPage/settings.xml">
</asp:XmlDataSource>
<asp:XmlDataSource ID="XmlDataSource2" runat="server" DataFile="/DesktopModules/CI_MainPage/images.xml">
</asp:XmlDataSource>
<asp:XmlDataSource ID="XmlDataSource3" runat="server" DataFile="/DesktopModules/CI_MainPage/Files/content.xml">
</asp:XmlDataSource>
<br />
</ContentTemplate>
</asp:UpdatePanel>
thank you,
damty