[flexcoders] Re: custom validate email with tooltip

2009-07-26 Thread Don Kerr
Did you check out the EmailValidator . Comes with Flex and does what you need without custom code http://livedocs.adobe.com/flex/3/html/help.html?content=validators_7.html Don Kerr --- In flexcoders@yahoogroups.com, "yonghan79" wrote: > > Hi all,does anyone ever befo

[flexcoders] Re: I want to render gantt chart using datagrid

2009-07-26 Thread Don Kerr
Check out ILOG. It is not free, but it is well worth the price. http://visudemos.ilog.com/webdemos/taskchart/taskchart.html The are a couple blogs about less powerful Gantt options. just google "Flex Gantt". I don't have them bookmarked right now. Don --- In flexcoders@yahoogroups.com, "vaj

[flexcoders] Re: Max Chr limit in TextArea

2009-07-11 Thread Don Kerr
> Adobe Systems Inc.<http://www.adobe.com/> > Blog: http://blogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of Don Kerr > Sent: Friday, July 10, 2009 6:34 PM > To: flexcoders@yahoogroups.com > Subject: [flexcode

[flexcoders] Re: AdvacncedDataGrid: Column Group Issue

2009-07-10 Thread Don Kerr
groups.com, "Don Kerr" wrote: > > Try something like this below ... > > Don Kerr > > dataProvider="{linksDP}" change="changeLink(linksDG.selectedItem.linkID);"> > >

[flexcoders] Re: AdvacncedDataGrid: Column Group Issue

2009-07-10 Thread Don Kerr
Try something like this below ... Don Kerr

[flexcoders] Re: Advanced DataGrid Issue Help???

2009-07-10 Thread Don Kerr
llPosition = mygrid.selectedIndex" Or possibly set the scroll position to the current selectedIndex + 1, to move the scroll bar enough. Don Kerr --- In flexcoders@yahoogroups.com, "vin.flex" wrote: > > > > Hi, > > I have noticed a issue. In an advanced datagrid if you

[flexcoders] Max Chr limit in TextArea

2009-07-10 Thread Don Kerr
work. Is there a way to truly increase/override the limit? Thanks, Don Kerr Manager, Space City Adobe User Group

[flexcoders] Re: Time Difference between two columns in DataGrid using itemrenderer

2009-07-01 Thread Don Kerr
Flex! Awesome stuff. Don Kerr --- In flexcoders@yahoogroups.com, Angelo Anolin wrote: > > I think you would find it better to do the calculation on the database itself. > > All database have a lot of date/time diff functions which you can use. That > way, you all simply bind the

[flexcoders] Time Difference between two columns in DataGrid using itemrenderer

2009-06-28 Thread Don Kerr
I have two columns in a datadrid, startTime (e.g. 04:30 PM) and endTime (e.g. 06:00 PM). Both are strings and varchar in the database. I want to add a column to the datagrid that displays the difference between these two times expressed in hours (e.g. 1.5 Hours). I'm trying to use an itemrende

[flexcoders] Re: Flex Apps on Flash 10 Crashes Browser

2009-02-23 Thread Don Kerr
er if you want the app to work in Flash 10? Currently I have Flash 9 debug running on Flex 3. Thanks, Don --- In flexcoders@yahoogroups.com, Tom Chiverton wrote: > > On Thursday 19 Feb 2009, Don Kerr wrote: > > All my Flex 3 apps work fine with Flash Player 9, but crash the browser

[flexcoders] Re: Browser Memory Consumption not coming down even after remove child

2009-02-19 Thread Don Kerr
See my earlier posting about Flash 10 memory issues and crashing IE. There are many bugs reported related to this on Adobe's bug tracking. Does your app just hang, or in some cases does it crash IE? Did your app work better/ok using Flash 9? Mine did not have any memory issues under Flash 9

[flexcoders] Re: Flex server language

2009-02-19 Thread Don Kerr
have many backends to a single Flex app. ... and the end user doesn't care what "shop" or "camp" your technology religion is anyway. :) Give CF a try. It will only take you a day to have your first Flex/CF app up and running! Don Kerr --- In flexcoders@yahoog

[flexcoders] Re: how to change titlebar text when iam executing a flex application

2009-02-19 Thread Don Kerr
Are you talking about inside Flex Builder or inside the browser? For the browser, use the pageTitle property in your mx:Application. If you're talking Flex Builder/Eclipse IDE, I'm not aware of any way to customize Eclipse to something other than the selected tab filename. Don Ker

[flexcoders] Re: Flex Apps on Flash 10 Crashes Browser

2009-02-18 Thread Don Kerr
to do something and it can't get > enough memory. I would like to know if this is going to be fixed soon also. > > On Wed, Feb 18, 2009 at 7:16 PM, Don Kerr wrote: > > > Still no resolution on Flash Player 10 bugs that crash IE7, IE8, firefox. > > It is a memory error

[flexcoders] Flex Apps on Flash 10 Crashes Browser

2009-02-18 Thread Don Kerr
Still no resolution on Flash Player 10 bugs that crash IE7, IE8, firefox. It is a memory error. All my Flex 3 apps work fine with Flash Player 9, but crash the browser when the user upgrades to Flash 10. There are many bugs reported on this in adobe's bug tracker, but I do not see any status

[flexcoders] Re: XMLList: get first n items

2009-01-04 Thread Don Kerr
You might look XMLListCollection. Loop through it and use getItemAt(n) to grab items. Don't have any example code right now, but Collections are powerful. Don --- In flexcoders@yahoogroups.com, "Hyder" wrote: > > How do I get the first n items in an XMLList? > I'm not very familiar with XML wor

[flexcoders] Re: ModuleLoader with full url

2009-01-04 Thread Don Kerr
nt places within the same parent app. Each has a unique id, but both load the same module. Not sure if that matters, since I'm new to using ModuleLoader. Don --- In flexcoders@yahoogroups.com, "Manish Jethani" wrote: > > On Sat, Jan 3, 2009 at 7:17 PM, Don Kerr wrot

[flexcoders] ModuleLoader with full url

2009-01-03 Thread Don Kerr
The very first time my Flex app is opened in the browser, I get this error TypeError: Error #1009: Cannot access a property or method of a null object reference. at ModuleInfo/completeHandler()[C:\autobuild\3.2.0\frameworks\projects\framework\src\m x\modules\ModuleManager.as:717] If I click Con

[flexcoders] Re: SWFLoader source

2008-11-24 Thread Don Kerr
oders@yahoogroups.com, Alex Harui <[EMAIL PROTECTED]> wrote: > > Depending on how you are loading, you can't load a second app with the same > name "myapp" > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Don Kerr > Sent: Sunday

[flexcoders] Re: Chart datatips

2008-11-23 Thread Don Kerr
Not clear what you are asking, but did you try dataTipFunction for custom dataTips? It lets you layout your dataTip any way you'd like . Generic example from one of my apps below... public function dtf(hd:HitData):String { return ""+(hd.item.evaldueDate.getMonth()+1).toString() +

[flexcoders] SWFLoader source

2008-11-23 Thread Don Kerr
Can SWFLoader load an app not within the same project/site folder? I have an application in http://www.mydomain.com/flex/project1/bin/myapp.swf I want to use SWFLoader to load this app inside another app located in a separate project2 site folder http://www.mydomain.com/flex/project2/bin/myapp

[flexcoders] Flash 10 Crashes Browser -repost

2008-11-11 Thread Don Kerr
uct my users to back up to Flash Player 9 until a workaround or fix is available from Adobe. In the meantime, If anyone has any suggestions on how to troubleshoot browser crashes...I'm all ears. Thanks, Don Kerr

[flexcoders] Re: Flash 10 browser crash

2008-11-05 Thread Don Kerr
ht be just due to it being deprecated. Thanks! Don --- In flexcoders@yahoogroups.com, "Don Kerr" <[EMAIL PROTECTED]> wrote: > > Thanks Matt. Will do. > > After some further troubleshooting, I've found it crashes when my > PlotChart MXML is there, but doesn'

[flexcoders] Re: Flash 10 browser crash

2008-11-05 Thread Don Kerr
t; wrote: > > We know that there are some crash bugs and we're working on addressing them. Can you please file a bug in JIRA against the Flash Player with the url to your app that crashes (or include the SWF in the bug) and make sure to set the bug type to crash? > > Matt >

[flexcoders] Flash 10 browser crash

2008-11-05 Thread Don Kerr
I have a flex app that worked fine in Flash 9, but it crashes the browser with flash 10 (on PC and Mac). It is not browser-specific. Any know issues with Flex 3, Flash 10, and browser crashes? Any solutions out there? Thanks, Don Kerr

[flexcoders] Re: App within App

2008-10-14 Thread Don Kerr
establish > communication with the loaded application. Here is an example: > > http://www.cflex.net/showFileDetails.cfm?ObjectID=690 > > > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTE

[flexcoders] App within App

2008-10-14 Thread Don Kerr
, I'd appreciate it. Thanks, Don Don Kerr Manager, Space City Adobe User Group www.spacecityaug.com

[flexcoders] Re: CheckBox DataGrid column itemRenderer not updating. Please help.

2008-08-24 Thread Don Kerr
Do you have editable="true" set in your DataGrid? Don --- In flexcoders@yahoogroups.com, "greg_lafrance" <[EMAIL PROTECTED]> wrote: > > Hmmm... That didn't seem to update the dataProvider. > > --- In flexcoders@yahoogroups.com, "Don Kerr"

[flexcoders] Re: Mail Merge...

2008-08-24 Thread Don Kerr
CF, but the approach I'm taking is using minimalist > middleware pieces in VB.NET. I'm trying to do as much in the DB > (Oracle) and the presentation layer (Flex) as possible, writing a few > minimal routines using fluorine and .net. > > Paul > > --- In flex

[flexcoders] Re: CheckBox DataGrid column itemRenderer not updating. Please help.

2008-08-24 Thread Don Kerr
setting editorDataField to "selected" works for me Don Kerr --- In flexcoders@yahoogroups.com, "greg_lafrance" <[EMAIL PROTECTED]> wrote: > > I have a column in a datagrid using CheckBox as itemRender, and user > checks CheckBoxes they want to

[flexcoders] Re: Mail Merge...

2008-08-24 Thread Don Kerr
11px; } This fixes the "BIG FONT" issue in when RTE htmlText is sent out inside an HTML email to the users or when it is fed to Word, PDF, excel, etc. I suggest you look into ColdFusion 8! Don Kerr Manager, Space City Adobe User Group --- In flexcoders@yahoogroup

[flexcoders] Re: Tree from flat query

2008-08-24 Thread Don Kerr
te an > object with a children property that is an ArrayCollection and stuff > objects with potential children property. When LVL goes down, start > adding to the appropriate level. > > > > > > From: flexcoders@yahoogroups.com [mailto:

[flexcoders] Tree from flat query

2008-08-23 Thread Don Kerr
I inherited a legacy sql server table (that I cannot change) that looks like table below. LVL is the unlimited levels within the tree (1-??), and within each level, there are unlimited parents and their unlimited children. I use remoteObject to pull in the query result as a flatDP. I want to fee

[flexcoders] Re: Datagrid filterfunction results

2008-07-31 Thread Don Kerr
eredResults:Array =dataProvider.toArray() > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Don Kerr > Sent: Wednesday, July 30, 2008 6:20 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Datagrid filterfunction re

[flexcoders] Re: popup window

2008-07-30 Thread Don Kerr
Try Text, not Label. --- In flexcoders@yahoogroups.com, "Dan Vega" <[EMAIL PROTECTED]> wrote: > > I have a popup window (a quick about win) and I am having an issue. How can > I add a bunch of text to the title windows content area. If I just add the > text it runs off the screen. I can set the wi

[flexcoders] Re: Datagrid filterfunction results

2008-07-30 Thread Don Kerr
t; wrote: > > toArray() > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Don Kerr > Sent: Wednesday, July 30, 2008 11:57 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Datagrid filterfunction results > > > > I

[flexcoders] Datagrid filterfunction results

2008-07-30 Thread Don Kerr
I have a dataProvider feeding a dataGrid. I have a filterFunction that filters the DP down to a subset of the dataProvider. I reference the dataProvider , myDG.dataProvider. But, how do I reference just the filtered down data? myDG.dataProvider gives me all data, not filtered data. Having trouble

[flexcoders] Re: ADG MultipleRows FilterFunction

2008-07-20 Thread Don Kerr
} return result; } --- In flexcoders@yahoogroups.com, "Don Kerr" <[EMAIL PROTECTED]> wrote: > > How do I allow the user to select multiple rows (by holding down CTRL > or SHIFT) and when they are done making selections, fire an event to >

[flexcoders] ADG MultipleRows FilterFunction

2008-07-20 Thread Don Kerr
How do I allow the user to select multiple rows (by holding down CTRL or SHIFT) and when they are done making selections, fire an event to execute a filterfunction within the same ADG? I'm trying to allow the user to filter down a grid data to only show all the rows they just selected. With the

[flexcoders] Re: hslider and binding to values

2008-06-08 Thread Don Kerr
Try getItemAt(0) instead of [0]. I had similar issues, not specific to your case, where this worked. Don Kerr --- In flexcoders@yahoogroups.com, "arieljake" <[EMAIL PROTECTED]> wrote: > > I know. > > What I am referring to is this: > > > > --- In

[flexcoders] Re: data visualization...creative idea?

2008-06-05 Thread Don Kerr
Thanks Gregor and Christophe! These are very nice options. I'll look into them further. Don --- In flexcoders@yahoogroups.com, "Don Kerr" <[EMAIL PROTECTED]> wrote: > > Any creative ideas on this? > > I have an change impact triad: Cost, Schedule, Technic

[flexcoders] Re: date in dataGrid wrong GMT? Dates sometimes one day off?

2008-06-05 Thread Don Kerr
the difference in day formats between AS and CF? > AS 0-6 CF 1-7? Just a thought. > Cheers, > Craig > > --- In flexcoders@yahoogroups.com, "Don Kerr" wrote: > > > > User selects date from date field. Saves. Date reflected in dataGrid > > displays GMT-05

[flexcoders] Re: Flex and CFC issues

2008-06-05 Thread Don Kerr
ouldn't have anything to do with your CFC, since it never gets to the point of hitting it. You'll get different errors if it is a CFC issue. Hope this helps. Don Kerr --- In flexcoders@yahoogroups.com, "Just give a guess..." <[EMAIL PROTECTED]> wrote: > > All, >

[flexcoders] Re: programmatically showing data tips on a chart

2008-06-04 Thread Don Kerr
tring { return ""+(hd.item.crgDate.getMonth()+1).toString() + '/'+ hd.item.crgDate.getDate()+"" + ""+ hd.item.docNumber + "" +hd.item.type + "" +hd.item.opr +

[flexcoders] date in dataGrid wrong GMT? Dates sometimes one day off?

2008-06-04 Thread Don Kerr
it might have something to do with how Flex handles the date in the dataGrid? Any ideas as to why dates would change by one day without user intervention? Thanks, Don Kerr

[flexcoders] data visualization...creative idea?

2008-05-28 Thread Don Kerr
Any creative ideas on this? I have an change impact triad: Cost, Schedule, Technical Cost is (<1M,1M-25M, >25M) Schedule is (<1mo,1mo-1yr,>1yr) Technical is (Minor,Moderate,Significant) When a change request (changeID) is proposed it is evaluated on these three scales for the purpose of comparis

[flexcoders] Re: SWF Cache

2008-05-22 Thread Don Kerr
Thanks Doug. It is "brilliantly simple" ... and I like using a CFC to handle it. I'll give this a try. Thanks! Don Kerr --- In flexcoders@yahoogroups.com, "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > If you can add content (besides your Flex app) to the

[flexcoders] Re: SWF Cache

2008-05-21 Thread Don Kerr
Thanks Kevin! I'll give it a try. Since I'm continual enhancing the apps for my users, ensuring the correct version is higher priority than a faster download. I appreciate the help. Don Don Kerr Manager, Space City AUG http://www.spacecityaug.com --- In flexcoders@yahoogroups.c

[flexcoders] Re: SWF Cache

2008-05-21 Thread Don Kerr
know. Any suggestions? --- In flexcoders@yahoogroups.com, "Don Kerr" <[EMAIL PROTECTED]> wrote: > > How can I prevent my Flex app swf from being cached? When I release a > new version, I want to ensure the user is using the latest swf. > > Thanks, > Don >

[flexcoders] SWF Cache

2008-05-21 Thread Don Kerr
How can I prevent my Flex app swf from being cached? When I release a new version, I want to ensure the user is using the latest swf. Thanks, Don

[flexcoders] Re: how do you guys handle reporting?

2008-04-07 Thread Don Kerr
I continue to use CF Report Builder, cfdocument, etc. for reporting in my Flex apps. I create a flex report using AdvancedDataGrid, etc. and then use the same CFCs to generate cf reports. I simple add a button bar at the top of the Flex report that opens the CF reports in a new browser tab. Works

[flexcoders] SummaryField lesson learned

2008-03-30 Thread Don Kerr
FYI only SummaryField in AdvancedDataGrid doesn't show summary totals unless the label matches the dataField. This is when summaryPlacement="group" . My dataProvider column is projectTotal Works Doesn't Work My first thought was that the label could be anything, as long as the dataField exac

[flexcoders] Re: filterFunction - blows up when item field blank

2008-03-29 Thread Don Kerr
ocs.adobe.com/flex/3/html/help.html?content=09_Working_with_Strings_09.html> for more info on string searches. > > > hth > Scott > > Scott Melby > Founder, Fast Lane Software LLC > http://www.fastlanesw.com > http://blog.fastlanesw.com > > > > Don Kerr

[flexcoders] filterFunction - blows up when item field blank

2008-03-27 Thread Don Kerr
I've been using this code below for a long time...but don't fully understand how it works:) It does work great, as long as both title and docNumber are not null. But it blows up if docNumber is null. 1) Can someone explain in words what indexOf does? Obviously it compares the two and spits out a n

[flexcoders] Re: Differences between Flex 3 standard and pro

2008-03-26 Thread Don Kerr
Short answer...If you have a need for Charting, go with Pro. Data Visualization and navigation via charts is a powerful capability of Pro. The AdvancedDataGrid in pro is useful, but just DataGrid that comes with Standard is great too. Compare the features of the AdvancedDataGrid to DataGrid. I r

[flexcoders] Re: How to pass Flex ArrayCollection to Coldfusion CFC?

2008-03-25 Thread Don Kerr
but this one is show us how to read > data from coldfusion cfc and save to flex Arraycollection. > > My question is how to update database with cfc after I pass updated > ArrayCOllection from Flex. > > Thanks a lot > > Mark > > --- In flexcoders@yahoogroups.com,

[flexcoders] Re: HTML Wrapper

2008-03-21 Thread Don Kerr
editing the template works great. Thanks Tracy. --- In flexcoders@yahoogroups.com, "Don Kerr" <[EMAIL PROTECTED]> wrote: > > Thanks. I'll give this a try. > > I appreciate the help from others as well. > Don > > > --- In flexcoders@yahoogroups.com,

[flexcoders] Re: HTML Wrapper

2008-03-21 Thread Don Kerr
> > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Don Kerr > Sent: Friday, March 21, 2008 12:46 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] HTML Wrapper > > > > My html pag

[flexcoders] Re: How to pass Flex ArrayCollection to Coldfusion CFC?

2008-03-21 Thread Don Kerr
I put this demo together for my Space City AUG meeting to show the basics of ColdFusion-Flex. I think these two examples will get you what you need http://www.fusionpage.com/flex/demos/bin/demos.html Don Kerr --- In flexcoders@yahoogroups.com, "markflex2007" <[EMAIL PROTECTED]&

[flexcoders] HTML Wrapper

2008-03-21 Thread Don Kerr
My html page in /bin contains metatags for search description and keywords. Each time I compile in Flex Builder 3, this html gets overwritten. I've been saving the metatags in a separate directory, then copy/pasting them into the new wrapper page. Is the solution to uncheck the generate HTML wrapp

[flexcoders] Re: Launch seamless AIR install from within Flex App

2008-03-02 Thread Don Kerr
anyone lauching an AIR app install from within a Flex app? --- In flexcoders@yahoogroups.com, "Don Kerr" <[EMAIL PROTECTED]> wrote: > > I have a mini-Air app I make available for AUG members to install on > their Desktop to get latest site content vi

[flexcoders] Re: user friendly No/Lost Connection alert

2008-03-02 Thread Don Kerr
ency etc. > Then I switched to Apache1/SSL - this thing hasn't missed a beat so far. > > > Cheers > Dmitri. > > > > --- In flexcoders@yahoogroups.com, "Don Kerr" wrote: > > > > Thank you Dmitri. I just looked into XMLSocket. Lo

[flexcoders] Re: user friendly No/Lost Connection alert

2008-02-29 Thread Don Kerr
--- In flexcoders@yahoogroups.com, "Dmitri Girski" <[EMAIL PROTECTED]> wrote: > > Hi Don, > > Probably you can use XMLSocket. You connect it to your server and when > connection breaks for any reason, XMSocket dispatches IOError event. > > Cheers, > Dmitri. &g

[flexcoders] Launch seamless AIR install from within Flex App

2008-02-29 Thread Don Kerr
I have a mini-Air app I make available for AUG members to install on their Desktop to get latest site content via SCAUG onAIR here http://www.spacecityaug.com I don't really like for them to have to download AIR exe and .air separately and it opens the door to support issues.:) I'd like to have

[flexcoders] user friendly No/Lost Connection alert

2008-02-29 Thread Don Kerr
Can anyone point me to examples of how to alert the user if/when connection to server is lost in a Flex app? So that they don't watch the spinning clock and wait for the fault...then send in hundreds of support requests:)? If the server is down or ColdFusion Flex Gateway is hung, I want to alert t

[flexcoders] Re: Flex hummmmmm in PC speakers...bizarre

2008-02-26 Thread Don Kerr
internals. What kind of work is being performed inside your app? > > Also, the monitor can cause interference if you have a large area of > intense color. In either case, it ultimately comes down to hardware > not being insulated as well as it should be, and isn't being caused

[flexcoders] Re: dot Air installation error 0

2008-02-26 Thread Don Kerr
Haven't found anything on adobe about this desktop shortcut bug. Anyone? --- In flexcoders@yahoogroups.com, "Don Kerr" <[EMAIL PROTECTED]> wrote: > > Scenario: > Running new Air 1.0 > Attempting to install a dotAir file, compiled with Flex3 > When, a previo

[flexcoders] dot Air installation error 0

2008-02-26 Thread Don Kerr
: Uncheck the "Add shortcut to desktop" and installs successfully If you keep the default checked, you get the error. Is this an issue with my app.xml file or a bug. I suspect the former, not the later. If anyone has seen this error, please let me know what the fix is. Thanks! Don Kerr

[flexcoders] Flex hummmmmm in PC speakers...bizarre

2008-02-15 Thread Don Kerr
Strangest thing. A user's speakers have a faint hum sound when a Flex App is open in their browser. Close it, sound goes away. I don't have any audio/video in the app. If he opens other web pages, no hummm sounds. Seem bizarre to me that a Flex app could generate some kind of vibration of th

[flexcoders] Re: Flex Feedback for the Future

2008-02-12 Thread Don Kerr
Keep up the great work on the Flex and ColdFusion Integration. I'd like to see more ColdFusion integration features, in general. --- In flexcoders@yahoogroups.com, "Joan Lafferty" <[EMAIL PROTECTED]> wrote: > > As we close up Flex 3 development, the team is evaluating existing Flex > feedback to

[flexcoders] Re: Flex Feedback for the Future

2008-02-12 Thread Don Kerr
w, my users have to re-highlight the text and set the color. You can't set the url and the color at the same time. Don Kerr "It is true that I said it, but it doesn't have to be truth to you." --- In flexcoders@yahoogroups.com, "Derrick Anderson" <[EMAIL PROTECTED]

[flexcoders] Re: Remoting over SSL

2008-02-07 Thread Don Kerr
Try hardcoding your url in the endpoint in services-config.xml I created this services-configAIR.xml file and it works for AIR. I also use this for SSL Flex apps, but without the hardcoded "http://www.synapsenow.com/flex2gateway/"; url Don

[flexcoders] Re: generate unique colors for per-item fill

2008-02-07 Thread Don Kerr
Thank you Sherif. For now, I solved it with a ColdFusion function and a Flex fillFunction private function myFillFunction(element:ChartItem, index:Number):IFill { var item:PlotSeriesItem = PlotSeriesItem(element); var randColor:SolidColo

[flexcoders] datagrid select to change query result in other datagrid

2006-10-27 Thread Don Kerr
Basic question...I think...I have a grid of agent name and a grid of tickets.  I'd like the user to select an agent and filter the tickets down to just the selected agent's tickets.I'm using remoteobject talking to a Cold Fusion CFC.  I'm new to AS and I'm trying to learn how to pass the selecte