Passing a URL with PARAM and Embeded

Dear All,

I have trawled through many flash sites and forums and just can’t find a solution to this problem.

I have a Flash into that is embedded in an HTML file. At the end of the intro I want to do to another HTML page but I don’t want the URL embeded in the Flash file as this makes it impossible for the client to edit or change.

Is there some way I can have the URL in a PARAM within the HTML? I have looked at FlashVars but this doesn’t make much sense and I can’t see how to apply it to my particular problem.

The actionscript I have so far is:

stop();
var listener:Object = new Object();
listener.complete = function() {
getURL(“system.html”);
};
introMov.addEventListener(“complete”, listener);
stop();

This just goes to a webpage once the FLV intro has finished.

Any help would be much appreciated. I really am running out of options. If someone has an answer could they give me the ActionScript and HTML needed to complete this.

Thank you once again.