This is a simple change, like the "fadein" property from the book it would be nice to have a similar switch for pages after being loaded.
For now we'r hacking the AbstractElement with the following:
(...)
public function init():void {
(...)
if (!pageside.unloadAfterThumb && pageside.visible) {
if (MegaZine(megazine).settings.getSetting('fadein')) {
alpha = 0;
//*
var t:ITween = new AlphaTween(0.125, this, 1);
lec_.add(t, Event.COMPLETE, handleFadeInComplete,
LECUtil.AUTO_REMOVE);
t.start();
//*/
} else dispatchEvent(new Event(Event.COMPLETE));
}
(...)
}
(...)
Aint perfect but did the trick for now
