Précédent   Forum des professionnels en informatique > Webmasters - Développement Web > Flash/Flex > Flash > Intégration
Intégration Publication HTML, Communication javascript, Intégration de médias externes (Sons, Videos, ...)
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
'
Vieux 14/12/2006, 18h13   #1
Jsh
Membre du Club
 
Avatar de Jsh
 
Inscription : août 2005
Messages : 98
Détails du profil
Informations personnelles :
Âge : 44

Informations forums :
Inscription : août 2005
Messages : 98
Points : 57
Points : 57
Par défaut [PUBLICATION] Des éléments Flash ne s'affichent pas dans IE

Bonjour,

Voici mon souci :

Mon infographiste m'a développé des anim' en Flash, quand je les intègre dans mes pages Asp .Net, qui sont administrées sous un IIS, ces anim' s'affichent bien dans Firefox, mais ni sous IE 6 ni sous IE 7.

Cependant j'ai d'autres productions .swf qui ont été faites avec Swish, et celle-ci s'affichent bien sous ce navigateur.

Quelqu'un aurait-il une piste de recherche ?

Merci par avance

Js

PS : j'utilise le fameux fichier Backtohtml.js qui permet de n'avoir aucun souci d'activation du flash dans IE.
Jsh est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 14/12/2006, 18h18   #2
Rédacteur
 
Avatar de freegreg
 
Inscription : août 2002
Messages : 4 395
Détails du profil
Informations personnelles :
Âge : 34
Localisation : France, Gard (Languedoc Roussillon)

Informations forums :
Inscription : août 2002
Messages : 4 395
Points : 5 227
Points : 5 227
Salut,

peux-tu nous mettre un lien vers la page incriminée ?
Ou bien le code généré par ton js ?
__________________
Avant toutes questions, consultez nos différentes ressources disponibles gratuitement : XML, Développement Web, Flash/Flex, (X)HTML, CSS, JavaScript, AJAX, ASP
Vous voulez partager des ressources concernant les technologies ci-dessus : contactez-moi
freegreg est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 14/12/2006, 18h29   #3
Jsh
Membre du Club
 
Avatar de Jsh
 
Inscription : août 2005
Messages : 98
Détails du profil
Informations personnelles :
Âge : 44

Informations forums :
Inscription : août 2005
Messages : 98
Points : 57
Points : 57
La page :

http://www.sevea.net/entstlouis/default2.aspx

Dans la frame de haut il y a du flash (visualisez et dans Firefox et dans IE pour voir la différence)

Voici le code du javascript
(rendons à César, ce code provient de http://www.tekool.net/javascript/backtothehtml, auteur : Frédéric Saunier) :

Code :
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
 
function BackToTheHtml(node)
{
	if(node == null)
		this.node = document; 
	else
		this.node = node; 
};
BackToTheHtml.prototype.node = null;
 
BackToTheHtml.prototype.execute = function()
{
	this.activateObject();
}
 
BackToTheHtml.prototype.activateObject = function(domObject)
{
	var aDomObject = this.node.getElementsByTagName('object');
	var activationObject;
	for(var i=0; i<aDomObject.length; i++)
		if
		(
			aDomObject[i].getAttributeNode('BackToTheHtml') == null
			&&
			(activationObject = this.getActivationObject(aDomObject[i])) != null
		)
			activationObject.execute();
};
 
BackToTheHtml.prototype.getActivationObject = function(domObject)
{
	var classid = domObject.classid.toUpperCase().substr('clsid:'.length);
	var mimeType = domObject.type.toLowerCase();
 
	switch(true)
	{
		case 
			classid == 'D27CDB6E-AE6D-11CF-96B8-444553540000' 
			||
			mimeType == 'application/x-shockwave-flash'
		:
			return new ActivateObjectFlash(domObject);
 
		default :
			return null;
	}
};
 
BackToTheHtml.uniqueID = function(prefix)
{
	var sPrefix;
	if(prefix == null)
		sPrefix = 'uniqueId';
	else
		sPrefix = prefix;
 
	var i=0;
	while(document.getElementById(sPrefix + (i++)))
		;
	return sPrefix + (i-1);
};
 
BackToTheHtml.isParentOf = function(parent,child)
{
	var found = false;
	for(var i=0; i<parent.childNodes.length; i++)
		if(parent.childNodes[i] == child)
			return true;
		else
			found = arguments.callee(parent.childNodes[i],child);
 
	return found;
}
 
/*****************************************************************************
* ActivateObject Command
*///**************************************************************************
function ActivateObject(domObject)
{
	this.domObject = domObject;
}
 
ActivateObject.prototype.domObject = null;
ActivateObject.prototype.classid = null;
ActivateObject.prototype.aHtmlAttribute = ['accessKey','align','alt','archive','border','code','codeBase','codeType','declare','dir','height','hideFocus','hspace','lang','language','name','standby','tabIndex','title','useMap','vspace','width'];
ActivateObject.prototype.aObjectProperty = null;
 
ActivateObject.prototype.execute = function()
{
	this.xndObjectId = BackToTheHtml.uniqueID();
	this.setTextHtml();
	this.writeObject();
 
	this.xndObject = document.getElementById(this.xndObjectId);
	this.setSpecialProperties();
	this.removeOriginalObject();
}
 
ActivateObject.prototype.setTextHtml = function()
{
	var str = '';
	str += '<object BackToTheHtml ' + '\n';
	str += ' classid="clsid:' + this.classid + '" ' + '\n';
 
	//Add HTML attributes to the <object> tag
	for(var i=0; i<this.aHtmlAttribute.length; i++)
	{
		var name = this.aHtmlAttribute[i];
		if(typeof this.domObject[name] != 'undefined' && this.domObject[name].toString() != '')
			str += '\t' + name + '="' + this.domObject[name].toString() + '" ' + '\n';
	}
 
	str += 'id="' + this.xndObjectId + '" ' + '\n';
	str += '>';
 
	for(var i=0; i<this.aObjectProperty.length; i++)
	{
		var name = this.aObjectProperty[i];
		if(typeof this.domObject[name] != 'undefined' && this.domObject[name].toString() != '' )
			str += '\t<param name="' + name + '" value="' + this.domObject[name].toString() + '"></param>' + '\n';
	}
	str += '</object>';
 
	this.textHtml = str;
};
 
ActivateObject.prototype.writeObject = function()
{
	this.domObject.insertAdjacentHTML("afterEnd",this.textHtml);
};
 
ActivateObject.prototype.setSpecialProperties = function()
{
	if(typeof this.domObject.className != 'undefined' && this.domObject.className.toString() != '')
		this.xndObject.className = this.domObject.className
 
	if(typeof this.domObject.style.cssText != 'undefined' && this.domObject.style.cssText.toString() != '')
		this.xndObject.style.cssText = this.domObject.style.cssText;
 
	if(typeof this.domObject.SWRemote != 'undefined' && this.domObject.SWRemote.toString() != '')
		this.xndObject.FlashVars = this.domObject.SWRemote;
 
	if(typeof this.domObject.codebase == 'undefined' || this.domObject.codebase.toString() == '')
		this.xndObject.codebase = 'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0';
 
	if(typeof this.domObject.id != 'undefined' && this.domObject.id.toString() != '')
		this.xndObject.id = this.domObject.id;
 
};
 
ActivateObject.prototype.removeOriginalObject = function()
{
	this.domObject.parentNode.removeChild(this.domObject);
};
 
/*****************************************************************************
* ActivateObjectFlash Command
*///**************************************************************************
function ActivateObjectFlash(domObject)
{
	ActivateObject.call(this,domObject);
}
ActivateObjectFlash.prototype = new ActivateObject;
ActivateObjectFlash.prototype.aObjectProperty = ['FrameNum','Playing','Quality','Quality2','Scalemode','Scale','AlignMode','SAlign','BackgroundColor','BGColor','Loop','Movie','WMode','Base','DeviceFont','EmbedMovie','SWRemote','FlashVars','AllowScriptAccess'];
ActivateObjectFlash.prototype.classid = 'D27CDB6E-AE6D-11CF-96B8-444553540000';
 
 
/*****************************************************************************
* Script initialisation
*///**************************************************************************
if(typeof ActiveXObject != 'undefined' && typeof Function.call != 'undefined')
{
	var styleId = BackToTheHtml.uniqueID();
	document.write('<style id="' + styleId + '" ></style>');
	var domStyle = document.getElementById(styleId);
 
	var isHead = false;
	var aHead = document.getElementsByTagName('head');
	for(var i=0; i<aHead.length; i++)
		if(BackToTheHtml.isParentOf(aHead[i],domStyle))
			isHead = true;
 
	if(isHead)
	{
		document.write('<style type="text/css">OBJECT{visibility:hidden;}</style>');
		document.onreadystatechange = function()
		{
			if(document.readyState == 'complete')
			{
				new BackToTheHtml().execute();
				document.styleSheets[document.styleSheets.length-1].addRule("OBJECT","visibility:visible;");
				//alert('head');
				//alert(document.body.innerHTML);
			}
		}
	}
	else
	{
		new BackToTheHtml().execute();
		//alert('body');
		//alert(document.body.innerHTML);
	}
 
	domStyle.parentNode.removeChild(domStyle);
}
Jsh est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 14/12/2006, 18h39   #4
Rédacteur
 
Avatar de freegreg
 
Inscription : août 2002
Messages : 4 395
Détails du profil
Informations personnelles :
Âge : 34
Localisation : France, Gard (Languedoc Roussillon)

Informations forums :
Inscription : août 2002
Messages : 4 395
Points : 5 227
Points : 5 227
Tu n'indiques pas les bons chemins pour ie

ie : ban_large_g.swf
ff : images/ban.swf

ie : icones1.swf
ff : icones/icones.swf

__________________
Avant toutes questions, consultez nos différentes ressources disponibles gratuitement : XML, Développement Web, Flash/Flex, (X)HTML, CSS, JavaScript, AJAX, ASP
Vous voulez partager des ressources concernant les technologies ci-dessus : contactez-moi
freegreg est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 14/12/2006, 18h42   #5
Candidat au titre de Membre du Club
 
Inscription : mars 2003
Messages : 48
Détails du profil
Informations forums :
Inscription : mars 2003
Messages : 48
Points : 12
Points : 12
Bonjour,

je suis l'infographiste en question.

Il faut ajouter le fait que les bugs d'affichage differe suivant la lieu ou l'on se trouve. JSH visualise son site dans le local du serveur et moi de l'extérieur du réseau.

De chez moi (de l'extérieur de l'intranet) sous IE7

-non affichge des swf générés par flash ou swish
-écarts parasites entre le header, le centre de la page et le footer
vikti est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 14/12/2006, 18h43   #6
Candidat au titre de Membre du Club
 
Inscription : mars 2003
Messages : 48
Détails du profil
Informations forums :
Inscription : mars 2003
Messages : 48
Points : 12
Points : 12
Si c'est ca je sens que je vais loler JS
vikti est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 14/12/2006, 18h46   #7
Jsh
Membre du Club
 
Avatar de Jsh
 
Inscription : août 2005
Messages : 98
Détails du profil
Informations personnelles :
Âge : 44

Informations forums :
Inscription : août 2005
Messages : 98
Points : 57
Points : 57
Euh tu parles de ce paramètre ?

<param name="movie" value="ban_large_g.swf" />
Jsh est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 14/12/2006, 18h47   #8
Jsh
Membre du Club
 
Avatar de Jsh
 
Inscription : août 2005
Messages : 98
Détails du profil
Informations personnelles :
Âge : 44

Informations forums :
Inscription : août 2005
Messages : 98
Points : 57
Points : 57
On ne floode pas monsieur l'infographiste !

Je sens que je vais devenir comme ça :
Jsh est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 14/12/2006, 18h49   #9
Jsh
Membre du Club
 
Avatar de Jsh
 
Inscription : août 2005
Messages : 98
Détails du profil
Informations personnelles :
Âge : 44

Informations forums :
Inscription : août 2005
Messages : 98
Points : 57
Points : 57
Merci monsieur freegreg !
Jsh est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité Cette discussion est résolue.
Outils de la discussion



Fuseau horaire GMT +2. Il est actuellement 09h30.


 
 
 
 
Partenaires

Hébergement Web