[flexcoders] Searching through an ArrayCollection of Objects

2010-03-02 Thread Nick Middleweek
Hi, I was wondering if there are any quick ways to solving this, quick as in CPU time, not developer time... I have an Array Collection of VO's called contact which has two properties... var myAC : ArrayCollection = new ArrayCollection(); var myContact : Contact = new Contact(); myContact.name

[flexcoders] Create rooms using FMS

2010-03-02 Thread venkat eswar
Hi,  How to create rooms in flex using FMS3.0

Re: [flexcoders] Create rooms using FMS

2010-03-02 Thread p...@vin Uttarwar
Hi, What you exactly want to do? You can specify a room name in NetConnection.connect method eg: nc.connect(rtmp://locahost/myapp/myroom); This will connect the client to room *myroom *of application *myapp*. Make sure that you are using unique room name. Thanks Regards, Pravin Uttarwar |

Re: [flexcoders] Searching through an ArrayCollection of Objects

2010-03-02 Thread Krunal Panchal
Hi, You have to create the copy of ArrayCollection using the Utility.Copy command which we help you to keep the copy of original one and create the copy of existing one. Apply the filter condition on newly created ArrayCollection. Hope this will help you Regards,

[flexcoders] bind ColorMatrixFilter to php (Apply ActionScript graphic manipulation to php)

2010-03-02 Thread ouaqa
Hello, I am working on an online photo manipulation project. Users load images, modify them, and save modifications. Later, a high quality version of the image is printed. Due to specification constraints, the printing process must be performed by php. I've been looking, without success, for a

[flexcoders] How you keep the debugger from tracing through the SDK files?

2010-03-02 Thread Aurek Brillowski
Never did that before for me. Just started happening and can't figure out why, even when using step over on every step! I just would likek it to step through the source files that I created only. I give. Thanks for any help.

Re[flexcoders] strict user input in TextInput

2010-03-02 Thread sasuke
Hi all. How would I achieve the task of restricting user input based on the current contents of the TextInput? I am aware of the restrictChars property but that doesn't help since it applies a blanket rule as to which characters are allowed/not allowed. An example here would be: allow the user

[flexcoders] Re: Bindings within a dynamically created container fail.

2010-03-02 Thread Amy
--- In flexcoders@yahoogroups.com, chefbrittison britton.j...@... wrote: I have a panel which is being created dynamically within a sidebar depending on the context of the main display area. When the panel is added to the display list, the bindings don't appear to fire correctly. In this

[flexcoders] What type of backend Java technology Flex Developer should know?

2010-03-02 Thread fred44455
More and more Java is required to know for any Flex Developer who is looking for a new project employment. My question is simple :Java is very waste so from your personal experience what type of Java Technology are they requiring(in general)?. Please don't elaborate or debate on why Java is

RE: [flexcoders] Re: Does DataBinding to a function create a ChangeWatcher?

2010-03-02 Thread Christopher McArthur
Thanks for the video, took a while to get through, but answered my questions throughly. I am going to forward it to the other Flex developers on my team I found it so helpful. Now, going to try to find other lectures by Labriola ;0 From: flexcoders@yahoogroups.com

Re: [flexcoders] Foreign interfaces

2010-03-02 Thread Wally Kolcz
How about using the Fash Text Layout Framework? http://labs.adobe.com/technologies/textlayout/ Is that what you are going for? On 3/1/2010 5:45 AM, Christophe wrote: Hello, Is it possible to make an interface with Japanese or Chinese Characters with Flex ? Thank you, Christophe,

Re: [flexcoders] CHanges not taking effect

2010-03-02 Thread Wally Kolcz
Clean the browser's history/cache. In FF, go to ToolsClear Recent History. I usually just do 'today' On 3/1/2010 9:31 PM, iloveyouwisconsin wrote: Weird problem on Flex 4. I make changes and can see them in design view. I then run the app and the changes don't take effect. I've tried to do

[flexcoders] Dumb Question - Transition after a module has loaded

2010-03-02 Thread Wally Kolcz
I have my kids site where when they click a 'button' I want to have the module open in an iris effect. The modules load and are added to a canvas as a place holder. Can anyone tell me or point out how to apply an effect to a module?

[flexcoders] Re: Searching through an ArrayCollection of Objects

2010-03-02 Thread Amy
--- In flexcoders@yahoogroups.com, Krunal Panchal panchal_...@... wrote: Hi, You have to create the copy of ArrayCollection using the Utility.Copy command which we help you to keep the copy of original one and create the copy of existing one. Apply the filter condition on newly

[flexcoders] Dynamically create a Value Object...

2010-03-02 Thread Laurence
The program that I'm working on is for a company that does registrations for conventions and trade-shows. Different clients want different information stored for each show. Most of the information is the same from show-to-show, but every show has certain customizations that need to be done.

[flexcoders] Re: Dynamically create a Value Object...

2010-03-02 Thread Laurence
I should also mention we're using CF9 on the back-end. So the VOs have to be defined in .CFC files as well. So if anyone can tell me how to do dynamic VOs in both CF9 and Flex, that'd be wonderful. Alternatively, if there's a way to transfer data between Flex and CF9 that doesn't involve VOs

Re: [flexcoders] Dynamically create a Value Object...

2010-03-02 Thread Nick Middleweek
Hi Laurence, I'm pretty new to Flex so there might be reasons to stick with Value Objects that I'm unaware of but you can definitely read and write XML and generate forms, layouts, etc on the fly based on the XML contents. I've used E4X to query XML data that I've sucked in from an HTTP call,

[flexcoders] Re: Best way to implement WebService Resend functionality?

2010-03-02 Thread handitan
@Amy: I sort of found out why I was having issue in assigning the token. For some reasons that I still don't know, the ws resend is always failing due to Parameter-fault message, which is weird because I put all the same arguments that I passed in on the 1st ws call. Hmmm --- In

[flexcoders] Re: Best way to implement WebService Resend functionality?

2010-03-02 Thread handitan
@Peeyush: Thanks for the suggestion, Peeyush. That's an interesting design. Hmmm...definitely will consider that one. --- In flexcoders@yahoogroups.com, Peeyush Tuli peeyus...@... wrote: An elegant design pattern would be to implement a request queue. All the requests that your webservice

Re: [flexcoders] Re: Searching through an ArrayCollection of Objects

2010-03-02 Thread Nick Middleweek
Thanks for the replies... How can I find out what's going on behind the scenes with IViewCursors or ListCollectionViews? Do they actually index the Collection data to make the filter super fast or do you think it's comparable if I'm just looping and searching using a brute comparison? I only

[flexcoders] Re: Dynamically create a Value Object...

2010-03-02 Thread Laurence
We're using an SQL database with a ColdFusion intermediary between the Flex app and the database... I've used XML files to configure a couple of the components -- give the user the option to change the layout of a component, for example, by modifying the contents of a config.xml file, that

Re: [flexcoders] Re: Dynamically create a Value Object...

2010-03-02 Thread Jake Churchill
You could probably try having a base VO for all the properties that you know will be there and include a single property in the VO which would be either a Dictionary or a generic object used as an associative array to handle all your custom properties. Then just populate the VO like you normally

[flexcoders] Flex drawing question

2010-03-02 Thread Wally Kolcz
Would it be a smaller file and quicker load if instead of using graphics (png, jpg, gif) I used the flash drawing API (via Degrafa) to create the graphics of my web site?

[flexcoders] 3-month Flex contract

2010-03-02 Thread A.C.I. - Derek Monson
Hi all, A client of mine is looking for a consultant to help out on a new project. Description is below, if anyone is interested. Regards, Derek Monson Ascent Consulting,Inc. 57 Wingate Street, Suite 302 Haverhill, MA 01835 p. 978-372-3755 ext. 201 c. 603-401-4316 f. 815-377-3861

[flexcoders] Trouble with ProgressBar and manual updates.

2010-03-02 Thread Christopher McArthur
Using Flex3 in AIR standalone application. I have a ton of children I need to add to a Canvas dynamically. When I do this, it takes a long time. So I wanted to display a loading bar to the user. I create a Timer, and every time the timer ticks, I update the loadingBar and I add the child.

[flexcoders] Problem with VideoDisplay orizzontal reflection

2010-03-02 Thread kekko_md
Hello everyone, I write because I have a problem with the item VideoDisplay in Flex. A hypothetical mx:VideoDisplay id=videoDisplay width=400 height=300 / how do I reflect it horizontally? So basically the right side should become the left and the right the left. I tried to input a negative

[flexcoders] Java.net and now FLEX Rescue Mission on March 5th

2010-03-02 Thread Marvin Froeder
Hi Folks, For those who didn't followed Sonatype blog, this Friday (March 5th) Sonatype will be organizing an major effort to migrate projects hosted Java.net maven repository to maven central. http://www.sonatype.com/people/2010/02/java-net-maven-repository-rescue-mission-on-march-5th/ We would

[flexcoders] Re: Dynamically create a Value Object...

2010-03-02 Thread Laurence
Thanks for the suggestion... I may be able to make that work... If I understand you correctly, I'd need to return an array-within-an-array kind of thing... My normal array of VOs, with one property of each VO being an array itself... Sounds easy enough... But I've tried before to get CF to

[flexcoders] Re: Checkbox set disabled color to enabled color.

2010-03-02 Thread aceoohay
Any ideas? --- In flexcoders@yahoogroups.com, aceoohay pa...@... wrote: I realized a couple of things I might be doing wrong and tried the following without a positive result; public function ValidatedCheckBox() { super();

[flexcoders] Re: Checkbox set disabled color to enabled color.

2010-03-02 Thread ppongtong
How about... public function ValidatedCheckBox() { super(); this.addEventListener(FlexEvent.CREATION_COMPLETE, handleCreationComplete); } public function handleCreationComplete(pEvent :FlexEvent) :void { this.removeEventListener(FlexEvent.CREATION_COMPLETE, handleCreationComplete);

[flexcoders] Re: Dynamically create a Value Object...

2010-03-02 Thread aceoohay
First, let me say that I have been roundly criticized for taking the approach of NOT using VOs. Second, I use .NET FluorineFX. Having said that, I created my applications in such a way that my middle tier has a few generic methods for querying, updating, inserting data from a DB (usually

[flexcoders] Re: Best way to implement WebService Resend functionality?

2010-03-02 Thread Amy
--- In flexcoders@yahoogroups.com, handitan handi@... wrote: @Amy: I sort of found out why I was having issue in assigning the token. For some reasons that I still don't know, the ws resend is always failing due to Parameter-fault message, which is weird because I put all the same

Re: [flexcoders] Context Menu

2010-03-02 Thread Abdul Nizar
Hi, Try this link.. :) http://blog.flexexamples.com/2007/08/20/using-a-custom-context-menu-with-the-flex-datagrid-control/ --- On Tue, 2/3/10, Angelo Anolin angelo_ano...@yahoo.com wrote: From: Angelo Anolin angelo_ano...@yahoo.com Subject: [flexcoders] Context Menu To:

RE: [flexcoders] Where can I find a lot of Flex 3 AS3 examples?? Code that from other people?

2010-03-02 Thread Tracy Spratt
Got me again on that one! And I was truly thinking at the time, “and don’t forget google…” Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Igor Costa Sent: Sunday, February 28, 2010

Re: [flexcoders] Re: Dynamically create a Value Object...

2010-03-02 Thread Peeyush Tuli
*Having said that, I created my applications in such a way that my middle tier has a few generic methods for querying, updating, inserting data from a DB (usually Oracle). There is also a generic middle tier routine to handle stored procedures as well. My presentation layer, Flex, builds a SQL

Re: Re[flexcoders] strict user input in TextInput

2010-03-02 Thread Peeyush Tuli
not sure.. but check if this helps http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetailextid=1049969 you might need to modify the original code.. ~Peeyush http://www.mds.asia On Tue, Mar 2, 2010 at 8:30 PM, sasuke uzumaki.naruto...@gmail.com wrote: Hi all. How would I

Re: [flexcoders] What type of backend Java technology Flex Developer should know?

2010-03-02 Thread Peeyush Tuli
i think a good point to start with how Flex and Java communicate. - Start with some samples of blazeds with flex. Blazeds is an open source java based infrastructure for flex and java communication from Adobe. - If you get hooked, try Merapi. That's how Java and Adobe AIR can communicate. On

Re: [flexcoders] Trouble with ProgressBar and manual updates.

2010-03-02 Thread Peeyush Tuli
it might be that all the processing is too much to be displayed in the same frame. So this might help you http://jimmyflex.blogspot.com/2007/11/dont-forget-power-of-calllater.html ~Peeyush http://www.mds.asia http://jimmyflex.blogspot.com/2007/11/dont-forget-power-of-calllater.html On Wed,

[flexcoders] Re: Checkbox set disabled color to enabled color.

2010-03-02 Thread aceoohay
I tried; public function ValidatedCheckBox() { super(); this.addEventListener(Event.CHANGE,_eventHandler) this.addEventListener(FlexEvent.CREATION_COMPLETE, init); }

[flexcoders] Re: Dynamically create a Value Object...

2010-03-02 Thread aceoohay
See what I mean, I get criticized roundly. Of course I have security enabled, including passing constantly changing tokens (unique for each user for each login for each transaction) from the front end to the backend, that need to match. I suppose if there were a clever user that had lots of

Re: Re[flexcoders] strict user input in TextInput

2010-03-02 Thread Alex Harui
I’d call preventDefault() on the textInput event. On 3/2/10 9:48 PM, Peeyush Tuli peeyus...@gmail.com wrote: not sure.. but check if this helps http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetailextid=1049969 you might need to modify the original code.. ~Peeyush