Help with data components; get data into variable

Ask a Question related to Macromedia Flash Data Integration, Design and Development.

  1. #1

    Default Help with data components; get data into variable

    How can you get the data from a data holder, dataset or connector and pass it
    into a variable? My recordset basically contains one row, and I just want to
    get the data into a variable.

    if my dataset is named images_ds, and the field name I want is image1; I have
    tried myVar = images_ds.items[0].IMAGE1; and myVar = images_ds.index[0].IMAGE1;
    I am missing something and I can't figure it out. A little help please?

    drliebs Guest

  2. Similar Questions and Discussions

    1. Updating components when data changes
      I am having trouble getting a set of components to update when data is modified by another set of components. A...
    2. Data Components
      My trial will be up in 2 weeks and I saw the checklist comparing the Basic with Professional versions. 1. Data Components (available in Flash 8...
    3. Data Components with XML
      I have the following XML: shops.php (dynamic generated xml from mysql) <shops> <shop name="shop1"> <items> <item name="item1"/> <item...
    4. COM components mixing data
      I have an ASP application which calls a custom COM object. This object parses a document template and fills it with data from database. Sometimes...
    5. Working with data components
      Hi, is there anyone who know of tutorials or examples of how to use the Data Components in Macromedia Flash 2004 Professional. What I am looking...
  3. #2

    Default Re: Help with data components; get data into variable

    Try:
    myVariable = myDataSet_ds.items[selectedIndex].nameOfField

    See if that works!

    Cheers,
    Geoff
    GmR Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139