flash - php - combobox

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

  1. #1

    Default flash - php - combobox

    Hi

    I want to fill my combobox component with data that I get from a php script.

    This is how I get data from php
    &city1=ABBENBROEK&&city2=AFFERDEN&&city3=ALBERGEN& &city4=ALKMAAR&.......

    How can I populate my combox?
    I want to use loadvars.....


    Tx
    Tom

    bossche001 Guest

  2. Similar Questions and Discussions

    1. ComboBox bound to a ComboBox: doesn't work until .changeevent
      Hi, i have two ComboBoxes getting DataProvider from an XMl doc. The XML nodes look like this: <activity label="aerobics"> <level label="low...
    2. ComboBox Selected Flash Form
      Greetings~ I wasn't sure where to post this question, so let me know if it needs to go elsewhere. I have a flash form that I am using remoting...
    3. Loading a Flash ComboBox from a CF WebService
      I have a table in my database that stores Institution Types. The records are basically made up of two columns; a unique ID and a Name, which I want...
    4. flash 2004 pro combobox (navigate to through forms)
      I am designing a flash 2004 pro form application. the structure is built as follow: _Level0 nested => Base nested => resume (form where a...
    5. Combobox Question (Flash MX)
      what's your AS look like... are you targeting the correct frame name? jaybie "news.freeler.nl" <jtdes@freeler.nl> wrote in message...
  3. #2

    Default Re: flash - php - combobox

    Ok, already found it....

    For those who are also searhing for ans answer...

    var city_lv:LoadVars;
    city_lv = new LoadVars();
    city_lv.onLoad = function(success:Boolean) {
    if (success) {
    trace("succes");
    iList = new Array();

    for (i=1; i<285; i++) {
    myItem = new Object();

    myItem.data = i;
    myItem.label = this["city"+i];
    iList.push(myItem);
    trace(myItem.label);
    }
    stad_cb.setDataProvider(iList);
    } else {
    trace("NOsucces");
    }
    };

    bossche001 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