30-09-2008, 01:53 PM
(Modification du message : 04-10-2008, 08:57 PM par Sephi-Chan.)
Bonjour à tous,
Voilà j'ai un petit problème avec mon package(externe) fichier .as.
Voici le code du package :
Voilà j'ai un petit problème avec mon package(externe) fichier .as.
Voici le code du package :
Code PHP :
<?php
package
{
import flash.text.TextField ;
import flash.display.Sprite ;
class MainApplication extends Sprite
{
// ----o Constructor
public function MainApplication()
{
var tf:TextField = new TextField() ;
tf.x = 10 ;
tf.y = 10 ;
tf.width = 120 ;
tf.height = 20 ;
tf.text = "Hello World" ;
addChild ( tf ) ;
}
}
Et mon code main :
Code PHP :
<?php
var info:Object = this.loaderInfo.parameters;
var var2:String = info["var2"];