I was wanting to click on the banner1.swf, which is redirected to the clicktag variable in the embed tag, then the clickheader variable would get passed to the php file where it would tell the php file to redirect the browser to http://www.somewebsite.com. in my swf file I have:
on (release) {
getURL(clicktag,"_blank);
}
this uses the clicktag variable in the html embed tag (which seems to work, b/c when I change the Location: in the php to a http:// address & not a variable, it all works fine). I have tried in the embed tag to pass the variable using
<embed src="swfs/banner1.swf?clicktag=forms/tracking/bannertrace.php&clickheader=http://www.somewebsite.com">
&
<embed src="swfs/banner1.swf?clicktag=forms/tracking/bannertrace.php?clickheader=http://www.somewebsite.com">
but the clicktag variable works but the php file never recieves the clickheader variable. I have tried to echo the variable and all of the above suggestions but the php variable $clickURL just stays blank. Is it not possible to place two variables in an embed tag as above, or is that not the problem?
thanks for all your help