Bonjour
Existe t-il une méthode pour suivre l'exécution d'un script instruction par instruction ?
Ainsi, un script prélevé sur un site et modifié pour être adapté à sa nouvelle configuration sur ma machine n'exécute pas toutes les instructions et je ne sais pas pourquoi...la fonction "changer" ne fait rien...
Autre chose, comment exprimer en "français" ces instructions...??
Merci
Pour visionner des photos de façon automatique :
<script language="JavaScript">
<!--
//PLF-http://www.jejavascript.net/
function objet() {
this.length = objet.arguments.length
for (var i = 0; i < this.length; i++) this[i+1] = objet.arguments[i]
}
var nom = new objet ("DSCN4945.JPG" , "DSCN4937.JPG" , "DSNC4944.JPG" );
var numero = 1;
function changer() {
document.image.src = "F://JP/monsite/créer s/Photos quartier/"+nom[numero];
numero += 1;
if (numero == nom.length + 1) numero = 1;
setTimeout("changer()", 500);
}
function prechargimg() {
var doc=document;
if(doc.images){ if(!doc.precharg) doc.precharg=new Array();
var i,j=doc.precharg.length,x=prechargimg.arguments; for(i=0; i<x.length; i++)
if (x[i].indexOf("#" )!=0){ doc.precharg[j]=new Image; doc.precharg[j++].src=x[i];}}
}
//-->
</script>
</head>
<body bgcolor="#FFF100" onLoad="changer();prechargimg ('F://JP/monsite/créer s/Photos quartier/DSCN4937.JPG','F://JP/monsite/créer s/Photos quartier/DSNC4944.JPG')">
<table width="400" border="0" align="left" bgcolor="#9966FF">
<td valign="left">
<div align="left"><br>
<img src="F://JP/monsite/créer s/Photos quartier/DSCN4948.JPG" width="300" height="300" name="image">
</body>
</html>