Hello,

I'm trying to call a Javascript statement via Flash but it will not work the
way it normally does when I call it in plain HTML.

I'm trying to call location.replace ('url') to replace the previous page
with another one (I do not want this first page to be in the browser's
history).

If I create a link in plain HTML that calls location.replace ('urlHere') it
works. However, in Flash, if I say:

getURL ("Javascript: location.replace ('urlHere');");

it will go to the new page but fails to remove the previous page from the
browser's history. I've even tried calling a JS function inside Flash ( eg:
getURL ("Javascript: replaceMe();"); ) that then calls location.replace
('urlHere'), but it wasn't any better.

Any ideas?

Thanks,
Ryan