thanks, i think i am almost there. I have got the paypal button/movie to send
you to the paypal purchase screen, however if i change the location from uk to
rest of world it doesn't update the price when you are taken to paypal. I have
obviously missed something. My flash file is under 400kb, could i send this to
you so you could see t first hand? I'll list the code below just for reference.
In the timeline i have.. // Set the initial price for when the movie loads
setPrice(); function setPrice() { // Get the price (based on location)
var newPrice = location.getValue(); // Set visible price on page thePrice
= '?' + location.getValue(); } //assigns the value of a variable to the label
that was selected in a combobox function change(evt){ _global.newPrice =
evt.target.selectedItem.label; trace(evt.target.selectedItem.label); }
newPrice.addEventListener('change', this); For the button I have..
on(release){ if(newPrice =
'4'){getURL('
https://www.paypal.com/xclick/business=info%40brownhouserecords.com
&undefined_quantity=1&item_name=Some+day+we+will+part+forever+%28EP%29&a
mp;item_number=BHR00001&amount=4.00&page_style=PayPal&no_shipping=2&
amp;return=http%3A//www.oosterdok.com&cancel_return=http%3A//www.oosterdok.c
om&no_note=1&currency_code=GBP'); }else if(newPrice =
'5'){getURL('
https://www.paypal.com/xclick/business=info%40brownhouserecords.com
&undefined_quantity=1&item_name=Some+day+we+will+part+forever+%28EP%29&a
mp;item_number=BHR00001&amount=5.00&page_style=PayPal&no_shipping=2&
amp;return=http%3A//www.oosterdok.com&cancel_return=http%3A//www.oosterdok.c
om&no_note=1&currency_code=GBP'); } } the combobox is called
'location' and the dynamic text that displays the price has the variable
'thePrice'. thanks again...