1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| class xmlVersGraph.Graph {
private var _fichier:String;
private var _cible:MovieClip;
private var _data:TraitementXML;
private var _largeur:Number;
private var _hauteur:Number;
private var _ecouteur:Object;
public function Graph() {
this._largeur = this._cible.width ? this._cible.width : Stage.width;
this._hauteur = this._cible.height ? this._cible.height : Stage.height;
this._ecouteur = new Object();
this._ecouteur.onResize = Delegate.create(this, this.reCreerGraph);
Stage.addListener(this._ecouteur);
Stage.scaleMode = "exactFit";
}
} |
Partager