Publishers of technology books, eBooks, and videos for creative people

Home > Articles > Design > Adobe Creative Suite

This chapter is from the book

This chapter is from the book

Using the LoadVars Object to Send Data

Now that you have an idea of what data is expected in the database, how do you get it there from the Flash movie? You can use the LoadVars object, new to Flash MX, to accomplish all of your data transfers.

  1. If you haven't already, open cardsender.fla. Click on the frame labeled send, which is where information is collected and sent to an ASP page to be written to the database.

  2. Select the Send button and open the Actions panel. In addition to some error-checking code, which will be discussed in a bit, you'll see the code shown in the figure.

  3. Figure 10.7. Creating a new LoadVars object.

    This creates a new LoadVars object, whose function is to pass data to and receive data from your ASP scripts. Variables to be passed to the script are passed as properties of the object (toName, toEmail, fromName, fromEmail, message, and cardID).

NOTE

You'll notice that the same names are used for variables, lvo properties, and Access field names. This was done for consistency but is not necessary. The variable names passed to ASP will be whatever property names are assigned to lvo, and they might be stored in the database with completely different field names if desired.

After the LoadVars object lvo has been created, it can be used for multiple transfers of data. Refer to the figure to see which parts of cardsender fill in which properties of lvo and which properties are set by the ASP scripts.

Figure 10.8. Properties of the LoadVars object, lvo, are used to pass variable values back and forth between the Flash movie and ASP scripts. Arrows indicate properties (variables) being passed to ASP scripts.

Because the variables passed to and from the LoadVars object are just properties of the object, they remain in place until deleted. This means that once they have been set as properties (as in the previous code), they can be sent to any number of ASP scripts simply by using any of the following data-transfer methods available with the LoadVars object (here called lvo):

  • send. Properties of lvo are sent to ASP (or another server-side script) as variables via either HTTP GET or HTTP POST, as specified in the send parameters.

  • sendAndLoad. Properties of lvo are sent to ASP and variables are sent from ASP (via response.write statements or other server-side print statements) and are received as additional properties of lvo.

  • load. Variables sent from ASP (via response.write) are received as properties of lvo.

In the final version of the movie, you use the sendAndLoad method to transfer data, as shown in this data-flow diagram. When debugging a program, however, you always start with a simple send (with all response.write going to the browser window instead of back to Flash) to make sure variables are being received by the ASP script as you expect.

Figure 10.9. Displaying the content of your query with variables passed from Macromedia Flash in the browser window.

For any application in which Flash and the server are sending data back and forth, it's a good idea to dump the data being sent to a browser window to see if it's being sent correctly before trying to do anything with it in your server-side script.

  1. Using Homesite or another editor, open writetodb.asp, the file that writes a card record to the database and sends back the msgID associated with that card.

  2. Save it as testwritetodb.asp. Delete all lines except lines 5 through 7, and uncomment line 7. You should end up with the code as shown at right:

  3. <%
     insertStr = "INSERT INTO cardInfo (fromName, fromEmail, toName, 
    toEmail, message, cardID) VALUES ('" & request.querystring("fromName") & 
    "', '" & request.querystring("fromEmail") & "', '" & 
    request.querystring("toName") & "', '" & request.querystring("toEmail") 
    & "', '" & request.querystring("message") & "', '" & 
    request.querystring("cardID") & "')"
    
     response.Write insertStr
    %>

    Code Listing 6: If Sending your query to the browser before using it enables you to first make sure your variables are being passed correctly from Flash to the ASP file.

  4. Save testwritetodb.asp.

  5. This causes your insert string to be written to the browser. You'll need to change cardsender temporarily to call this file.

  6. Open cardsender.fla. Click frame 2, select the Send button, and open the Actions panel. Change the line lvo.sendAndLoad("writetodb.asp", lvo, "GET"); to the code shown:

  7. lvo.send("testwritetodb.asp", lvo, "GET");
  8. Save the movie as testcardsender.fla and publish it to produce testcardsender.swf and testcardsender.html. Open the .html file in a browser, with the URL http://localhost/ <directory-within-wwwroot>/ testcardsender.html. Click Send on the opening page, fill out the form, and click Send on the form page.

  9. You should see a new browser window open with a query that includes the values you typed in and sent to the ASP.

    Figure 10.10. Displaying the return string in the browser.

    After you're sure the variables are being sent correctly (either via GET/request.querystring as used here or via POST/request.form), it's a good idea to make sure the variables are also being returned as you expect. You can do this by displaying your output string to the browser, using the send command (which sends data only one way—out of Flash).When the correct output string is displayed in the browser, you can then use the more powerful sendAndLoad, which returns the data "invisibly" to Flash.

  10. To make this test, change the line in Step 3 to:

  11. lvo.send("writetodb.asp", lvo, "GET");

    Code Listing 7: Sending the ASP output to the browser, using the send method, enables you to ensure that the return string is being generated correctly in the ASP file. You can then substitute sendAndLoad to have the output returned to Macromedia Flash.

  12. Save and publish testcardsender.fla. If you open testcardsender.html in the browser, as above, you should see a new window open with output, as well as a new entry in cardInfo in greetings.mdb.

  13. fieldError = 0;
     requiredFields = ["fromName", "fromEmail", "toEmail"];
     for (i=0; i<requiredFields.length; i++) {
      if (this[requiredFields[i]] == "" || 
        this[requiredFields[i]] == null) {
        fieldError++;
      }
     }

    Code Listing 8: Code on the Send button (in the send frame) enables you to make sure entries have been made for sender name and email and recipient email before attempting to send.

  14. If not, you'll need to fix whatever is causing the problem. This could be an incorrect DSN entry, the location of the .mdb file, or the properties of the .mdb file. A common problem, for example, is failing to check Write Allowed in the Everyone setting of the .mdb file's properties. This produces an error message stating that "Operation must use an updateable query."

In this project, you check for errors (blank required fields) from within the code on the Send button in the frame labeled send before sending any data to ASP. More complex error checking (such as string manipulations that involve checking for a valid email address) might be better handled on the server side, with an appropriate code being sent back to Flash to indicate any errors.

Peachpit Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from Peachpit and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about Peachpit products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites; develop new products and services; conduct educational research; and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email ask@peachpit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by Adobe Press. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.peachpit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020