[flexcoders] Re: HTTP Headers and RemoteObject

2012-02-15 Thread valdhor
You could use the setRemoteCredentials method of the RemoteObject to send username and password as a header item. If not, check out the replies at http://stackoverflow.com/questions/81548/how-to-set-an-http-header-while-using-a-flex-remoteobject-method --- In flexcoders@yahoogroups.com, mores

[flexcoders] Re: CSS for spark dataGrid?

2012-02-15 Thread valdhor
You need to use skins for spark components. --- In flexcoders@yahoogroups.com, markflex2007 markflex2007@... wrote: Hi, I use CSS for spark dataGrid, that is like fx:Style @namespace s library://ns.adobe.com/flex/spark; s|DataGrid {

[flexcoders] Re: HttpService resultHandler in different Window

2012-02-14 Thread valdhor
So, somewhere a null object is trying to be referenced. You will need to add debugging code to check which object is null. If you need two way communication between your windows I would recommend creating an interface and implementing it in both windows. --- In flexcoders@yahoogroups.com,

[flexcoders] Re: SWF Management...

2012-02-14 Thread valdhor
This does seem to be the current behavior. It started happening with my code too. I don't know exactly when it started but may be due to the fact that I just upgraded to 4.5 and Flash Player 11. --- In flexcoders@yahoogroups.com, jamesfin james.alan.finnigan@... wrote: A module is being

[flexcoders] Re: Overriding Focus Manager?

2012-02-06 Thread valdhor
I would add a focus out event listener on text2. When it fires, check to see if Text1 has been validated. If not, prevent the event from propagating. --- In flexcoders@yahoogroups.com, Mandy Mandy amachutta@... wrote: Hello All, I have a project I'm working on in Flex 3.5 that involves

[flexcoders] Re: How to create a line after each line in a TextArea

2012-01-31 Thread valdhor
Add a row of dash's or underscore's? --- In flexcoders@yahoogroups.com, dorkie dork from dorktown dorkiedorkfromdorktown@... wrote: I'm trying to show a horizontal line under each row of text sort of like legal paper. I'm not sure what to do to accomplish this.

[flexcoders] Re: Need help dynamically modifying text displayed based on DB return

2012-01-31 Thread valdhor
Firstly, the way you are setting your public variables won't work. The {} syntax only works inside an MXML statement. You would need to change [Bindable] public var imageTitle:String = {win.title}; to [Bindable] public var imageTitle:String = win.title; Secondly, you may like to look into

[flexcoders] Re: Build Release (generated on Windows) returns NULL query values

2012-01-30 Thread valdhor
Use Charles (www.charlesproxy.com) to see if the data you are expecting to come across the pipe is actually there. If the data is there, you have a bug in your Flex code. If it isn't, you have a bug in your CFC. --- In flexcoders@yahoogroups.com, hermeszfineart hermeszfineart@... wrote: when

[flexcoders] Re: Evaluating a Boolean String Expression

2012-01-26 Thread valdhor
http://stackoverflow.com/questions/1312986/how-to-make-a-logical-boolean-parser-for-text-input --- In flexcoders@yahoogroups.com, BillF bill.franklin@... wrote: So, I have a string expression that I need to evaluate as a boolean result. Any ideas on how to do that? The expression can be in

[flexcoders] Re: send failed

2012-01-20 Thread valdhor
Try checking with Charles. --- In flexcoders@yahoogroups.com, Greg Morphis gmorphis@... wrote: We have an older flex app written in Flex 2 with ColdFusion as middle ware. I haven't messed with this app or Flex in well over a year. The app partially loads up and then we get a couple Send

[flexcoders] Re: Flex alternatives

2012-01-17 Thread valdhor
@yahoogroups.com, valdhor valdhorlists@ wrote: On the suggestion that I will be leaving IOS devices out, that seems absurd. You can use the same Flex code and with some modifications make it into an AIR app that can be compiled for IOS devices. Again, all just my perspective. I think

[flexcoders] Re: Flex alternatives

2012-01-16 Thread valdhor
Chrome or Firefox. This would be a win-win, as they would get a better browser, and we would get a better development environment. Who's with me? Guy On 16/01/2012, at 6:31 AM, Ron G wrote: Valdhor: You are right about that. That is precisely why we went with Flex

[flexcoders] Re: Flex alternatives

2012-01-16 Thread valdhor
rgrimes@... wrote: Valdhor: You are right about that. That is precisely why we went with Flex originally (it insulated us from X-Browser issues). But, since we can't count on that lasting, and even Adobe is telling developers to plan on moving to HTML5, it seems like they're pushing us

[flexcoders] Re: Flex alternatives

2012-01-13 Thread valdhor
We are staying with Flex as well but keeping an eye on what is happening. I work for a very large enterprise company and it takes a while for our IT department to test software before deployment. They have almost completed Windows 7 and have a tentative deployment start of 2012. In late 2011

[flexcoders] Re: Challenge in Migrating to HTML5 from FLEX.

2012-01-13 Thread valdhor
On another thread someone mentioned zkoss. --- In flexcoders@yahoogroups.com, Venkat M venkat_yum@... wrote: Hi Team,   I have a question on migration from FLEX to HTML5. This question may be little out of the discussion in here; It would be great if someone help me out.   I have a

[flexcoders] Re: Air Controlling InDesign?

2011-12-22 Thread valdhor
Would this be on a PC or a Mac? On a Mac you should look into leveraging AppleEvents. --- In flexcoders@yahoogroups.com, grimmwerks grimm@... wrote: I know there's a few apps out there to control Photoshop and the like, but I'm wondering if anyone has any information as to how to go about

[flexcoders] Re: Air Controlling InDesign?

2011-12-22 Thread valdhor
I would also look at Merapi. --- In flexcoders@yahoogroups.com, valdhor valdhorlists@... wrote: Would this be on a PC or a Mac? On a Mac you should look into leveraging AppleEvents. --- In flexcoders@yahoogroups.com, grimmwerks grimm@ wrote: I know there's a few apps out

[flexcoders] Re: Needs to word wrap on FormItem label

2011-12-09 Thread valdhor
http://www.nbilyk.com/multiline-formitem-label --- In flexcoders@yahoogroups.com, koti reddy koti_reddy972@... wrote: Hi, I have been fighting to wrap text the FormItem label using css but can't able to achieve the task. Could any of you please suggest me what should i do if i have a

[flexcoders] Re: Problems when using asynchronous RemoteObject requests

2011-11-17 Thread valdhor
Use an AsyncToken to tag the requests using the data property. When a result comes in check the AsyncToken data property to see which one has come in. --- In flexcoders@yahoogroups.com, txakin txakin@... wrote: Hi all, I'm having some problems with the asynchronous in Flex using RemoteObject

[flexcoders] Re: Examining static variables when debugging with Flash Builder

2011-11-17 Thread valdhor
Strange. It works for me. Maybe you need to initialize x in the constructor of the Global class. Leaving it unassigned may cause that error. --- In flexcoders@yahoogroups.com, William Mitchell whm@... wrote: --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: You have

[flexcoders] Re: Examining static variables when debugging with Flash Builder

2011-11-16 Thread valdhor
You have to create a variable of type Global somewhere in your code before you can use the class variable x. The Flash Builder compiler is Smart. If you explicitly import a class but then don't use it the compiler will not import the class. To do so would bloat the code for something that is

[flexcoders] Re: Replacing double slash with a single slash

2011-11-15 Thread valdhor
doubleSlash : RegExp = //g; var slash : RegExp = //; winMessage = winMessage.replace( doubleSlash, slash ); I'm sure it's easy when you know how :) Nick On 8 November 2011 19:24, valdhor valdhorlists@... wrote: ** As I understand it the backslash character is special

[flexcoders] Re: Mapping/Image in Flex

2011-11-08 Thread valdhor
Take a look at the callout component - http://www.adobe.com/devnet/flex/samples/fig_callout.html --- In flexcoders@yahoogroups.com, Venkat M venkat_yum@... wrote: Thank you. What if it is not a map?. Say for example I have a car image, when I hover over the tires, I should get the info

[flexcoders] Re: opening another Window in Flex for commenting on data entered in TextArea compon

2011-11-08 Thread valdhor
The way I would do it is to include an extra text area underneath (Or beside) each of the current text areas for the reviewer to add comments. These text areas would only be visible if a reviewer logged in. Depending on some flags that are populated in the database, you could make one or the

[flexcoders] Re: code out of sync with flash builder

2011-11-08 Thread valdhor
Do you have the debug even if there are errors (Or whatever it is called) turned on? I have only seen this when there are errors in the code so a compile can't complete. In this case Flex will let you debug but use the previous compiled version. --- In flexcoders@yahoogroups.com, Wouter

[flexcoders] Re: Replacing double slash with a single slash

2011-11-08 Thread valdhor
As I understand it the backslash character is special in both the regex and the replacement string, so it has to be double escaped in both places. That means, for every single backslash you want to match or insert, you have to put *four* backslashes in the regex or replacement string. --- In

[flexcoders] Re: ALEX HAURI please help

2011-11-04 Thread valdhor
I agree with John. This type of question should not even be directed at Alex as it is something that is documented. Alex will jump in if he deems necessary. First read the documentation at http://livedocs.adobe.com/flex/3/html/help.html?content=dragdrop_5.html and then try to implement it

[flexcoders] Re: ModuleLoader.child is null

2011-11-04 Thread valdhor
In your module code I don't see where it implements com.storefront.interfaces.controller.ITest. If there is no implementation of the interface, the child will be null. --- In flexcoders@yahoogroups.com, method_air loudjazz@... wrote: Can anyone explain why ModuleLoader.child is null in the

[flexcoders] Re: ModuleLoader.child is null

2011-11-04 Thread valdhor
I do it a different way than you which you may like to try... private function onReady(e:ModuleEvent):void { var ml:ModuleLoader = e.target as ModuleLoader; // cast the module (the child property of the ModuleLoader) to the // ITest interface. If the child implements this interface

[flexcoders] Re: HttpService error handling

2011-11-03 Thread valdhor
Have you tried using an AsyncToken? --- In flexcoders@yahoogroups.com, Sells, Fred fred.sells@... wrote: I'm using Flex 4.1 with a django backend. Django provides a really useful HTML error traceback when it fails. Currently I then have to manually insert the offending url into the browser

[flexcoders] Re: Flex HTTP Service Charset

2011-11-01 Thread valdhor
I'm sorry, I couldn't quite understand the error you are getting. Could you copy/paste the exact error you get as well as the XML String that is returned. --- In flexcoders@yahoogroups.com, isa_loyer isa_loyer@... wrote: Dear Flexer, I'm a french user, and I have some problem with

[flexcoders] Re: Flex 4.5 - Cell background color in datagrid

2011-10-31 Thread valdhor
I am currently still using Flex SDK 3.5a and this is the code in the item renderer I use for background colors... override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void { super.updateDisplayList(unscaledWidth,

[flexcoders] Re: What version of Flash Builder do you have?

2011-10-27 Thread valdhor
Are you perhaps confusing the versions of Flash Buidler and Flex? The Flash Builder Application is at 4.5.0.x The Flex SDK is at 4.5.1 You can download Flex SDK builds at http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4.5 Adobe packages the two items above and calls it Flash

[flexcoders] Re: Datagrid's Itemrenderer - Access to Datagrid

2011-10-27 Thread valdhor
Even though it looks like you have an answer to your question I'd like to ask why you would want that? It is always a much better practice to inject what you want into the item renderer instead of trying to reach back out to the original owner to get it. As Item Renderers are recycled this

[flexcoders] Re: Custom Itemrenderer - maintaining changed value in dropdownlist

2011-10-27 Thread valdhor
You will need the item renderer to act as an item editor. Also, you will need to add an extra field to the data provider to hold this value. On itemEditEnd event, update the dataprovider to reflect the change. --- In flexcoders@yahoogroups.com, sdl1326 azsl1326-email@... wrote: I have a

[flexcoders] Re: Hello Friend...

2011-10-27 Thread valdhor
Is there any way wen can block this address until we are sure it will not spam the list? --- In flexcoders@yahoogroups.com, jitendra jain jitendra_jain_2007@... wrote: pHello Friend.breveryone was worried that I would amount to nothing this picked me up when I was down now im back in control

[flexcoders] Re: .as vs .mxml best practices

2011-10-27 Thread valdhor
It's as simple as mx:Script source=includes/Sample3Script.as/ All it does is include the AS file at that point. Everything inside the MXML file is available to the AS file - no custom events necessary. See http://livedocs.adobe.com/flex/3/html/help.html?content=usingas_6.html --- In

[flexcoders] Re: Flex 4.1 VBOX background renderer fails

2011-10-25 Thread valdhor
I agree with Tim - use an item renderer. Inside the IR, use a graphics fill to set your background color. --- In flexcoders@yahoogroups.com, turbo_vb TimHoff@... wrote: In practice, itemRenderers actually tend to be the best candidate for skins. -TH --- In flexcoders@yahoogroups.com,

[flexcoders] Re: AIR - PHP : How to load local file to remote server

2011-10-25 Thread valdhor
You'll need to use the Flex FileReference class. If you do a Google search for Flex File Upload you will find a number of examples. --- In flexcoders@yahoogroups.com, isa_loyer isa_loyer@... wrote: Dear Flex, I search some idea to load local file to remote server with php. I try to do

[flexcoders] Re: Why hhtpservice is too long

2011-10-21 Thread valdhor
I suggest you move from XML to Remote Objects. You obviously have control of both the server and the Flex client. Currently you are retrieving data from the server and converting it to an XML string that you return to Flex. On the Flex side you then decode the XML to a form that you can use.

[flexcoders] Re: problem accessing menuBar component Sub-Items

2011-10-17 Thread valdhor
Add an event listener to the menubar itself. In the event listener you can find out which item was clicked based on the label property. --- In flexcoders@yahoogroups.com, Gustavo Duenas gduenas@... wrote: Hi I have this menu bar. mx:MenuBar width=1079.697 height=40.151516 id=mBar

[flexcoders] Re: Flex, HTML5, Javascript...oh my!

2011-10-14 Thread valdhor
Thanks for that. You're right; I'd never heard of it before. All I ever knew about was SproutCore. --- In flexcoders@yahoogroups.com, Johannes Nel johannes.nel@... wrote: look, i don't want to get into a fight with people, but i can really say that the google closure toolset makes every other

[flexcoders] Re: Any difference between instantiating in declaration vs. init()

2011-10-13 Thread valdhor
In your use case probably no. It all comes down to when you want to use the variable you are creating. In my case I always like my variables in a predetermined state when I create them so, if I can, I'll always initialize them in the declaration. It also saves an extra line of code ;-} --- In

[flexcoders] Re: accessing buttons on button bar

2011-10-12 Thread valdhor
Add an event listener for the menubar rather than each item then check the label of the item that was clicked in the event. See http://livedocs.adobe.com/flex/3/html/help.html?content=menucontrols_6.html for an example. --- In flexcoders@yahoogroups.com, Gustavo Duenas gduenas@... wrote: Hi

[flexcoders] Re: using a coldfusion proxy to show twitter feed in flex app

2011-10-10 Thread valdhor
Sorry, I am out of my depth here. I don't use ColdFusion. All I can suggest is creating a debug file on the server and dump to the file to see if you are getting the desired response. After that, use Charles to see if the server is sending the correct response. --- In

[flexcoders] Re: help with a repeater

2011-10-10 Thread valdhor
As I said, it is easier to package up the items into a component and repeat that. To that end, here is an example (Unfortunately, it appears that vimeo is set up not to allow embedding. It does work with other web sites however): Application: ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: Parsing Soap Response

2011-10-10 Thread valdhor
Have you seen the training video at http://tv.adobe.com/watch/adc-presents/build-a-flex-application-that-connects-to-a-soap-web-service/ --- In flexcoders@yahoogroups.com, David Nester dnestertx@... wrote: Greetings! I have a SOAP response from a webservice that i am trying to parse to a

[flexcoders] Re: sandbox problem someone help me

2011-10-10 Thread valdhor
These security errors are generally at the other end. ie. ustream (Or whatever domain you are trying to call) has to have a crossdomain.xml file that allows you to call it. There is nothing you can do at your end to override this. They have to let you access their stuff (Or provide an API to

[flexcoders] Re: DataGrid column width to be calculated by headerText

2011-10-10 Thread valdhor
Nope, no quick fix. You would need to loop over all the data and find the longest strings. You would then need to calculate the widths based on FontMetrics for the font you are using. I have seen an example in the past so Google should be your friend. --- In flexcoders@yahoogroups.com,

[flexcoders] Re: custome list scroller issue

2011-10-10 Thread valdhor
Copy the built-in scroller code to your custom component and modify that. --- In flexcoders@yahoogroups.com, j2me_soul j2me_soul@... wrote: I create a custom Scroller Skin all code designed by flash catalyst. My computer has two monitor when I drag the application to the other monitor then

[flexcoders] Re: binding controls with Xml in flex

2011-10-10 Thread valdhor
Google two way binding. --- In flexcoders@yahoogroups.com, Asad Zaidi asadzaidi23@... wrote: hello every body, i need to bind Xml with my flex controls. by binding i mean that data should flow in both directions, from xml to control and also control to xml. for e.g there is textinput

[flexcoders] Re: help with a repeater

2011-10-07 Thread valdhor
I have had better results with a repeater if I bundle all the components in the repeater into a single component and then repeat that. You can create public variables in this custom component to hold values you need to pass in. --- In flexcoders@yahoogroups.com, Gustavo Duenas gduenas@...

[flexcoders] Re: is there another flexcoders list?

2011-10-07 Thread valdhor
Of course, all the most knowledgeable people are still here because they can't stand the chatter over there ;-} --- In flexcoders@yahoogroups.com, Jeffry Houser jeffry@... wrote: This list started to die after Adobe launched their new forums. I think that was a couple of years ago.

[flexcoders] Re: using a coldfusion proxy to show twitter feed in flex app

2011-10-07 Thread valdhor
This is a CF error. I don't know much about CF but the error is saying that you are not allowed to access that method remotely. Is there some setting in CF that tells it which methods are remotely accessible? Is the crossdomain file set up correctly? From my point of view, it has to be some

[flexcoders] Re: using a coldfusion proxy to show twitter feed in flex app

2011-10-07 Thread valdhor
OK, so now it doesn't like the XML you are sending to the CFC. What does Charles show as the XML string that is actually being sent? Does that XML pass a validation check? Does it look right? --- In flexcoders@yahoogroups.com, ZIONIST stinasius@... wrote: I changed access to 'remote' on the

[flexcoders] Re: RTE when setting spark gridcolumn visible property (f

2011-10-07 Thread valdhor
second). Preinitialize would be ok...but other parts of my code (unrelated to this problem) are failing because preinitialize is too early. i can't bare any more code rewrites(but i suppose it keeps me in a job). --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote

[flexcoders] Re: RTE when setting spark gridcolumn visible property (f

2011-10-05 Thread valdhor
The column probably hasn't been created yet. Try the creationcomplete event of the datagrid. --- In flexcoders@yahoogroups.com, bhaq1972 mbhaque@... wrote: I get a runtime error when I set the gridcolumn.visible property during a datagrid initialize event. There is no problem's if its the

[flexcoders] Re: Reading barcodes

2011-09-28 Thread valdhor
I would have thought that the library you mention would work fine. Barcodes don't change. Once you have it all working there does not need to be an update. --- In flexcoders@yahoogroups.com, Richard Rodseth rrodseth@... wrote: Can anyone recommend a good strategy for reading barcodes on an

[flexcoders] Re: exclude certain classes from debugging session

2011-09-28 Thread valdhor
2011 16:59, valdhor valdhorlists@... wrote: ** Just use watch expressions to see only the items you are interested in. --- In flexcoders@yahoogroups.com, Wouter Schreuders wschreuders@ wrote: Hi All When debugging some code and stepping through or stepping over some

[flexcoders] Re: exclude certain classes from debugging session

2011-09-26 Thread valdhor
Just use watch expressions to see only the items you are interested in. --- In flexcoders@yahoogroups.com, Wouter Schreuders wschreuders@... wrote: Hi All When debugging some code and stepping through or stepping over some code, is it possible to configure flex to not include certain

[flexcoders] Re: ClassFactory, properties, itemrenderers and changing prop dynamically

2011-09-22 Thread valdhor
I don't know about others here but IMHO a better user experience would be to remove the selected item from the source list. This way it is not even there to be selected. Just a simple matter of removing it from the dataprovider. --- In flexcoders@yahoogroups.com, grimmwerks grimm@... wrote:

[flexcoders] Re: mx.controls.HTML in AS3 project

2011-09-16 Thread valdhor
According to the documentation it is in the standard mx.controls package. See http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/controls/HTML.html Of course, that means you will have to include the flex SDK. An AS3 only project probably doesn't include the SDK. I just had a

[flexcoders] Re: WebService timeout to Axis on Tomcat

2011-09-09 Thread valdhor
Try setting the request timeout to zero. Also, what is the actual fault that is returned? Add the following to your fault handler to find out... Alert.show(fault.fault.faultString, fault.fault.faultCode.toString()); --- In flexcoders@yahoogroups.com, pirvulescu_adrian pirvulescu_adrian@...

[flexcoders] Re: Animating an arrow into a target

2011-09-09 Thread valdhor
an idea On Sep 7, 2011 4:21 PM, valdhor valdhorlists@... wrote: I have a project where I need to show the progress of a, well, project. The project has seven specific stages that it must pass through. What I would like to do is have an animated arrow move from left to right across

[flexcoders] Animating an arrow into a target

2011-09-07 Thread valdhor
I have a project where I need to show the progress of a, well, project. The project has seven specific stages that it must pass through. What I would like to do is have an animated arrow move from left to right across the screen until it hits a target on the right side. At any time a user can

[flexcoders] Re: Anyone had problems moving to SDK 3.5 (especially from 3.2)? Please reply.

2011-09-01 Thread valdhor
3.2 to 3.5 was pretty much painless in my case. --- In flexcoders@yahoogroups.com, Greg Lafrance glafrance@... wrote: Our team have switched from using Flex SDK 3.2 to SDK 3.5 and we're seeing some issues. I'm wondering how many others out there have seen issues with using SDK 3.5,

[flexcoders] Re: Basic Doubt - Flex Module

2011-08-30 Thread valdhor
Just to be different, I would use an interface between the Application and all the modules. --- In flexcoders@yahoogroups.com, Alex Harui aharui@... wrote: I would have the button listen for events from the module. On 8/29/11 4:12 PM, Venkat M venkat_yum@... wrote: Hi

[flexcoders] Re: Adding up Arraycollections to Datagrid!

2011-08-26 Thread valdhor
It is trivial to write a function to do what you want... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=onCreationComplete() mx:Script ![CDATA[ import mx.collections.ArrayCollection;

Re:[flexcoders] Re: remoting problem

2011-08-26 Thread valdhor
; } package com.frameworks.mvc.model.VO.remoting { [Bindable] [RemoteClass(alias=com.ezt.server.pojo.EztDoctor)] public class EztDoctor{ public var sex:String; public var DLevel:Number; public var DStatus:Number; ... ... At 2011-08-25 21:13:43,valdhor valdhorlists@... wrote

[flexcoders] Re: HttpService results inconsistent

2011-08-25 Thread valdhor
This is pretty much how Flex works and has been documented. What I always do is convert the result into an array... new ArrayCollection(ArrayUtil.toArray(event.result)) so even with only one record I still get an ArrayCollection. --- In flexcoders@yahoogroups.com, Sells, Fred fred.sells@...

[flexcoders] Re: remoting problem

2011-08-25 Thread valdhor
That does not look like a Flex class. Is it PureMVC? I would try what it tells you to do. ie. Define a variable of that type in the top level application. --- In flexcoders@yahoogroups.com, j2me_soul j2me_soul@... wrote: warning: The class com.frameworks.mvc.model.VO.remoting.EztDept has been

[flexcoders] Re: Mobile-Desktop Desktop-Mobile synching

2011-08-25 Thread valdhor
If you can sync to the web why can't you create an embedded web server in the desktop application using an esoteric port number? --- In flexcoders@yahoogroups.com, Amy amyblankenship@... wrote: Hi, all; I have been searching for a tutorial/example that shows how to get data from a mobile

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

2011-08-22 Thread valdhor
What does model.networkDriveLetter actually hold? Is it just the drive letter or is the colon attached as well? Perhaps the call is failing even before the resolve tries to happen. You may like to check the code in resolvePath to see how it works and where it throws the error. --- In

[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

[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 raj.virtuali@...

[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

[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

[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 yanlilei64@... wrote: Not direct

[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 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

[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 wemersonrv@... wrote: Hello guys, There are a way of communicate 2 computers (or more) on the same network (LAN) using

[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 davisford@... wrote: Hi flexcoders, I wanted to drop a note to

[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 azsl1326-email@... wrote: I am getting the following error: Error #2044: Unhandled

[flexcoders] Re: Flex 4 CSS

2011-08-19 Thread valdhor
Instead of using mx:Canvas try using s:BorderContainer. ?xml version=1.0 encoding=utf-8? s:Application xmlns:fx=http://ns.adobe.com/mxml/2009; xmlns:s=library://ns.adobe.com/flex/spark xmlns:mx=library://ns.adobe.com/flex/mx fx:Style .bgImage { color:

[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 markflex2007@... wrote: this is same question like this. no answer now.

[flexcoders] Re: I don't know if I need Flex (please help me to decide)

2010-09-09 Thread valdhor
Where did you see that WebORB for PHP is discontinued? I did a Google search and the only thing I could find was your post. I also prefer AMFPHP over WebOrb, is faster (even faster than Zend_AMF) and webOrb for PHP is discontinued

[flexcoders] Re: I don't know if I need Flex (please help me to decide)

2010-09-08 Thread valdhor
I can't talk to how easy ColdFusion is as I have not used it very much but WebORB for PHP is very robust. My application is used by tens of thousands of people every day. I do know that for me, at least, PHP is very easy. --- In flexcoders@yahoogroups.com, Bill Brutzman bill.brutz...@... wrote:

[flexcoders] Re: Module-friendly modals

2010-09-08 Thread valdhor
Correct me if I am wrong but aren't windows of any kind parented by SystemManager? The way I do things is to set an event listener in the main application and then inject the event into the currently loaded module using an interface. --- In flexcoders@yahoogroups.com, Richard Rodseth

[flexcoders] Re: Using modules and remote objects

2010-09-07 Thread valdhor
I do this all the time. My main application is a shell that loads in the app's layout and loads the menu's based on a users access level. This app then loads whatever module the user is interested in. Each module has all of its functionality encapsulated including its required remoting. This is

[flexcoders] Re: Which URL to use for amfEndpoint in LCCS Project?

2010-09-07 Thread valdhor
From the description on the web site you don't change that at all. It should point to Adobe's Livecycle collaboration Services site (http://www.adobe.com/ap/products/livecycle/collaborationservice/) which is an Adobe hosted service. You would have to sign up for a free trial to test it

[flexcoders] Re: flashBuilder.ini

2010-09-07 Thread valdhor
First off, are you running 32 bit or 64 bit Java? Not to mention Eclipse (Flash Builder). NB: Flash Builder is built on Eclipse. It looks like it is 32 bit (win32 mentioned in plugins line). This will give a maximum heap size of 2GB which you would not be able to set it to as there would not be

[flexcoders] Re: how do you guys read flexcoders

2010-09-07 Thread valdhor
I use the Yahoo groups page to read and reply. I use the Nabble Flexcoders page to search for posts (http://_.15888.www.nabble.com/Re-f16212.html - not that it's working at the moment ;-). The emailed messages are collected and archived with my mail reader application. --- In

[flexcoders] Re: File Upload with php on Mac

2010-09-07 Thread valdhor
Does file uploading work from an HTML page? Get this working before involving AS3. --- In flexcoders@yahoogroups.com, Christophe christophe_jacque...@... wrote: Hello, What is the specificity of the Mac plateform, because my upload function with AS3 and Php is working on Pc but not on

[flexcoders] Re: dynamic data load problem with OLAPDatagrid

2010-09-07 Thread valdhor
Binding problem? --- In flexcoders@yahoogroups.com, Tejas Patel tejaspate...@... wrote: Single OLAPDatagrid component is not used for dynamic arraycollection data. Initially data displayed perfectly and also itemClicked event working perfectly. But after data changed dynamically and fetch

[flexcoders] Re: flashBuilder.ini

2010-09-07 Thread valdhor
--- In flexcoders@yahoogroups.com, Mike msl...@... wrote: I am using a 32 bit JDK because as you have guessed FB is not 64 bit capable at this time. QED You have only 2GB of usable memory. It would be more helpful to post complete and working ini files that provide 800M of heap. One

[flexcoders] Re: separate flex apps in same webroot folder

2010-09-01 Thread valdhor
Works for me. Brings up a login screen. --- In flexcoders@yahoogroups.com, ZIONIST stinas...@... wrote: on my development pc the two apps work perfectly.

[flexcoders] Re: Switching Item Renderers

2010-09-01 Thread valdhor
wesley.ache...@... wrote: Yeah thats the way I've done it previously. I thought that this way would cut out on some additional computation. On Tue, Aug 31, 2010 at 6:04 PM, valdhor valdhorli...@...wrote: That seems overly complicated to me. What I would try is create two custom

[flexcoders] Re: Flex validator in action script

2010-08-31 Thread valdhor
Untested but how about... [Bindable] private var textInput:TextInput = new TextInput(); private var val:Validator = new Validator(); textInput.id = myText; //Don't know why you need this as you can refer to the TextInput by its variable name (textInput) val.source = textInput.text; val.required

[flexcoders] Re: Flex application with Microsoft Azure

2010-08-31 Thread valdhor
Take a look at http://phpazure.codeplex.com/ --- In flexcoders@yahoogroups.com, Christophe christophe_jacque...@... wrote: Hello, Which library to use to talk with a Microsoft Azure database in the cloud from a flex application. My application use AmfPhp, does its work ? Thank

[flexcoders] Re: Switching Item Renderers

2010-08-31 Thread valdhor
That seems overly complicated to me. What I would try is create two custom components then instantiate the appropriate one based on the data and add it in the updateDisplayList method. --- In flexcoders@yahoogroups.com, Wesley Acheson wesley.ache...@... wrote: Since nobody has replied I'm

[flexcoders] Re: Announcement: Flextras Flex Calendar Component

2010-08-31 Thread valdhor
Any chance you could turn off auto connect to twitter? I am at work and can't use Twitter. It is a real pain in the @ss to have to click the cancel button on every page of the site. I finally got disgusted and closed the tab. --- In flexcoders@yahoogroups.com, Jeffry Houser jef...@... wrote:

  1   2   3   4   5   6   7   8   9   10   >