hmm this is very weird
 
i made this small site on a fly, for my sister.
 
and i have this script which displace a tool tip like thing when the mouse hover over it
 
function ShowTip(txt) {
 this.attachMovie("tip_mc", "btnTip_mc", this);
 btnTip_mc.tip_txt.text = txt;
 btnTip_mc.tip_txt._width = btnTip_mc.tip_txt.textWidth;
 btnTip_mc._width = btnTip_mc.tip_txt.textWidth+4;
 this.btnTip_mc._visible = true;
 this.btnTip_mc._x = (_root._xmouse+10);
 this.btnTip_mc._y = (_root._ymouse-15);
}
 
on the btns i have
 
on (rollOver) {
 this. {
  ShowTip("Home");
 };
}
on (rollOut) {
 this.> this.btnTip_mc._visible = false;
}
 
some how, evr since ive done this, NONE OF MY TWEEN SEEMS TO PLAY, not on the root or in any MC in the whole movie
 
when i hover over the button it starts playing. it as in the root time line starts to play,
so i took all the code out of the on(rollover) event and had
 
on (rollOver) {
 //
 };
 
still the same only when i hover over it plays???
 
anything like this happend to anyone before?
 
Hesh
---
You are currently subscribed to fugli as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia
http://www.mxdu.com/ + 24-25 February, 2004

Reply via email to