[FLASH 8] Drag & Drop sur clip
Bonjour.
Voilà je cherche à créer un clip et à le faire bouger.
le clip se crée bien, mon image s'affiche bien mais pas de drag & drop :cry:
Voici mon code AS :
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
|
// on crée un clip pour mettre le paysage
var FondPaysage:MovieClip = this.createEmptyMovieClip("FondPaysage", this.getNextHighestDepth());
FondPaysage.loadMovie("upload/assiette.jpg");
onEnterFrame=function() // Function appelée continuellement en boucle
{
// test si le fond de l'image est bien chargé.
if((FondPaysage.getBytesTotal()>0)&&(FondPaysage.getBytesTotal()==FondPaysage.getBytesLoaded()))
{
// Positions et dimensions de titi et toto
FondPaysage._x=20;
FondPaysage._y=20;
FondPaysage._width=300;
FondPaysage._height=250;
// On supprime la fonction qui boucle.
delete this.onEnterFrame;
}
}
//on place le drag & drop ici
FondPaysage.onPress = function() {
this.startDrag();
};
FondPaysage.onRelease = function() {
this.stopDrag();
}; |
voyez-vous mon erreur?
merci d'avance,;)