Hey All!
Happy Hollidays! Was wondering if I might ask for a little assistance?
I just bought a Tool Tip component.
I have created a calendar and when I test it…everything works fine. I am trying to load a calendar.swf movie into another movie. I can get it to load in no problem but then the tool tips don’t work. Here’s the closest I have gotten with the AS. I know it has to do with the path…but i just can’t figure it out. Any ideas?
_root.calendarmovie.button1.onRollOver = function (){ _root.calendarmovie.tip1.content = “testing”
_root.calendarmovie.tip1.type = “text”;
_root.calendarmovie.tip1.showTooltip();
}
_root.calendarmovie.button1.onRollOut = function (){
_root.calendarmovie.tip1.hideTooltip();
}
note…calendarmovie is the name of the container holding the calendar.swf in the root movie.
Any help would be greatly appreciated!