AS3 Variable from HTTP service

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default AS3 Variable from HTTP service

    Here is what I want to do. I need to know how to take an AS3 script, call a
    PHP file which will return a single line of values separated by commas. Now,
    for each entry (value between the commas) needs to be assigned to a different
    variable in AS3 so I can use the variables to make comparisons.

    Any Ideas on how to do this?

    WebmastaDj Guest

  2. Similar Questions and Discussions

    1. HTTP Service give me error.......
      Dear Friends, I have posted my query on flex builder, but now i think that this is the right place to post it.... I develop a smaple login...
    2. HTTP Service not doing what I want.
      I've used HTTP service before, but why isn't it working now? The code I'm testing is the one found in the Flex Samples Explorer. It feels like...
    3. help on HTTP service
      i want create a page which takes the values like "LOGIN ID" and "PASSWORD" to the another JSP page( this pages validates the loginid from my...
    4. How to specify HTTP-GET for web service client?
      I need to send the web service requests using HTTP-GET as URL requests. How do I do that? Thanks!
    5. Web Service- Basic HTTP Authentication
      Hi, Does anyone have a sample of Basic Http Authentication for a Web Service. Any help appreciated!! Thanks Ted
  3. #2

    Default Re: AS3 Variable from HTTP service

    using String.split() would return you an array and you can make any comparisons with array elements just like they were variables.
    atta707 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