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

  1. #1

    Default HTTPService Status.

    I have flex project loading a PHP file that generates a XML style file. The
    problem is the XML can be a huge file, so I need a "status" bar that tells the
    user the progress of the file that is being loaded. Is this possible?

    BTW....it is just not one PHP file, it is like 3 to 4 HTTPservice request to
    multiple PHP files, so I would need to show the status for all of them
    together, but the status of just one of them is fine also.

    WebmastaDj Guest

  2. Similar Questions and Discussions

    1. HTTPService URL
      I am working on my first Flex and CF Project. The project works when I run it locally and on a remote CF server. The problem I have is with...
    2. HTTPService
      Hi , need to post multiple values to a webserver. Using POST with object as i got helped with before. Need to be able to post keys with same name:...
    3. Problem with HTTPService
      Hi: I'm new to flex. When i use a mxml to write some infomation in the form and then post it into a JSP page.It seems that no fault ,it still...
    4. HTTPService and <mx:XML>
      Hi, In Flex documentation I've read the following things: 1 Flex compiles the <mx:XML> tag into literal XML data in an Actionscript XMLNode...
    5. how to set character set to UTF-8 of <mx:HttpService>
      hi, who know how to set charset=UTF-8 of Http Service.
  3. #2

    Default Re: HTTPService Status.

    search for "Reading external XML documents" in the FB help.

    Essentially, you'll be URLLoader instead of HttpService class and listen for
    it's progress event to tell the user how much file is remaining.

    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