[flexcoders] Error 2032 - Stream error

2007-11-30 Thread msabljic
Hello flexcoders, I am having a problem where my Flex application dipplays this error: faultCode:Server.Error.Request faultString:'HTTP request error' faultDetail:'Error: [IOErrorEvent type=ioError bubbles=false cancelable=false eventPhase=2 text=Error #2032: Stream Error.[/CODE] Error is

[flexcoders] Drag and drop question

2007-11-11 Thread msabljic
Hi, I am trying to drag an UIComponent instance over an Image object and drag and drop work fine but i am having problem with dragProxy image. I would like to use my original drag source UIComponent as dragProxy image but if i do the following: public function

[flexcoders] In panic - Flex Builder 3 Beta 2 sandbox violation error

2007-10-31 Thread msabljic
Hello, Until today, i've been using FB 3 Beta 1 but now i am forced to use Beta 2 since Beta 1 release expired today. I was working on the project which consists of HorizontalList in which i load images from remore url. Today i opened project in Flex 3 Beta 2 and got following error:

[flexcoders] Stopping ProgressBar control

2007-10-30 Thread msabljic
Hello flexcoders, I am using ProgressBar control (inderterminate type) for monitoring my upload and after my upload completes i would like to keep ProgressBar control on screen but just to stop it's continous animation but i can't find how to do that? thanks in advance -- Best regards,

[flexcoders] Problem with loading multiple external xml files

2007-10-25 Thread msabljic
I have an array named 'source' which consists of external xml file names whose content i am trying to load into another array called 'content'. I tried with following: for (i=0; isource.length; i++){ XML_URL = http://localhost/temp/; + source[i]; myXMLURL = new

[flexcoders] Detecting browser window close event?

2007-10-23 Thread msabljic
Hi to everyone, Is it possible to detect in Flex application browser window close event so that an action can be started when user closes Flex application, does anyone know how to do that if it's possible in the first place? The reason why i am asking this is because i have a multiuser Flex

[flexcoders] File upload in Mozilla problem

2007-10-03 Thread msabljic
Hello flexcoders, Hi, I am using Flex with server side PHP script to upload a file from Flex to server and everything works fine when i use Internet Explorer but in Firefox i get the following error: Error #2038: File I/O Error. I googled around and found out that there is a problem with

[flexcoders] Help with sendind XML object from Flex to php

2007-09-27 Thread msabljic
Hello, I have an XML object i need to send from Flex to php so that php can write it to a file. I am trying to send it using HTTPService: mx:HTTPService id=sendXML url=http://localhost/php/getXML.php; contentType=application/xml useProxy=false method=POST /mx:HTTPService And my getXML.php