Hello,
Brand new to actionscipt...some javascript...etc.
I need to call a web page that will load the appropriate .pdf when the page is opened. I need to do this, because I am running into focus issues and the page will have javascript to focus on itself.
Now...I got this code from a post back in '04...but it is not working.
flash -
html -
Now...I have also tried getURL ("testDave.htm?google.com") but my alerts are always blank...which then means the page is not going where it is supposed to.
Does anyone have a simple answer to what I am messin' up?
Thanks
"Credit belongs to the man who is actually in the arena - T.Roosevelt
Brand new to actionscipt...some javascript...etc.
I need to call a web page that will load the appropriate .pdf when the page is opened. I need to do this, because I am running into focus issues and the page will have javascript to focus on itself.
Now...I got this code from a post back in '04...but it is not working.
flash -
Code:
on (release) {
var pdfpage = "google.com"
getURL("testDave.htm", "_blank", "GET");
}
Code:
<script>
var redirect = location.search;
alert (redirect)
redirect = ("[URL unfurl="true"]http://www."[/URL] + redirect.substring(1, redirect.length));
location.replace( redirect );
</script>
Now...I have also tried getURL ("testDave.htm?google.com") but my alerts are always blank...which then means the page is not going where it is supposed to.
Does anyone have a simple answer to what I am messin' up?
Thanks
"Credit belongs to the man who is actually in the arena - T.Roosevelt