1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
function FFlippingBookClass() {
...
this._cache = new FFlippingBookCache(this._broker, this.usePreloader, this.cachePages, this.loadOnDemand, this.pageBack);
if (this.extXML != "") {
//trace(this.extXML);
this._cache.loadExternalXML(this.extXML);
} else {
my_lv = new LoadVars();
my_lv.onLoad = function(success) {
if(success){
trace("livret.php loaded");
trace(my_lv.titreVar);
this._cache.loadExternalXML(my_lv.titreVar);
}
else{
trace("livret.php loading problem");
}
}
my_lv.load("http://localhost/labels/livret.php");
}
} |