Bonjour,
J'utilise swfobject pour intégrer mes animations dans une page html. Je met l'animation à 100% en largeur et hauteur et tout fonctionne bien.
sauf pour 2 animations qui utilisent du xml pour le texte et les images de l'animation.... J'ai tout essayé.. Je bloque.
Quelqu'un pourrait-il m'aider..
Voici mon code (il y a surement des doublons à éliminer..)

Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
	<head>
		<title>test</title>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
		<style type="text/css" media="screen">
			html, body, #content	{ height:100%; }
			body					{ margin:0; padding:0; overflow:hidden; }
			#altContent				{ height:100%; width:100%}
			#content				{ height:100%; width:100%}
			#myId				{ display:block; height:100%; width:100%}
		</style>		
		<script type="text/javascript" src="swfobject.js"></script>
		<script type="text/javascript">
                        var flashvars= {};
                 flashvars.xmlURL="tfile_main.xml";
        
                        so.addVariable("xml", "tfile_main.xml");
 
                swfobject.registerObject("myId", "10.0.0", "expressInstall.swf");
                </script>
	</head>
	<body>
		<div id="content" width="100%" height="100%">	
			<object id="myId" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%">
 
				<param name="movie" value="main1_v8.swf" />
				<param name="quality" value="high" />
				<param name="play" value="true" />
				<param name="loop" value="true" />
				<param name="wmode" value="transparent" />
				<param name="scale" value="showall" />
				<param name="menu" value="true" />
				<param name="devicefont" value="false" />
				<param name="salign" value="" />
				<param name="flashvars" value="xmlDataPath=tfile_main.xml" />
 
				<param name="allowFullScreen" value="true" />
 
        		<!--[if !IE]>-->
				<object type="application/x-shockwave-flash" data="main1_v8.swf" width="100%" height="100%" fo.addVariable("xml", "tfile_main.xml")>
				<!--<![endif]-->
				<div id="altContent">
					<h1>Alternative content</h1>
					<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" width="100%" height="100%" alt="Get Adobe Flash player" /></a></p>
				</div>
				<!--[if !IE]>-->
				</object>
				<!--<![endif]-->
			</object>
		</div>
	</body>
</html>

Merci de votre aide