Chemin SRC

Fermé
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013 - 23 oct. 2012 à 12:10
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 - 2 nov. 2012 à 19:23
Bonjour à tous,

Etant novice en javascript' j'aurais besoin d'un conseil pour modifier une fonction SRC' mais je ne sais pas si cela est possible.

Voila je voudrais indiquer à cette instruction, car je pense que c'est celle-ci qu'il faut modifier, d'aller dans un dossier
nommé "Photos" par exemple, où se trouveveraient les photos "photos/aoo.jpg" ect...

je vous joins le script d'un petit diaporama que j'ai trouvé sur le net.

je vous remerçie d'avance pour vos conseils.

Cordiament.

Relax77500

-------------------------------------------------------------------------------------------------------------------

<SCRIPT LANGUAGE="JavaScript">
<!--
var timeDelay = 2;
var Pix = new Array

("photos/a00.jpg"
,"photos/a01.jpg"
,"photos/a02.jpg"
,"photos/a03.jpg"
,"photos/a04.jpg"
,"photos/a05.jpg"
,"photos/a06.jpg"
,"photos/a07.jpg"
,"photos/a08.jpg"
,"photos/a09.jpg"
,"photos/a10.jpg"
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
// End -->
</script>



<body OnLoad="startPix()">



<img name="ChangingPix" src="photos/a00.jpg">

30 réponses

Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
23 oct. 2012 à 15:08
Comment s'appelle ton fichier dans lequel tu as ton code javascript ?
Dans quel dossier se trouve ce fichier ?
Le dossier "photos" se trouve-t-il dans le même dossier que ce fichier ?
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
24 oct. 2012 à 05:44
Bonjour Blunderer,

Déjà un grand merci pour ta réponse aussi rapide.

En fait ce script se trouve dans chaque page de mon site. Je m'explique, ce site présente des pages de listes de films
Exemple: Action, Aventure, Animation, comédie, Dramatique ect.... et sur chaque page se trouve un diaporama présentant des
affichettes de films mais le mieux pour te rendre compte serait d'aller visiter les pages.

Je te donne l'adresse du site: www.lbaf77.com

Donc actuellement les pages comportant chaque scrit se trouvent dans un dossier nommé "www".
Les affichettes se trouve dans un dossier nommé "affichettes diaporama", celui-ci se trouvant également dans le dossier "www".

Les affichettes au format "jpg" sont nommées de cette façon: a00,a01,a02 à a09 ensuite b00,b01,b02 à b09 ect ...

D'où un travail fastidieux lorsque je veux changer le diaporama sur sur page car il faut changer chaque ligne indiquant le nom des affichettes sur toutes les pages du site.

Donc pour moi, je pense qu'il serait préférable de créer des dossiers nommés A0000,A0001,A0002 ect.... et les affichettes se trouveraient dans chaque dossier et comporterait le même nom a00,a01,a02 a à a09.

Je pense que cette ligne " <img name="ChangingPix" src="photos/a00.jpg"> " est à modifier pour lui indiquer que les affichettes se trouvent dans un dossier spécifique A0000,A0001 comme ça je n'aurais que le nom du dossier a changer sur chaque page, à moins que je ne me plante totalement.

Voila Blunderer, j'espère que tu vas me comprendre dans mes explications et encore un grand merci pour ton aide.

Je reste à ton écoute.

Cordialement.

Relax77500
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
Modifié par Blunderer le 24/10/2012 à 09:49
Dis moi si je me plante totalement ^^ :
tu voudrais par exemple que :
- sur la page Action, ton diapo prenne les photos a00, a001... du dossier A0000 ;
- sur la page Aventure, ton diapo prenne les photos a00, a001... du dossier A0001 ;
- ...

????

Et pourquoi as-tu un dossier "affichettes diaporama" et un dossier "photos" ? Peux-tu me donner la différence ?
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
24 oct. 2012 à 10:57
Re-bonjour Blunderer,

Encore merci pour ton aide aussi rapide.

Donc en fait, c'est bien ce que je veux faire. c'est à dire avoir un dossier nommé "Affichettes diaporama" dans lequel il y aurait tous les dossiers nommés " A0000, A0001, A0003 ect...., dans lesquels se trouveraient les fichiers a00, a01, a02 à a025.

De ce fait, je pourrais préparer mes dossiers à l'avance et je n'aurais plus qu'a transférer mon dossier et la page concernée modifiée a cette fameuse ligne si je suis dans le bon.

Un grand merci à toi et au site "Comment Ca Marche" pour son utilité.

Amicalement.

Alain
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
24 oct. 2012 à 11:13
Très bien alors dans ton dossier "affichettes diaporama", crée tous tes dossiers A0000, A0001...
Heu, peux-tu déjà les créer ou as-tu un soucis déjà à ce niveau ?
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
24 oct. 2012 à 11:35
Re Blunderer,

Eh oui car le script ne trouve pas dans un dossier spécifié, en fait je pense qu'il cherche le fichier a00 et démarre le diaporama et revient à a00 ainsi de suite.

C'est pour raison que je voudrais que la ligne " <img name="ChangingPix" src="photos/a00.jpg"> " me trouve trouve le dossier " affichette diaporama " ensuite le dossier " A000 " et là, le script trouverait les fichiers " a00 " ect....

Encore merci à toi.

Alain
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
Modifié par Blunderer le 24/10/2012 à 11:52
D'accord, alors crée déjà tes dossiers (A0000, A0001...) dans
http://www.lbaf77.com/affichettes%20diaporama/

Ensuite dans chaque dossier créé, met les images qui t'intéressent.

Ensuite dans le code, remplace par :
<script type="text/javascript">  
<!--  
var timeDelay = 2;  
var dossier = "A0000";  
var Pix = new Array  
("affichettes diaporama/" + dossier + "/a00.jpg"  
,"affichettes diaporama/" + dossier + "/a01.jpg"  
,"affichettes diaporama/" + dossier + "/a02.jpg"  
,"affichettes diaporama/" + dossier + "/a03.jpg"  
,"affichettes diaporama/" + dossier + "/a04.jpg"  
,"affichettes diaporama/" + dossier + "/a05.jpg"  
,"affichettes diaporama/" + dossier + "/a06.jpg"  
,"affichettes diaporama/" + dossier + "/a07.jpg"  
,"affichettes diaporama/" + dossier + "/a08.jpg"  
,"affichettes diaporama/" + dossier + "/a09.jpg"  
,"affichettes diaporama/" + dossier + "/a10.jpg"  
);   
var howMany = Pix.length;  
timeDelay *= 1000;  
var PicCurrentNum = 0;  
var PicCurrent = new Image();  
PicCurrent.src = Pix[PicCurrentNum];  
function startPix() {  
setInterval("slideshow()", timeDelay);  
}  
function slideshow() {  
PicCurrentNum++;  
if (PicCurrentNum == howMany) {  
PicCurrentNum = 0;  
}  
PicCurrent.src = Pix[PicCurrentNum];  
document["ChangingPix"].src = PicCurrent.src;  
}  
// End -->  
</script> 


Ce qui fait que sur chaque page, tu modifies la valeur de la variable dossier.


Maintenant, je suis.
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
24 oct. 2012 à 12:04
Ok blunderer,

Je vais essayer ça dans la soirée car j'ai du boulot cet après midi;

Encore un grand merci pour ton aide.

Je te tiens au courant sur la suite.

Alain
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
24 oct. 2012 à 12:05
Ok très bien ;)
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
24 oct. 2012 à 20:45
Bonsoir Blunderer,

Bon, enfin de compte on a pas le pot ... ça ne fonctionne pas.

Pourtant j'ai fait à la lettre ce que tu m'as dit. Donc j'ai bien transféré sur le site mon dossier " affichettes diaporama " contenant le dossier " A0000 " contenant lui même les fichiers " a00, a01, a03 ect ".

J'ai transféré la page " index " modifiée sur le site mais rien n'y fait.

Je te mets le script complet de la page index pour informations ... peut être ai-je fait une erreur quelque part.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>La Boite A Films</title>
<link rel="icon" type="image/png" href="/images/film32.png" />
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<link href="css/lightbox.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="scripts/lightbox.js"></script>
<script type="text/javascript">
<!--
var timeDelay = 2;
var dossier = "A0000";
var Pix = new Array
("affichettes diaporama/" + dossier + "/a00.jpg"
,"affichettes diaporama/" + dossier + "/a01.jpg"
,"affichettes diaporama/" + dossier + "/a02.jpg"
,"affichettes diaporama/" + dossier + "/a03.jpg"
,"affichettes diaporama/" + dossier + "/a04.jpg"
,"affichettes diaporama/" + dossier + "/a05.jpg"
,"affichettes diaporama/" + dossier + "/a06.jpg"
,"affichettes diaporama/" + dossier + "/a07.jpg"
,"affichettes diaporama/" + dossier + "/a08.jpg"
,"affichettes diaporama/" + dossier + "/a09.jpg"
,"affichettes diaporama/" + dossier + "/a10.jpg"
,"affichettes diaporama/" + dossier + "/a11.jpg"
,"affichettes diaporama/" + dossier + "/a12.jpg"
,"affichettes diaporama/" + dossier + "/a13.jpg"
,"affichettes diaporama/" + dossier + "/a14.jpg"
,"affichettes diaporama/" + dossier + "/a15.jpg"
,"affichettes diaporama/" + dossier + "/a16.jpg"
,"affichettes diaporama/" + dossier + "/a17.jpg"
,"affichettes diaporama/" + dossier + "/a18.jpg"
,"affichettes diaporama/" + dossier + "/a19.jpg"
,"affichettes diaporama/" + dossier + "/a20.jpg"
,"affichettes diaporama/" + dossier + "/a21.jpg"
,"affichettes diaporama/" + dossier + "/a22.jpg"
,"affichettes diaporama/" + dossier + "/a23.jpg"
,"affichettes diaporama/" + dossier + "/a24.jpg"
,"affichettes diaporama/" + dossier + "/a25.jpg"
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
// End -->
</script>
</head>
<body>
<body OnLoad="startPix()">
<div id="header"><a name="haut" id="haut"></a></div>
<div id="menu">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" class="menu" style="height: 50px;">
<tr style="vertical-align:top;">
<td width="83" class="menuPadding"><a href="index.html">Accueil</a></td>
<td class="menuSeparateur"></td>
<td width="83" class="menuPadding"><a href="informations.html">Informations</a></td>
<td class="menuSeparateur"></td>
<td width="83" class="menuPadding"><a href="lewebmaster.html">Le Webmaster</a></td>
<td class="menuSeparateur"></td>
<td width="83" class="menuPadding"><a href="nospartenaires.html">Nos Partenaires</a></td>
<td class="menuSeparateur"></td>
<td width="83" class="menuPadding"><a href="nouscontacter.html">Nous Contacter</a></td>
</tr>
</table>
</div>
<div id="sheader"></div>
<div id="contenuBg">
<div id="boiteMenuG">
<p class="bouton"> <a href=""></a></p>
<p style="text-align: center; margin: 0px; background: url('images/boxMenuH.gif') no-repeat bottom; height: 12px; width: 159px"></p>
<p class="elementMenu"><a href="action.html">Action</a></p>
<p class="elementMenu"><a href="animation.html">Animation</a></p>
<p class="elementMenu"><a href="aventure.html">Aventure</a></p>
<p class="elementMenu"><a href="comedie.html">Comedie</a></p>
<p class="elementMenu"><a href="concert.html">Concert</a></p>
<p class="elementMenu"><a href="documentaire.html">Documentaire</a></p>
<p class="elementMenu"><a href="dramatique.html">Dramatique</a></p>
<p class="elementMenu"><a href="educatif.html">Educatif</a></p>
<p class="elementMenu"><a href="fantastique.html">Fantastique</a></p>
<p class="elementMenu"><a href="guerre.html">Guerre</a></p>
<p class="elementMenu"><a href="horreur.html">Horreur</a></p>
<p class="elementMenu"><a href="policier.html">Policier</a></p>
<p class="elementMenu"><a href="adulte.html">Adulte</a></p>
<p class="elementMenu"><a href="western.html">Western</a></p>
<p class="elementMenu"><a href="discographie.html">Discographie</a></p>
<p class="elementMenu"><a href="rencontre.html">Rencontres</a></p>
<p style="text-align: center; margin: 0px; padding-bottom: 50px; background: url('images/boxMenuBG.gif') no-repeat top; height: 12px; width: 159px"></p>
</div>
<div id="boiteTexte">
<p align="left" class="titre" style="margin: 0px 0px 0px 0px;">Accueil</p>
<p align="center" style="margin-top: 40px;"><strong>BIENVENUE DANS LA BOITE A FILMS</strong></p>
<p align="center" style="margin-top: 40px;">
<center>
<p><strong>Vous êtes le</strong></p>
<p><a href="http://www.imingo.net/fr/" target=_top>
<img src="http://www.imingo.com/services/compteur/icptsp.php?id=laboitafilms"
name="imingo.com" border="0" alt="un compteur pour votre site"></a></p>
<p><strong>Visiteur</strong></p>
</center>
 </p>
<center>
<script type='text/javascript' src='http://www.monsitegratuit.com/heure/horloge_virtuelle.php?num=30&largeur=115&hauteur=115'></script><a href='http://www.monsitegratuit.com/'><img src="http://www.monsitegratuit.com/site.gif" alt="Mon Site Gratuit : Horloge Virtuelle pour site internet" border="0"></a></center>
 
<div align="center">
<script language="javascript">
// PLF - https://twitter.com/ceosammassey
var datedujour, date, mois, mois1, jour, jour1, an;
datedujour = new Date();
jour = datedujour.getDay()
switch(jour){
case 1 :
jour1 ="Lundi"
break;
case 2 :
jour1 ="Mardi"
break;
case 3 :
jour1 ="Mercredi"
break;
case 4 :
jour1 ="Jeudi"
break;
case 5 :
jour1 ="Vendredi"
break;
case 6 :
jour1 ="Samedi"
break;
case 0 :
jour1 ="Dimanche"
break;
}
date = datedujour.getDate()
mois = datedujour.getMonth()
switch(mois+1){
case 1 :
mois1 ="Janvier"
break;
case 2 :
mois1 ="Février"
break;
case 3 :
mois1 ="Mars"
break;
case 4 :
mois1 ="Avril"
break;
case 5 :
mois1 ="Mai"
break;
case 6 :
mois1 ="Juin"
break;
case 7 :
mois1 ="Juillet"
break;
case 8 :
mois1 ="Août"
break;
case 9 :
mois1 ="Septembre"
break;
case 10 :
mois1 ="Octobre"
break;
case 11 :
mois1 ="Novembre"
break;
case 12 :
mois1 ="Décembre"
break;
}
an = datedujour.getFullYear()
document.write("<div align='center'><font size='2' font color = '3399FF'><b>");
document.write(jour1, " ");
document.write(date, " ");
document.write(mois1 , " ");
document.write(an, " ");
document.write("</b></font></div>");
</script>
 
<table width="110" border="1">
<tr>
<td><div align="center"><img src="photos site/Bleuerosehaut.gif" width="332" height="30" /></div></td>
</tr>
</table>
</div>
<p align="center" style="margin-top: 5px;"> </p>
<div align="center">
<table width="112" border="1">
<tr>
<td><div align="center"><img src="photos site/Century Fox.gif" width="150" height="112" /></div></td>
</tr>
</table>
</div>
<p align="center" style="margin-top: 5px;"> </p>
<div align="center">
<table width="120" border="1">
<tr>
<td><div align="center"><img src="photos site/Bleuebarre.gif" width="270" height="10" /></div></td>
</tr>
</table>
</div>
<p align="center" style="margin-top: 5px;"> </p>
<div align="center">
<table width="300" border="1">
<tr>
<td><div align="center">

</div></td>
</tr>
</table>
<p> </p>
</div>
<div align="center">
<table width="110" border="1">
<tr>
<td><div align="center"><img src="photos site/Bleuebarre.gif" width="270" height="10" /></div></td>
</tr>
</table>
</div>
<p align="center" style="margin-top: 5px;"> </p>
<div align="center">
<table width="160" border="1">
<tr>
<td width="150"><div align="center"><strong>INFORMATIONS</strong></div></td>
</tr>
</table>
</div>
<p align="center" style="margin-top: 5px;"> </p>
<p align="center" style="margin-top: 5px;"><strong>LA BOITE A FILMS</strong></p>
<p align="center" style="margin-top: 5px;"><strong>VOUS SOUHAITE UNE EXCELLENTE VISITE</strong></p>
<p align="center" style="margin-top: 5px;">****************</p>
<p align="center" style="margin-top: 5px;"><strong>LES LISTES DES FILMS ONT ETE MISES A JOUR: AVRIL 2012</strong></p>
<p align="center" style="margin-top: 5px;"><strong>***************</strong></p>
<p align="center" style="margin-top: 5px;"><strong>PROCHAINEMENT MISE EN PLACE D'UN NOUVEAU MOTEUR DE RECHERCHE </strong> </p>

<div align="center">
<p> </p>
</div>
<div align="center">
<table width="110" border="1">
<tr>
<td><div align="center"><img src="photos site/Bleuebarre.gif" width="270" height="10" /></div></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="500" height="23">
<tr>
<td height="23" width="690">
<p align="center"><b><font size="4" color="#5A3330">
<marquee scrolldelay="100">
</marquee>
</font></b><b><font size="4" color="#5A3330">
<marquee scrolldelay="100">
<font size="2" face="Arial, Helvetica, sans-serif"><font color="#000000">!!!!!!!!!!
..... BIENVENUE DANS LA BOITE A FILMS ..... L.B.A.F 77 VOUS SOUHAITE UNE EXCELLENTE VISITE ..... !!!!!!!!!!</font></font>
</marquee>
</font><font face="Bradley Hand ITC" size="4" color="#000000">
<marquee scrolldelay"100">
</marquee>
</font></b>
</td>
</tr>
</table>
<table width="32%" border="1">
<tr>
<td height="14"><img src="photos site/Bleuebarre.gif" width="270" height="10" /></td>
</tr>
</table>
</div>
<p align="center" style="margin-top: 5px;"> </p>
<div align="center">
<table width="120" border="1">
<tr>
<td><div align="center"><img src="photos site/Facebook.jpg" width="120" height="121" /></div></td>
</tr>
</table>
</div>
<p align="center" style="margin-top: 5px;"> </p>
<div align="center">
<table width="110" border="1">
<tr>
<td><div align="center"><img src="photos site/Bleuerosebas.gif" width="332" height="30" /></div></td>
</tr>
</table>
</div>
<p align="center" style="margin-top: 5px;"> </p>
<p align="center" style="margin-top: 5px;"><a href="action.html">Action</a> - <a href="animation.html">Animation</a> - <a href="aventure.html">Aventure</a> - <a href="comedie.html">Comedie</a> - <a href="concert.html">Concert</a> - <a href="documentaire.html">Documentaire</a> - <a href="dramatique.html">Dramatique</a> - <a href="educatif.html">Educatif </a><a href="fantastique.html">Fantastique</a> - <a href="guerre.html">Guerre</a> - <a href="horreur.html">Horreur</a> - <a href="policier.html">Policier</a> - <a href="adulte.html">Adulte</a> - <a href="western.html">Western</a> - <a href="discographie.html">Discographie</a> - <a href="rencontre.html">Rencontres</a></p>
<p align="center" style="margin-top: 5px;"><a href="index.html">Accueil</a> - <a href="informations.html">Informations</a> - <a href="lewebmaster.html">Le Webmaster</a> - <a href="nospartenaires.html">Nos Partenaires</a> - <a href="nouscontacter.html">Nous Contacter</a></p>
<p align="center" style="margin-top: 5px;">Dernières Modifications Du Site: 19.04.2012</p>
<p align="center" style="text-align: center;"><a href="#haut"><img src="images/ancre.gif" alt="ancre" width="57" height="20" border="0" /></a></p>
</div>
<p class="spacer" /> 
</div>
<div id="footer">
<p class="textePetit" style="padding-top: 35px; margin: 0px 0px 0px 0px;">LA BOITE A FILMS
77 © 2010</p>
</div>

</body>
</html>


Voila j"espère que l'on va y arriver à faire tourner ce diaporama.

Je te remercie grandement encore pour ton aide.

Bonne soirée ... A+

Alain
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
25 oct. 2012 à 11:08
Je n'arrive plus à aller sur la la page Action par exemple, normal ?
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
25 oct. 2012 à 11:24
J'ai testé chez moi et ca marche :)
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
25 oct. 2012 à 11:25
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans nom</title>
<div align="center"><u>ESSAI DIAPORAMA</u></div>
<script type="text/javascript">  
<!--  
var timeDelay = 2;  
var dossier = "A0000";  
var Pix = new Array  
("http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a00.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a01.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a02.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a03.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a04.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a05.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a06.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a07.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a08.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a09.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a10.jpg"
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a11.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a12.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a13.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a14.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a15.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a16.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a17.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a18.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a19.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a20.jpg"
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a21.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a22.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a23.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a24.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a25.jpg"  
);   
var howMany = Pix.length;  
timeDelay *= 1000;  
var PicCurrentNum = 0;  
var PicCurrent = new Image();  
PicCurrent.src = Pix[PicCurrentNum];  
function startPix() {  
setInterval("slideshow()", timeDelay);  
}  
function slideshow() {  
PicCurrentNum++;  
if (PicCurrentNum == howMany) {  
PicCurrentNum = 0;  
}  
PicCurrent.src = Pix[PicCurrentNum];  
document["ChangingPix"].src = PicCurrent.src;  
}  
// End -->  
</script>
</head>
<body onload="startPix();">
<img name="ChangingPix" src="http://www.lbaf77.com/affichettes diaporama/A0000/a25.jpg">
</body>
</html> 

0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
25 oct. 2012 à 11:44
Bonjour Blunderer,

Oui c'est normal que tu n'es pas la page action sur le site car j'ai supprimé tous les scripts du site, mais rassures toi j'ai sauvegardé la totalité des scripts.

En, j'ai recréé un dossier " www " ou j'y ai placé une nouvelle page pour essai accompagnée des dossiers " A0000, A001 ect.... " et c'est là que j'ai vu que cela ne fonctionnait pas.

Tu as du tomber sur une page blanche intitulée " ESSAI DIAPORAMA ", mais pas d'images.

Donc, je refais l'essai avec ton nouveau script et je te tiens au courant.

Et encore remerciements pour tout.

Bon appétit.

Alain
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
25 oct. 2012 à 11:50
Très bien...
http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a25.jpg
=> j'ai rajouté ton site devant car j'étais chez moi, tu peux le laisser pour tester si ca marche mais tu pourras l'enlever après si tu veux ;)

Bon app'
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
25 oct. 2012 à 14:41
Re bonjour Blunderer,

Donc après essai cela semble concluant pour le dossier A0000 mais si je veux basculer sur le dossier A0001 cela ne fonctionne pas et je reste bloqué sur le dossier A0000 même en modifiant la variable Dossier " A0000 " en " A0001 " et la ligne " <img name="ChangingPix" src="affichettes diaporama/A0000/a00.jpg"> ".

J'ai bien mes deux dossiers " A0000 " et " A0001 " sur le site mais rien n'y fait.

Si cela ne te dérange pas, fais l'essai pour changer de dossier pour voir si cela fonctionne chez toi.

Encore merci.

Amicalement.

Alain
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
25 oct. 2012 à 14:52
Pour moi ca marche avec A0001 !
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans nom</title>
<div align="center"><u>ESSAI DIAPORAMA</u></div>
<script type="text/javascript">  
<!--  
var timeDelay = 2;  
var dossier = "A0001";  
var Pix = new Array  
("http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a00.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a01.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a02.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a03.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a04.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a05.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a06.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a07.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a08.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a09.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a10.jpg"
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a11.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a12.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a13.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a14.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a15.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a16.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a17.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a18.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a19.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a20.jpg"
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a21.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a22.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a23.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a24.jpg"  
,"http://www.lbaf77.com/affichettes diaporama/" + dossier + "/a25.jpg"  
);   
var howMany = Pix.length;  
timeDelay *= 1000;  
var PicCurrentNum = 0;  
var PicCurrent = new Image();  
PicCurrent.src = Pix[PicCurrentNum];  
function startPix() {  
setInterval("slideshow()", timeDelay);  
}  
function slideshow() {  
PicCurrentNum++;  
if (PicCurrentNum == howMany) {  
PicCurrentNum = 0;  
}  
PicCurrent.src = Pix[PicCurrentNum];  
document["ChangingPix"].src = PicCurrent.src;  
}  
// End -->  
</script>
</head>
<body onload="startPix();">
<img name="ChangingPix" src="http://www.lbaf77.com/affichettes diaporama/A0001/a25.jpg">
</body>
</html>


Tiens moi au courant ;)
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
25 oct. 2012 à 18:02
Me revoila,

Donc pour moi ça fonctionne uniquement en local et sur le dossier A0000.

Je vais faire l'essai sur l'ordinateur de mon fils car j'ai un doute sur mon navigateur.

Dis moi, si de ton coté cela fonctionne sur le net avec le dossier A0000 et A0001.

Sinon, je te tiens au courant pour la suite.

Bonne soirée et bon appétit.

Amicalement.

Alain
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
26 oct. 2012 à 09:56
Y a aucune raison que ca ne marche pas sur ton pc.
Quand tu copies colles mon dernier message, ca marche ou pas ?
Si oui, tu as juste à l'insérer dans ta page internet normale.
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
26 oct. 2012 à 14:47
Bonjour Blunderer,

On a gagné enfin tu as gagné .... c'est bon cela fonctionne avec A0000 et A0001.
Ça ne fonctionnait pas car j'ai du me planter en insérant le code.

Le seul soucis est que l'image se retrouve à l'extérieur du cadre et non dedans comme sur les autres pages du site. Il ne me reste plus que ça à faire comme ça ce sera super.

Voila on approche du but et je ne sais pas comment te remercier pour ton aide aussi précieuse.

Amicalement.

Alain
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
26 oct. 2012 à 14:54
Je vois l'erreur :
ligne 64 : coupe la ligne et colle la entre <div align="center"> et </div> (lignes 223-224).

Essaye !

Voili :)

0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
26 oct. 2012 à 14:56
Tu devrais donc avoir ceci ligne 223 :
<td><div align="center">
<img name="ChangingPix" src="http://www.lbaf77.com/affichettes diaporama/A0001/a25.jpg">
</div></td>
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
26 oct. 2012 à 15:12
Ok j'essaie ça de suite. Ah oui j'ai mis la pas en ligne regarde ce que ca donne m.d.r.

Je te tiens au courant.

Alain
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
26 oct. 2012 à 15:21
Oui j'ai vu ^^
Pas mal l'image en haut à gauche :)
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
26 oct. 2012 à 15:34
Oui ça fait style. Bon mon ami c'est tout bon ... impec ... cable de frein ... super.

Rien à dire de plus qu'a te remercier grandement pour ton aide et il ne me reste plus qu'a modifier toutes mes pages et transférer tous les dossier.

Vraiment super et du bon boulot. Encore un grand merci.

Je te laisse fermer le sujet car je ne sais pas comment il faut faire.

Amicalement. A ++++

Alain
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
26 oct. 2012 à 15:50
Attends ne ferme pas le sujet car je viens de me rendre compte d'un truc bizarre.

Je contrôle bien avant mais à priori il démarrerait sur la première image du dossier A0000 ensuite il saute sur le dossier A0001.

Amicalement.

Alain
0
Relax77500 Messages postés 22 Date d'inscription mardi 23 octobre 2012 Statut Membre Dernière intervention 1 avril 2013
26 oct. 2012 à 15:55
Oui apres controle donc il lit la premiere image du dossier A0000 et ensuite il lit la deuxieme image du dossier A0001. c'est etrange ce truc.

Amicalement.

Alain
0