A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: refreshing

  1. #1
    Member
    Join Date
    Nov 2003
    Location
    florida
    Posts
    68

    refreshing

    Hey I was just wondering what the code would be to reset a flash forum.
    matthew thomas

  2. #2
    Registered User nunomira's Avatar
    Join Date
    May 2002
    Location
    portugal
    Posts
    7,003
    hi,

    Could it be a flash form instead of a flash forum?

    Unlike in html, there isn't a predefined way to reset a form, you need to write your code.

    If your input text fields are blank, you just assign the empty string to the text property:
    code:

    myTxt1.text = "";
    myTxt2.text = "";
    // and so on


    If they have initial values, assign the initial value:
    code:

    myTxt1.text = initValue1;
    myTxt2.text = initValue2;
    // and so on


  3. #3
    Member
    Join Date
    Nov 2003
    Location
    florida
    Posts
    68
    K thx.
    matthew thomas

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