[resolu][code dispo]onMouseOver avec Area
Dernière réponse : dans Programmation
Bonjour
je vient chercher de l'aide car je doit faire une carte avec photo :
J'ai donc ma carte avec des numéro est quand le visiteur de la page passa sa souris dessus l'image s'affiche
donc j'ai penser au onMouseOver !
Mais après moult essais de code , rien ne va :
pas d'affichage de photo !
J'ai juste le lien qui marche :s
Voici les 2 code que j'ai essayer :
et
merci de votre aide
je vient chercher de l'aide car je doit faire une carte avec photo :
J'ai donc ma carte avec des numéro est quand le visiteur de la page passa sa souris dessus l'image s'affiche
donc j'ai penser au onMouseOver !
Mais après moult essais de code , rien ne va :
pas d'affichage de photo !
J'ai juste le lien qui marche :s
Voici les 2 code que j'ai essayer :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>"> <html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>"> <head> <script language="JavaScript"> <!-- Begin bouton = new Image(); bouton.src = "1.JPG"; end --> </script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Documento sin título</title> </head> <body> <img src="Carte terrain ..bmp" width="1218" height="844" border="0" usemap="#map" /> <map name="map"> <area shape="circle" coords="422,829,14" onmouseover="bouton.src = '1.JPG';" href="1.jpg" /> </map> </body> </html>
et
<img src="Carte terrain ..bmp" width="1218" height="844" border="0" usemap="#map" /> <map name="map"> <area shape="circle" coords="422,829,14" onmouseover="img.src='1.JPG';" href="1.jpg" /> </map>
merci de votre aide
Autres pages sur : resolu code dispo onmouseover area
Lassé par la pub ? Créez un compte
J'utilise ce script pour un site web qui fonctionne très bien :
HTML :
/**passage de la souris sur une image du menu**/
function allumer(nomImage, image)
{
document.images[nomImage].src = "image/"+image ;
}
/**la souris n'est pas sur une image du menu**/
function eteindre(nomImage, image)
{
document.images[nomImage].src = "image/"+image ;
}
Comme tu le vois, je n'ai pas eus besoin de créer un objet image. Pour modifier le contenu d'une balise HTML <img>, je lui met un identifiant et lorsque la souris passe dessus, j'appelle une fonction javascript en lui passant cet identifiant et le lien vers l'image à charger. Ensuite, j'accède à la bonne image grâce au tableau images[] en passant l'identifiant de l'image. Je modifie ensuite la source avec l'attribut src. Ce qu'il faut comprendre, c'est que tu peux accéder à tes <img> grâce à l'objet images[] et tu dois donner à chaque <img> un moyen d'être identifiable sans ambiguïté, donc avec un identifiant.
edit : merci d'avoir poster ce topic ça m'a permit de voir qu'une des deux fonctions javascript est inutile XD
HTML :
Citation :
<img src="image/boutonOutAccueil.jpg" alt="Accueil" id="boutonAccueil" onmouseover="allumer(this.id, 'boutonOnAccueil.jpg');" onmouseout="eteindre(this.id, 'boutonOutAccueil.jpg');"/></a>Citation :
Javascript/**passage de la souris sur une image du menu**/
function allumer(nomImage, image)
{
document.images[nomImage].src = "image/"+image ;
}
/**la souris n'est pas sur une image du menu**/
function eteindre(nomImage, image)
{
document.images[nomImage].src = "image/"+image ;
}
Comme tu le vois, je n'ai pas eus besoin de créer un objet image. Pour modifier le contenu d'une balise HTML <img>, je lui met un identifiant et lorsque la souris passe dessus, j'appelle une fonction javascript en lui passant cet identifiant et le lien vers l'image à charger. Ensuite, j'accède à la bonne image grâce au tableau images[] en passant l'identifiant de l'image. Je modifie ensuite la source avec l'attribut src. Ce qu'il faut comprendre, c'est que tu peux accéder à tes <img> grâce à l'objet images[] et tu dois donner à chaque <img> un moyen d'être identifiable sans ambiguïté, donc avec un identifiant.
edit : merci d'avoir poster ce topic ça m'a permit de voir qu'une des deux fonctions javascript est inutile XD
C'est bon j'ai trouver !
Voici le code complet :
( attention extrêmement long )
Voici le code complet :
( attention extrêmement long )
<html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <SCRIPT LANGUAGE="javascript"> Image1 = new Image(600,416) Image1.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/ep.bmp" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image2 = new Image(555,416) Image2.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/1.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image3 = new Image(555,416) Image3.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/2.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image4 = new Image(555,416) Image4.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/3.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image6 = new Image(555,416) Image6.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/4.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image7 = new Image(555,416) Image7.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/6.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image8 = new Image(555,416) Image8.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/7.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image9 = new Image(555,416) Image9.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/8.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image10 = new Image(555,416) Image10.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/9.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image11 = new Image(555,416) Image11.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/10.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image12 = new Image(555,416) Image12.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/11.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image13 = new Image(555,416) Image13.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/12.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image14 = new Image(555,416) Image14.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/13.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image15 = new Image(555,416) Image15.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/14.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image16 = new Image(555,416) Image16.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/15.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image17 = new Image(555,416) Image17.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/16.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image18 = new Image(555,416) Image18.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html/images/17.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html/ima...</a>" Image19 = new Image(555,416) Image19.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/18.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image20 = new Image(555,416) Image20.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/19.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image21 = new Image(555,416) Image21.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/20.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image23 = new Image(555,416) Image23.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/21.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image24 = new Image(555,416) Image24.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/23.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image25 = new Image(555,416) Image25.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/24.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image26 = new Image(555,416) Image26.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/25.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image27 = new Image(555,416) Image27.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/26.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image28 = new Image(555,416) Image28.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/27.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image29 = new Image(555,416) Image29.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/28.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image30 = new Image(555,416) Image30.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/29.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image31 = new Image(555,416) Image31.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/30.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image32 = new Image(555,416) Image32.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/31.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image33 = new Image(555,416) Image33.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/32.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image34 = new Image(555,416) Image34.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/33.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image35 = new Image(555,416) Image35.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/34.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image36 = new Image(555,416) Image36.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/35.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image37 = new Image(555,416) Image37.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/36.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image38 = new Image(555,416) Image38.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/37.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image39 = new Image(555,416) Image39.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/38.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image40 = new Image(555,416) Image40.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/39.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" Image41 = new Image(555,416) Image41.src = "<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/40.jpg" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" </SCRIPT> <title>Plan du terrain</title> </head> <body onLoad="cacheOff()"> <DIV ID="cache"><TABLE WIDTH=400 BGCOLOR=#000000 BORDER=0 CELLPADDING=2 CELLSPACING=0><TR><TD ALIGN=center VALIGN=middle><TABLE WIDTH=100% BGCOLOR=#FF9900 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD ALIGN=center VALIGN=middle><FONT FACE="Verdana" SIZE=4 COLOR=#000000><B><BR>Chargement en cour...<BR></B></FONT></TD> </TR></TABLE></TD> </TR></TABLE></DIV> <SCRIPT LANGUAGE="JavaScript"> /* SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT <a href="http://www.editeurjavascript.com" target="_blank">http://www.editeurjavascript.com</a> */ var nava = (document.layers); var dom = (document.getElementById); var iex = (document.all); if (nava) { cach = document.cache } else if (dom) { cach = document.getElementById("cache").style } else if (iex) { cach = cache.style } largeur = screen.width; cach.left = Math.round((largeur/2)-200); cach.visibility = "visible"; function cacheOff() { cach.visibility = "hidden"; } </SCRIPT> <table width="600"><td width="600"> <IMG NAME="emp" SRC="<a href="http://www.storm-of-fox.info/modules/xfsection/html//images/ep.bmp" target="_blank">http://www.storm-of-fox.info/modules/xfsection/html//im...</a>" USEMAP="#ep" width="600"> <SCRIPT LANGUAGE="javascript"> function zoomin2() { document.emp.src = Image2.src; return true; } function zoomin3() { document.emp.src = Image3.src; return true; } function zoomin4() { document.emp.src = Image4.src; return true; } function zoomin6() { document.emp.src = Image6.src; return true; } function zoomin7() { document.emp.src = Image7.src; return true; } function zoomin8() { document.emp.src = Image8.src; return true; } function zoomin9() { document.emp.src = Image9.src; return true; } function zoomin10() { document.emp.src = Image10.src; return true; } function zoomin11() { document.emp.src = Image11.src; return true; } function zoomin12() { document.emp.src = Image12.src; return true; } function zoomin13() { document.emp.src = Image13.src; return true; } function zoomin14() { document.emp.src = Image14.src; return true; } function zoomin15() { document.emp.src = Image15.src; return true; } function zoomin16() { document.emp.src = Image16.src; return true; } function zoomin17() { document.emp.src = Image17.src; return true; } function zoomin18() { document.emp.src = Image18.src; return true; } function zoomin19() { document.emp.src = Image19.src; return true; } function zoomin20() { document.emp.src = Image20.src; return true; } function zoomin21() { document.emp.src = Image21.src; return true; } function zoomin23() { document.emp.src = Image23.src; return true; } function zoomin24() { document.emp.src = Image24.src; return true; } function zoomin25() { document.emp.src = Image25.src; return true; } function zoomin26() { document.emp.src = Image26.src; return true; } function zoomin27() { document.emp.src = Image27.src; return true; } function zoomin28() { document.emp.src = Image28.src; return true; } function zoomin29() { document.emp.src = Image29.src; return true; } function zoomin30() { document.emp.src = Image30.src; return true; } function zoomin31() { document.emp.src = Image31.src; return true; } function zoomin32() { document.emp.src = Image32.src; return true; } function zoomin33() { document.emp.src = Image33.src; return true; } function zoomin34() { document.emp.src = Image34.src; return true; } function zoomin35() { document.emp.src = Image35.src; return true; } function zoomin36() { document.emp.src = Image36.src; return true; } function zoomin37() { document.emp.src = Image37.src; return true; } function zoomin38() { document.emp.src = Image38.src; return true; } function zoomin39() { document.emp.src = Image39.src; return true; } function zoomin40() { document.emp.src = Image40.src; return true; } function zoomin41() { document.emp.src = Image41.src; return true; } function original() { document.emp.src = Image1.src; return true; } </SCRIPT> <map name="ep"> <!-- #$AUTHOR:carl --> <AREA shape="circle" ALT="Enlarged right side" coords="209,411,7" href="1.jpg" onMouseOver="zoomin2()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="243,324,9" href="40.jpg" onMouseOver="zoomin41()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="219,326,14" href="39.jpg" onMouseOver="zoomin40()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="65,363,8" href="28.jpg" onMouseOver="zoomin29()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="59,346,13" href="26.JPG" onMouseOver="zoomin27()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="82,356,10" href="27.jpg" onMouseOver="zoomin28()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="72,295,15" href="29.jpg" onMouseOver="zoomin30()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="26,294,18" href="25.jpg" onMouseOver="zoomin26()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="41,179,9" href="24.jpg" onMouseOver="zoomin25()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="34,156,15" href="23.jpg" onMouseOver="zoomin24()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="197,294,6" href="2.jpg" onMouseOver="zoomin3()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="196,276,12" href="38.jpg" onMouseOver="zoomin39()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="262,263,14" href="4.jpg" onMouseOver="zoomin6()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="304,218,12" href="6.jpg" onMouseOver="zoomin7()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="305,167,5" href="8.jpg" onMouseOver="zoomin9()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="294,167,5" href="7.jpg" onMouseOver="zoomin8()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="282,168,7" href="9.jpg" onMouseOver="zoomin10()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="302,149,7" href="10.jpg" onMouseOver="zoomin11()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="298,112,8" href="11.jpg" onMouseOver="zoomin12()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="256,94,7" href="12.jpg" onMouseOver="zoomin13()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="255,109,9" href="13.jpg" onMouseOver="zoomin14()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="235,94,7" href="14.jpg" onMouseOver="zoomin15()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="202,94,6" href="15.jpg" onMouseOver="zoomin16()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="185,93,5" href="16.jpg" onMouseOver="zoomin17()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="188,108,8" href="17.jpg" onMouseOver="zoomin18()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="144,95,9" href="18.jpg" onMouseOver="zoomin19()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="98,113,8" href="21.jpg" onMouseOver="zoomin23()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="148,136,7" href="19.jpg" onMouseOver="zoomin20()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="162,137,8" href="20.jpg" onMouseOver="zoomin21()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="201,253,8" href="3.jpg" onMouseOver="zoomin4()" onMouseOut="original()"/> <AREA shape="circle" ALT="Enlarged right side" coords="105,239,7" href="30.jpg" onMouseOver="zoomin31()" onMouseOut="original()"/> <AREA shape="circle" ALT="Enlarged right side" coords="136,203,6" href="31.jpg" onMouseOver="zoomin32()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="150,203,6" href="32.jpg" onMouseOver="zoomin33()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="149,214,6" href="34.jpg" onMouseOver="zoomin35()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="135,215,8" href="33.jpg" onMouseOver="zoomin34()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="182,211,8" href="36.jpg" onMouseOver="zoomin37()" onMouseOut="original()" /> <AREA shape="circle" ALT="Enlarged right side" coords="167,237,8" href="35.jpg" onMouseOver="zoomin36()" onMouseOut="original()"/> <AREA shape="circle" ALT="Enlarged right side" coords="194,236,10" href="37.jpg" onMouseOver="zoomin28()" onMouseOut="original()"/> <AREA SHAPE="default" nohref> </map> </td></table> </body> </html>
Le sujet est ancien mais ça peut toujours être utile.
<img src="Carte terrain ..bmp" width="1218" height="844" border="0" usemap="#map" />
<map name="map">
<area shape="circle" coords="422,829,14" onmouseover="img.src='1.JPG';" href="1.jpg" />
</map>
Il faut donner un nom à la balise IMG.
<img name="carte" src="Carte terrain.bmp" width="1218" height="844" border="0" usemap="#map" />
<map name="map">
<area shape="circle" coords="422,829,14" onmouseover="document.carte.src='1.JPG';" href="1.jpg" />
</map>
Citation :
<img src="Carte terrain ..bmp" width="1218" height="844" border="0" usemap="#map" />
<map name="map">
<area shape="circle" coords="422,829,14" onmouseover="img.src='1.JPG';" href="1.jpg" />
</map>
Il faut donner un nom à la balise IMG.
<img name="carte" src="Carte terrain.bmp" width="1218" height="844" border="0" usemap="#map" />
<map name="map">
<area shape="circle" coords="422,829,14" onmouseover="document.carte.src='1.JPG';" href="1.jpg" />
</map>
Lassé par la pub ? Créez un compte
- Contenus similaires :
- ForumCode de sécurité Nokia 3600 Reading Eeprom Area...Error!
- SolutionsPerdu code sécurité Nokia 6101 (résolu)
- ForumCode HTML pour texte area
- SolutionsProbleme code d'ouverture de session oublié ! [RESOLU]
- Solutions[résolu] Code déblocage réseau Alcatel OT 585 SVP
- ForumCode MEP2 BlackBerry Bold 9700 [RESOLU]
- SolutionsComment resolu la problem de code postal de sagem my 700x oublier
- SolutionsProblème code 39 [RESOLU] :-)
- Solutions[Résolu] Reset Ses Stats CoD6
- Voir plus