I didn't see the "append=". Let me try again...

on (release) {
 var1 = "append=this_to_be_appended_to_URL";
  getURL(clickTag+"?"+var1, "_blank");
 trace (var1);
}



On 2/13/07, Mick G <[EMAIL PROTECTED]> wrote:

You're probably better off appending them manually so you can defined
exactly which vars to send...

on (release) {
  var1 = "append=this_to_be_appended_to_URL";
  getURL(clickTag+var1, "_blank", "GET");
  trace (var1);
}

if you need the var names as part of the URL string you may need...
on (release) {
  var1 = "append=this_to_be_appended_to_URL";
   getURL(clickTag+"?var1="+var1, "_blank");
  trace (var1);
}



On 2/13/07, Toby Morey <[EMAIL PROTECTED]> wrote:
>
> Hey there
>
> Does anyone know how to append variables to an .aspx URL via a clickTag
> button on a banner ad?
> I haven't a clue (just a designer pretending to be a coder ;)
>
> At the moment the script I have on the button is:
>
> on (release) {
>     var1 = "append=this_to_be_appended_to_URL";
>     getURL(clickTag, "_blank", "GET");
>     trace (var1);
>     }
>
> And then of course I'm letting whoever's hosting the banner ad know what
> the
> base "default.aspx" URL is...
>
> cheers
> T
> _______________________________________________
> [email protected]
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>


_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to