bonsoir
petit problème , lorsque je fais la vérication demon code il me met ces messages d'erreurs que je comprend pas :
Code :
- **Error** Scene=Scene 1, layer=terre, frame=1:Line 1: Mouse events are permitted only for button instances
- on (press) {
- **Error** Scene=Scene 1, layer=terre, frame=1:Line 8: ')' expected
- angle=(Math.atan(distY/distX)/(Math.PI/180)-90;
- **Error** Scene=Scene 1, layer=terre, frame=1:Line 15: Mouse events are permitted only for button instances
- on (release) {
- **Error** Scene=Scene 1, layer=terre, frame=1:Line 18: Mouse events are permitted only for button instances
- on (releaseOutside) {
- Total ActionScript Errors: 4 Reported Errors: 4
|
je ne pense pas que ce soit en rapport avec mon code mais je le met quand même :
Code :
- on (press) {
- var distX:Number;
- var distY:Number;
- var angle:Number;
- this.onEnterFrame=function() {
- distX=_root._xmouse-this._x;
- distY=_root._ymouse-this._y;
- angle=(Math.atan(distY/distX)/(Math.PI/180)-90;
- if (distX>0) angle+=180;
- this.canon._rotation=angle;
- if (this.canon._rotation<=0) this.canon._rotation=0.5;
- if (this.canon._rotation>=90) this.canon._rotation=89.5;
- }
- }
- on (release) {
- delete this.OnEnterFrame;
- }
- on (releaseOutside) {
- delete this.OnEnterFrame;
- }
|
ça doit être tout bête mais aidez moi s'il vous plaît
Message édité par Profil supprimé le 08-06-2007 à 18:42:08