Hi,
I would appreciate it if anybody could help me with this.
What I'm trying to do is to make a 'Add to cart' button BUT for a product with variations.
In other words - how to make a dropdown menu in flash and point it right.
As I have understood it, there are plenty of ways to achieve this, but I cant get it right.
So if anyone could help me with the actionscript or even show an example code it would be great.
Thanks
The text below is from the help-section on how to make a simple 'Add to cart' button if that is any help.
----------------------------------------------------------------------
----------------------
Add to Cart code you get from E-junkie admin:
<a href="
https://www.e-junkie.com/ecom/gb.php?c=cart&i=1&cl=37&ejc=2" target="ej_ejc" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this);"><img src="
https://www.e-junkie.com/ej/ej_add_to_cart.gif" border="0"></a>
...when used in Flash should be written like:
on (release) {
getURL("javascript:EJEJC_lc('
https://www.e-junkie.com/ecom/gb.php?c=cart&i=1&cl=37&ejc=2')");
}
NOTE: If your E-junkie button code contains dropdown menus (only relevant when your products have Variants), then you will need to create dropdowns in Flash using Flash's standard components, and your button will need to pick the menu values and append those as parameters to the URL above.