Yea, I figured that part out… I just did that to demonstrate the problem better.
Hi,
Did you know that in your function here…
onEnterFrame = function() {
if (_root._currentframe == “125” && checkIfClicked == 1) {
trace(“hello?”);
getURL(url, “_self”);
}
if (_global.gradePV != "") {
obj = _global.gradePV;
this[obj].enabled = false;
new Color(obj).setRGB(0x880000);
for (i=0; i<5; i++) {
this[obj]._xscale = 150;
this[obj]._yscale = 150;
}
}
}
the url in the call to getURL is an undefined variable?
If you put a trace statement there that puts out url it says undefined. You need a value for a web page or whatever to open. When you rollover a letter you pass a url into a different function but it is never stored anywhere that the above function can access it.
Hope this helps,
Liz