Hi there,
I have recently built a small full-flash website in CS3/AS2, but I have been pulling my hair out trying to figure out why some, but not all of my getURL functions are not working.
Everything works absolutely perfect when using FireFox 3 or Safari 3 on my Mac, but only some of the functions work when using IE6/7 or FireFox 3 on Windows, although the depth is exactly the same and the code only differs with regards to what is called, for example, I have tried all of the following:
var myURL:String = "";
textHolder.staticTextHolder.bbText.bbWebLink.onRelease = function ()
{
myURL = "http://www.bestbehavior.dk";
getURL("javascript:openNewWindow('" + String(myURL) + "');");
}
textHolder.staticTextHolder.lwText.lwWebLink.onRelease = function ()
{
getURL ("http://www.lundgren-windinge.com", "_self");
}
textHolder.staticTextHolder.ndText.ndWebLink.onRelease = function ()
{
getURL ("http://www.nicolademain.co.uk", "_blank");
}
none of which seem to work at all in windows, although strangely enough, the same getURL function called at the same depth DOES work when used with ‘mailto’, for example:
textHolder.staticTextHolder.contactUsText.contactUsEmailBtn2.onRelease = function ()
{
getURL ("mailto:mark@maverikagency.com", "_self");
};
Any ideas guys, I’m at a loss here
Thanks in advance