[RESOLVED] can anyone see what may be wrong here?
Hi,
I thought I was becoming confident with loading or attaching clips and depths, but just today I'm stuck again trying to get this to work. The attached movies (the ButiIcon) were originally small so I increased their size with a larger background thinking that was what caused the movies not to respond. I am referencing the ButiIcon right, am I not?
Code:
HobbyTextButton6.onRollOver = function():Void
{
HobbyTextButton6.attachMovie("ButiIcon_mc","ButiIcon",HobbyTextButton6.ButiIcon.getNextHighestDepth());
HobbyTextButton6.ButiIcon._y = -2;
new Tween(HobbyTextButton6.ButiIcon, "_alpha", None.easeNone, 0, 100, 1, true);
new Tween(HobbyTextButton6.ButiIcon, "_x", Bounce.easeOut, 74, 98, 2, true);
};
HobbyTextButton6.ButiIcon.onRelease = function():Void
{
getURL("http://www.butinet.org", "_blank");
trace("Clicked");
};