A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: How to make a button in Flash work as a Form button?

  1. #1
    Goober JulieOolie's Avatar
    Join Date
    Mar 2003
    Location
    So Cal
    Posts
    129

    How to make a button in Flash work as a Form button?

    I'm trying to figure out how to use a button in flash as a form button. I have all of this HTML:

    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but22.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
    <input type="hidden" name="add" value="1">
    <input type="hidden" name="cmd" value="_cart">
    <input type="hidden" name="business" value="julie1@juliedesigns.com">
    <input type="hidden" name="item_name" value="picture">
    <input type="hidden" name="item_number" value="picture1">
    <input type="hidden" name="amount" value="10.00">
    <input type="hidden" name="no_note" value="1">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="lc" value="US">
    </form>

    And I want to be able to make button in flash be able to do what that form button would. Anyone know how to do this?
    <3 Julie

    AIM: Julie3360
    YIM: TheAtarisR0ck

    I'm always asking for help so I thought it would be appropriate to give a big THANK YOU to anyone who's ever helped me!

  2. #2
    Between Flash & Flashkit timothye's Avatar
    Join Date
    Dec 2003
    Location
    Sweden
    Posts
    1,666
    Code:
    on (release) { 
    // this variable to activate pay pal
    cmd = "_xclick";
    // account name
    business = "julie1@juliedesigns.com";
    // amount
    amount = "10.00";
    
    // to send using cgi
    getURL ("https://www.paypal.com/cgi-bin/webscr", "", "POST");
    }
    I want to learn .
    wannabe flasher [ Actionscript 2.0 ]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center