[flash]Créer un lien vers une page html

ctophe33 Messages postés 78 Date d'inscription   Statut Membre Dernière intervention   -  
ctophe33 Messages postés 78 Date d'inscription   Statut Membre Dernière intervention   -
Bonjour,

J'ai un site en flash et je souhaiterai modifier un menu pour qui me dirige sur une page html que j'ai faite .Comment on fait pour modifier le lien par un nouveau lien pour qui me retrouve cette page ?
voici le code du menu .

cordialement

onClipEvent(load) {
num=2;
this.title1.gotoAndStop(num);
this.title2.gotoAndStop(num);
}

on(rollOver) {
if(_root.link<>num) {
this.gotoAndPlay("s1");
}
}

on(rollOut, releaseOutside) {
if(_root.link<>num) {
this.gotoAndPlay(_totalframes - _currentframe);
}
}


on(release) {
if(_root.link<>num and _root.animation==1) {
_root.animation=0;
_root.link_prev=_root.link;
_parent["item" + _root.link].gotoAndPlay("s2");
_root.link=num;
_root.play();
}
}
A voir également:

1 réponse

ctophe33 Messages postés 78 Date d'inscription   Statut Membre Dernière intervention   3
 
j'ai trouve la fonction geturl mais je comprend pas trop ou la mettre .
3