[flexcoders] HTTPService DELETE/PUT automatically got changed to GET??

2011-08-19 Thread handitan
Hi all, I just would like to get a confirmation. Right now, I have to use 3rd party REST APIs in our Flex app. A bunch of the REST APIs are using DELETE and PUT method. As the title said, they got changed automatically to GET. And from what I gather from this forum somebody said this in 2008: "It

[flexcoders] Re: html form issue in adobe air?

2011-08-19 Thread valdhor
Rather than embed an HTML page, create a Flex form to do the File upload --- In flexcoders@yahoogroups.com, "markflex2007" wrote: > > this is same question like this. no answer now. > > http://stackoverflow.com/questions/886380/html-input-type-file-in-adobe-air-does-not-present-file-browser > >

[flexcoders] Re: Catching/Trapping Error #3003: File or directory does not exist

2011-08-19 Thread sdl1326
Thanks for the reply. I tried the following listeners, all to no avail. File.desktopDirectory.addEventListener(IOErrorEvent.STANDARD_ERROR_IO_ER\ ROR,onSourceFileIoError) File.desktopDirectory.addEventListener(IOErrorEvent.NETWORK_ERROR,onSour\ ceFileIoError) File.desktopDirectory.addEventListener(

[flexcoders] Re: Flex 4 & CSS

2011-08-19 Thread valdhor
Instead of using mx:Canvas try using s:BorderContainer. http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"> .bgImage { color: #DEDACF; contentBackgroundColor: #DEDACF;

[flexcoders] Re: Catching/Trapping Error #3003: File or directory does not exist

2011-08-19 Thread valdhor
Clasping at straws... Maybe it's not an IO_ERROR type of IOErrorEvent so it's not being handled. You could try adding listeners for all types of IOErrorEvent. --- In flexcoders@yahoogroups.com, "sdl1326" wrote: > > > I am getting the following error: > Error #2044: Unhandled IOErrorEvent:. tex

Re: [flexcoders] Catching/Trapping Error #3003: File or directory does not exist

2011-08-19 Thread Alex Harui
Try attaching a listener to File.desktopDirectory On 8/19/11 8:40 AM, "sdl1326" wrote: I am getting the following error: Error #2044: Unhandled IOErrorEvent:. text=Error #3003: File or directory does not exist How can I trap this error? I have tried using a Try/Catch as well as a listene

[flexcoders] Re: Air app w/Bluetooth + UI / App Store for Arduino devices

2011-08-19 Thread valdhor
Way cool. I am interested in using Zigbee sensors in ultra low power applications (ie. battery operated for three months or more). Are there any plans for this type of development? --- In flexcoders@yahoogroups.com, Davis Ford wrote: > > Hi flexcoders, > > I wanted to drop a note to tell you

[flexcoders] Re: How to communicate 2 computers using Air Application

2011-08-19 Thread valdhor
Write a socket server and client for both and exchange data through sockets. Or use Merapi as a middle layer. --- In flexcoders@yahoogroups.com, Wemerson Couto Guimarães wrote: > > Hello guys, > > There are a way of communicate 2 computers (or more) on the same network > (LAN) using an Air app

[flexcoders] Re: HTTPService e4x Error #1095: XML parser failure: Unterminated attribute

2011-08-19 Thread valdhor
What does the XML look like? Note that you can use Charles to see exactly what is sent to Flex. --- In flexcoders@yahoogroups.com, "isa_loyer" wrote: > > Dear Flexer, > > I'd like to load data from my database with an httpservice and result on e4x > format. > > If on php side, I add only 12 r

[flexcoders] Re: Could AIR create an automation app?

2011-08-19 Thread valdhor
You can use Merapi (http://code.google.com/p/merapi/) as a bridge between AIR and Java. Java has full hooks into the host OS so you should be able to do everything you want (As well as being platform agnostic) --- In flexcoders@yahoogroups.com, James Ong wrote: > > Not direct invocation but you

[flexcoders] Re: [Important] Simultaneous HTTPService in the same component

2011-08-19 Thread valdhor
You may be better off using Remote Objects. In some of my components I have multiple remote object requests being made at the same time (Flash is intelligent enough to bundle all of these requests into one call if the requests come fast enough). You can use one file to handle all of the request

[flexcoders] Re: Flash Builder, The user operation is waiting for background work to complete

2011-08-19 Thread valdhor
I get that On my Windows XP box. It's usually when I have changed multiple files and save them one after the other. I have build automatically turned on so it compiles after each change. Sometimes that takes a bit longer than normal and I get that message. Waiting for a little while usually clea

[flexcoders] Catching/Trapping Error #3003: File or directory does not exist

2011-08-19 Thread sdl1326
I am getting the following error: Error #2044: Unhandled IOErrorEvent:. text=Error #3003: File or directory does not exist How can I trap this error? I have tried using a Try/Catch as well as a listener - see code below: try { var sourceFile:File = new File(); sourceFile.addEventListener(IOE

[flexcoders] Re: Flex Sdk 3.5 does not have ADG?

2011-08-19 Thread valdhor
The free Flex SDK 3.x did not include AdvancedDataGrid. This was included as part of the Flex Builder pro license. Flash Builder 4.x includes AdvancedDataGrid as standard. This is IIRC. Someone else please chime in if I am incorrect. --- In flexcoders@yahoogroups.com, Raj raju wrote: > > Hi al

[flexcoders] Re: runtime add images in hbox

2011-08-19 Thread valdhor
I have been away for a few weeks on vacation and have only just got back. I created a test application with your code and XML file and I don't see where the problem is. All the images are different (Not the same). Could you elaborate further? --- In flexcoders@yahoogroups.com, "NishitH" wrote:

RE: [flexcoders] Purchase Previous Adobe Licenses

2011-08-19 Thread Davidson, Jerry
It’s too bad Adobe doesn’t have the program MS has. We can purchase Office to match what we have at work for our home PC. The disk is dirt cheap as they make their money on the office sales. When I compare the price of Adobe’s suite at $1,500 and compare it to the MS $29 I find I can buy one

[flexcoders] How to update AIR application silently

2011-08-19 Thread j2me_soul
How to update the AIR application in the most silently way when there is a new version on the server without any interactions ?

Re: [flexcoders] Client IP Address and Client Computer Name

2011-08-19 Thread Csomák Gábor
This worked for me: import flash.net.InterfaceAddress; import flash.net.NetworkInterface; var netInterfaces:Vector. = NetworkInfo.networkInfo.findInterfaces(); var addresses:Vector. = netInterfaces[0].addresses; ipAddress = addresses[0].address; On Thu, Aug 18, 2011 at 10:24 AM, K.C Baruri wrot