I have a flash site that uses e-junkie shopping cart but cant find a way to pass the data variables selected from 2 comboboxes to my e-junkie shopping cart button in flash 8....
The code from admin in the forum on e-junkie is as follows........
*****
HTML Code..........
<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>

......BUT 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.
******* (In between the ******** has been copied from forum on e-junkie)
BUT on a normal HTML page the code with my variables would look like this...................

<form action="https://www.e-junkie.com/ecom/gb.php...=1&cl=37&ejc=2" target="ej_ejc" method="POST" accept-charset="UTF-8">
<input type="hidden" name="on0" value="Colour"/>
Colour:<br/>
<select name="os0">
<option value="Blue">Blue</option>
<option value="White">White</option>
<option value="Black">Black</option>
</select>
<br/>
<input type="hidden" name="on1" value="Size"/>
Size:<br/>
<select name="os1">
<option value="Small">Small</option>
<option value="Medium">Medium</option>
<option value="Large">Large</option>
<option value="XLarge">XLarge</option>
</select>
<br/>
<input type="image" src="http://www.e-junkie.com/ej/ej_add_to_cart.gif" border="0" alt="Add to Cart" onClick="javascript:return EJEJC_lc(this.parentNode);"/>
</form>
----------------
Can anybody understand this & if so how can i have my cart button in flash 8 pick up the data values from the 2 comboboxes i will be using?
Hope some body can help as i have had no luck on e-junkie or on google so any advise / help is much appreciated.
cheers
h