lien PHP avec arret sur image qui ne marche pas
Bonjour,
J'ai un problème avec un lien geturl dans un clip.
En effet le lien se fait bien mais le clip ne s'arrete pas à l'image 3 comme je souhaiterais.
Peut être que je ne mets pas mon code au bon endroit ? j'y connais pas grand chose... merci de regarder ce code et de m'éclairer de vos lumières.
Je peux fournir le .fla pour ceux qui serait tenter de débloquer ce probleme.
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
| //Sur c_pres (c = clip)
// Image 1 - etiquette 1
stop();
onRollOver = function () {
gotoAndStop(2);
};
// Image 2- etiquette 2
stop();
onRollOut = function () {
gotoAndStop(1);
}
onPress = function () {
getURL("Etablissement.php");
gotoAndStop(3);
_root.c_viequo.gotoAndStop("1");
_root.c_unitee.gotoAndStop("1");
_root.c_forma.gotoAndStop("1");
_root.c_contact.gotoAndStop("1");
_root.c_animations.gotoAndStop("1");
_root.c_sorties.gotoAndStop("1");
}
// Image 3 - etiquette 3
onRollOut = function () {
gotoAndStop(3);
}
onRollOver = function () {
gotoAndStop(3);
}
c_viequo.gotoAndStop(1);
c_unitee.gotoAndStop(1);
c_forma.gotoAndStop(1);
c_contact.gotoAndStop(1);
c_animations.gotoAndStop(1);
c_sorties.gotoAndStop(1); |
En attendant, merci !!
Bérangère