Interpolation avec AS2 et AS3

Résolu/Fermé
mat18102007 Messages postés 3 Date d'inscription mercredi 8 avril 2009 Statut Membre Dernière intervention 14 avril 2009 - 8 avril 2009 à 14:42
mat18102007 Messages postés 3 Date d'inscription mercredi 8 avril 2009 Statut Membre Dernière intervention 14 avril 2009 - 9 avril 2009 à 16:14
Bonjour,
J'ai un soucis avec mon fichier .fla.
Lorsque je fais une interpolation classique sur des clips, celle-ci ne se fait pas lorsque j'importe en .swf lorsque je suis en AS2, mais le codage "tweens" que j'ai mis sur mes clips fonctionnent.
En revanche, c'est l'inverse en AS3: l'interpolation fonctionne mais pas les "tweens"...

Si quelqu'un pouvait m'aider...

Merci

Voici le code tweens au début: #include "mc_tween2.as";
Puis à la fin: this.Stop(); (pour arrêter l'animation)
et sur chaque clip, ce code:
onClipEvent(load)
{
this._alpha = 100;
this.xO = this._x;
//this.yO = this._y;
this.heightO = this._height;
this.widthO = this._width;
this.onRollOver = function() {
this.alphaTo (100, 0.5, "linear");
this.tween("_x", this.xO -10, 0.8);
//this.tween("_y", this.yO +10, 0.8);
this.tween("_height", this.heightO + 20);
this.tween("_width", this.widthO + 20);
}
this.onRollOut = function() {
this.alphaTo (100, 0.5, "linear");
this.tween("_x", this.xO, 0.5);
this.tween("_y", this.yO , 0.6);
this.tween("_height", this.heightO, 0.5);
this.tween("_width", this.widthO, 0.5);
}
this.onRelease = function() {
getURL("index.php?=flash",_parent);
}
}

1 réponse

mat18102007 Messages postés 3 Date d'inscription mercredi 8 avril 2009 Statut Membre Dernière intervention 14 avril 2009
9 avril 2009 à 16:14
c'est bon, j'ai résolu mon problème
0