[flexcoders] Specs for a good Flex/Coldfusion machine?

2006-02-02 Thread Andora, Greg
Hello All, I've been asked to provide the optimal requirements for our flex server. We have 4-5 Flex applications in development (with moreon our plate for thefuture)for our intranet each of which won't have more than around 400 users and these 400 users will not be constant users

RE: [flexcoders] problem with arrays

2005-11-23 Thread Andora, Greg
Title: problem with arrays It looks like you arejust putting a reference to temp_arr instead of it actually creating a new array for the new value in testArray. testArray.addItemAt(num, temp_arr); What you probably want to do is this instead is use concat() to create a duplicate of

RE: [flexcoders] Checkbox value

2005-11-22 Thread Andora, Greg
Title: Checkbox value If you create a custom component extending the checkbox component, you can accomplish this byadding a property to your checkbox. The AS for creating your property would look "something"like the below...I haven't tested it, so don't shoot me if I'm : private var

[flexcoders] Custom Tab Navigation Components

2005-11-16 Thread Andora, Greg
Hey all, I was wondering if anybody has already made (and has available) any custom Tab Navigation components that allow the toggling of the visibility of a tab without having to add and remove elements from the viewstack that is its dataProvider. Don't want to duplicate any work if

RE: [flexcoders] Effects Problem

2005-11-15 Thread Andora, Greg
I missed that, it didn't help, but thanks for catching that. It looks like we are going to go in a different direction, so I may not have to worry about this (at the moment) after all. Thanks. Thank you,Greg Andora From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

[flexcoders] Flex Effects Framework

2005-11-02 Thread Andora, Greg
Hey all, Back in May we saw a sneak of the Flex Effects Frameworkin the Iteration:two blog. I was wondering if this was ever released and if so, isthere is any documentation for it? I found Alex's Animation Package, but can't find any mention of the Flex Effects Framework.

[flexcoders] Changing colors in images

2005-10-31 Thread Andora, Greg
Hello all, I was wondering if I could get some advice on the best way to import images that I can drag and drop around the screen and change the colors of. For instance, if I have images of different states ina toppanel and want to drag one of them to a panel below, after the drop is

[flexcoders] Need Debugging help?: Expediting Application Development with th e Flex Application Starter Toolkit (FAST)

2005-10-06 Thread Andora, Greg
Hey all, Some great tools available here, I haven't seen it mentioned in the list, so I thought I'd let you all know it is out there. http://www.macromedia.com/devnet/flex/articles/fast_userguide_print.html For those of you who have seen this, I was wondering if anybody has integrated

[flexcoders] Problem with ServiceLocator in Cairngorm

2005-10-03 Thread Andora, Greg
Hello everyone, I'm running into a problem using the ServiceLocator within my Delegate contructor. The Flash Player Debugger is providing no help because it is returning an error regarding RectBorder.as and hiding the true problem. In my code (pasted below), you can see I have an

RE: [flexcoders] Problem with ServiceLocator in Cairngorm

2005-10-03 Thread Andora, Greg
First of all, I should note that I found a workaroundabout 20 minutes ago where instead of retrieving the ServiceLocator, I can use mx.core.Application.application. I don't know if this is a solution or "cheating", but I saw the services retrieved like this instead of using the

[flexcoders] Empty Movie

2005-10-02 Thread Andora, Greg
Hi all, I'm building an application using Flex with Cairngorm and for some reason the Flex application isn't loading. I am not getting any errors in the browser and I can see the Initializing progress bar for a split second (it doesn't fill up) before the page "thinks" it is loaded.

RE: [flexcoders] Empty Movie

2005-10-02 Thread Andora, Greg
Never mind, I've narrowed down the problem to my controller adding commands that go to the CF side of things. Still odd it doesn't give any type of errors though. Thanks. Thank you,Greg Andora From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andora, GregSent:

[flexcoders] [ChangeEvent()] and binding

2005-04-01 Thread Andora, Greg
Title: [ChangeEvent()] and binding Hi all, I'm trying to expose a property of a custom component to be available for binding and can't seem to get it tor work. Below is the code for a very basic example of what I'm trying to do. I have a property (myVar) whose changes are triggered by

RE: [flexcoders] Making an array of buttons

2005-04-01 Thread Andora, Greg
Title: Message You never actually call your addnumbersup() function. If you place it in your placenumberdown() function, it should start working. For example: public function placenumberdown(){ addnumbersup(); thenumberitself.text =String(addup);} Thank you, Greg Andora

RE: [flexcoders] Making an array of buttons

2005-04-01 Thread Andora, Greg
Title: Message Also, to make the array of Numbers (not objects with a property named "Number"), you'd probably rather have your array object like this: mx:Array id="numberstoaddup" mx:Number0/mx:Number mx:Number1/mx:Number mx:Number2/mx:Number mx:Number3/mx:Number mx:Number4/mx:Number

RE: [flexcoders] [ChangeEvent()] and binding

2005-04-01 Thread Andora, Greg
quot;myVar=thisText.text;" / /mx:Canvas Thanks -Ashish From: Andora, Greg [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 11:05 AMTo: 'flexcoders@yahoogroups.com'Subject: [flexcoders] [ChangeEvent()] and binding Hi all, I'm

[flexcoders] Change Events for Custom Classes

2005-03-28 Thread Andora, Greg
Title: Change Events for Custom Classes I'm wondering if there is a way (and if there is, how would I go about doing it) I can create a change event for a custom MXML class based for a public property. For example, I have an MXML file called MyClass and when the parent application changes

Layout Problems

2005-02-16 Thread Andora, Greg
Title: Layout Problems Hello, Can anybody tell me why this isn't workingand how to make it work? I'm trying to get the formItem below to display all on one line, it doesn't seem to matter how wide the application is, it is always displaying incorrectly (with the checkbox, label, and

RE: [flexcoders] Layout Problems

2005-02-16 Thread Andora, Greg
Title: Message That was it, thanks a lot Jeff. -Original Message-From: Jeff Tapper [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 12:19 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Layout Problems Actually, FormItem does have a direction attribute, which