hey,
thanks -G for your update on LG Flash framework :)
Iam very curious to look at one of your tutorial soon,
I need to understand the page/shell logic.
I tested Image class, it seem to me that onInit no work. I would like
create the throbber at this timing.
For progress, is there an data for number progress?
Code :
var Source:String = 'IMG_3907.JPG';
var URL:String = '
http://www.mysite.com/';
var _image: Image = new Image({basePath:URL, src:Source, width: 340,
height: 240, x: 50, y: 50});
_image.loaded(Finale);
_image.progress(Progress);
_image.init(MakeInit);
addChild(_image);
function MakeInit(e: ElementEvent) {
trace('-------------------------------');
trace('---- event Init ----');
trace('-------------------------------');
}
function Finale(e: ElementEvent) {
trace('image loaded');
}
function Progress(e: ElementEvent) {
trace('progress ...');
}