ClickTag issues!
I'm getting an error thrown...
TypeError: Error #1009: Cannot access a property or method of a null object reference.
It's dealing with enter_mc .. What could be the problem here?
import com.greensock.*;
import flash.events.*;
enter_mc.addEventListener(MouseEvent.CLICK, goThere);
function goThere(e:MouseEvent)
{
if (root.loaderInfo.parameters.clicktag.substr(0,5)=="http:")
{
navigateToURL(new URLRequest(root.loaderInfo.parameters.clicktag), "_blank");
trace("clicked")
}
}
