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
| import flash.external.*; // use to ExternalInterface
// Conscrution d'un champ de texte
this.createTextField("label", this.getNextHighestDepth(), 0, 0, 150, 20);
this.label.border=true;
label.text = "Hello World";
// Construction d'un bouton
this.createEmptyMovieClip("my_btn", this.getNextHighestDepth());
this.my_btn.beginFill(0xFF0000);
this.my_btn.moveTo(0, 0);
this.my_btn.lineTo(50, 0);
this.my_btn.lineTo(50, 21);
this.my_btn.lineTo(0, 21);
this.my_btn.lineTo(0, 0);
this.my_btn.endFill();
this.my_btn._x=151;
this.my_btn._y=0;
my_btn.onRelease=function()
{
var my_str:String;
my_str=String(ExternalInterface.call("my_function", "It works"));
this._parent.label.text=my_str;
} |
Partager