Hi,
I have a Flash navigation menu for a site I'm working on. It links to Actinic pages that have a standard HTML name fine (e.g. "about.html") but I'm having problems getting the shopping cart and checkout buttons to work properly.
I am using the normal code for the links:
Checkout
NETQUOTEVAR:NAVBCHECKOUTLINK
Cart
NETQUOTEVAR:NAVBCARTLINK
My actionScript is fine too (as far as I can tell):
Checkout
on (release) {
getURL("NETQUOTEVAR:NAVBCHECKOUTLINK");
}
Cart
on (release) {
getURL("NETQUOTEVAR:NAVBCARTLINK");
}
Any thoughts on how I can this working?
Cheers,
Jack
I have a Flash navigation menu for a site I'm working on. It links to Actinic pages that have a standard HTML name fine (e.g. "about.html") but I'm having problems getting the shopping cart and checkout buttons to work properly.
I am using the normal code for the links:
Checkout
NETQUOTEVAR:NAVBCHECKOUTLINK
Cart
NETQUOTEVAR:NAVBCARTLINK
My actionScript is fine too (as far as I can tell):
Checkout
on (release) {
getURL("NETQUOTEVAR:NAVBCHECKOUTLINK");
}
Cart
on (release) {
getURL("NETQUOTEVAR:NAVBCARTLINK");
}
Any thoughts on how I can this working?
Cheers,
Jack
Comment