
AHFX Actionscript Home
Basic Actionscript
Intermediate Actionscript
Advanced Actionscript
About AHFX
Contact AHFX
Great Actionscript Links
|
 |
Actionscript 2.0 Add to Cart Script
Now all we have to do is create some buttons to add our new products to our shopping cart. Create a simple button and add the following actionscript to the button:
on (press){
import com.ahfx.Product;
var my1Product = new Product();
my1Product.setQuantity(1);
my1Product.setPrice(22.99);
my1Product.setDesc("Donate to AHFX");
_root.shop_cart.addElement(my1Product);
delete my1Product;
_root.displayCart();
}
|
You have successfully added a new product to your cart.
Return to AHFX Home Page
|
 |

Featured Tutorials
|