Hi everyone!
I’m trying to display dynamicaly some text coming from a text file. It’s working but the tooltip I’m trying to display the text in keeps flashing when I move the mouse over it and also the tweening effect I’m using to display the dynamic text container doesn’t work anymore:
landingPage.butBook.onRollOver = function(){ //BOOK BUTTON
_root.attachMovie(“popupBook”,“popupBook1”,5);
popupBook1._xscale=0;
popupBook1._yscale=0;
popupBook1._x=480;
popupBook1._y=325;
popupBook1.scaleTo(100,0.5,"easeOutBack",0);
_root.popupBook1.createTextField("bookPop",6,0,0,200,300);
loadText = new LoadVars();
loadText.load("text/mainPageToolTip.txt");
loadText.onLoad = function(success) {
if (success) {
_root.popupBook1.bookPop.html = true;
_root.popupBook1.bookPop.htmlText = this.bookPopContent;
}
};
};
landingPage.butBook.onRollOut = function(){
unloadMovie(“popupBook1”);
};
here is the example: http://www.graphikeld.com/current/maintest.swf
If someone have an idea that would really help.
Thank you.