bonjour

débutant ...j'ai crée une animation fichier "test.swf"

suivent conseils j'ai, à priori , fait le bon code (?) (code ci-dessous) pour l'inclure dans ma page html

cependant l'image de mon animation s'affiche bien mais l'animation ne se joue pas ...

est ce que quelqu'un pourrait m'auguiller pour trouver la solution

merci d'avance

bonne journée

andy

code rentré :

Code : 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 
<html>
	<head>
		<title></title>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 
	</head>
	<body>
 
 
 
 
<object   classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 
          codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" 
          width="550" 
          height="400">
   <param name="movie" value="test.swf">
   <param name="quality" value="high">
   <embed src="test.swf" 
          quality="high" 
          pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" 
          type="application/x-shockwave-flash" 
          width="550" 
          height="400"
	  play="true">
   </embed>
</object>
 
 
 
	</body>
</html>