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

[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 yongha...@... wrote: Hi all,does anyone ever before create custom

[flexcoders] Re: Max Chr limit in TextArea

2009-07-11 Thread Don Kerr
/ 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: [flexcoders] Max Chr limit in TextArea I have a large html text log loading

[flexcoders] Max Chr limit in TextArea

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

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

2009-07-10 Thread Don Kerr
= 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 vin.f...@... wrote: Hi, I have noticed a issue. In an advanced datagrid if you open a row which is the last row

[flexcoders] Re: AdvacncedDataGrid: Column Group Issue

2009-07-10 Thread Don Kerr
Try something like this below ... Don Kerr mx:AdvancedDataGrid fontSize=9 id=linksDG width=100% height=100% dataProvider={linksDP} change=changeLink(linksDG.selectedItem.linkID); mx:groupedColumns mx:AdvancedDataGridColumn width

[flexcoders] Re: AdvacncedDataGrid: Column Group Issue

2009-07-10 Thread Don Kerr
--- In flexcoders@yahoogroups.com, Don Kerr fusionp...@... wrote: Try something like this below ... Don Kerr mx:AdvancedDataGrid fontSize=9 id=linksDG width=100% height=100% dataProvider={linksDP} change=changeLink(linksDG.selectedItem.linkID); mx:groupedColumns

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

2009-07-01 Thread Don Kerr
, into Flex! Awesome stuff. Don Kerr --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... 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

[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

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

2009-02-23 Thread Don Kerr
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 tom.chiver...@... wrote: On Thursday 19 Feb 2009, Don Kerr wrote: All my Flex 3 apps work fine with Flash Player 9, but crash the browser when the user

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

[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@yahoogroups.com, bsyyu ben.s

[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

[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

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

2009-02-18 Thread Don Kerr
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 fusionp...@... wrote: 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

[flexcoders] Re: ModuleLoader with full url

2009-01-04 Thread Don Kerr
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 manish.jeth...@... wrote: On Sat, Jan 3, 2009 at 7:17 PM, Don Kerr fusionp...@... wrote: The very

[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 hyder_...@... wrote: How do I get the first n items in an XMLList? I'm not very familiar

[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

[flexcoders] Re: SWFLoader source

2008-11-24 Thread Don Kerr
@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, November 23, 2008 2:23 AM To: flexcoders@yahoogroups.com

[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 b+(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

[flexcoders] Flash 10 Crashes Browser -repost

2008-11-11 Thread Don Kerr
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] 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: Flash 10 browser crash

2008-11-05 Thread Don Kerr
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 On 11/5/08 11:24 AM, Don Kerr [EMAIL

[flexcoders] Re: Flash 10 browser crash

2008-11-05 Thread Don Kerr
=mx.charts.renderers.CircleItemRenderer adjustedRadius=10 radius=3/ Not too concerned about it, so I just removed the radius property for now. I'll still post it as a potential bug, but it might be just due to it being deprecated. Thanks! Don --- In flexcoders@yahoogroups.com, Don Kerr [EMAIL PROTECTED] wrote: Thanks Matt

[flexcoders] App within App

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

[flexcoders] Re: App within App

2008-10-14 Thread Don Kerr
application. Here is an example: http://www.cflex.net/showFileDetails.cfm?ObjectID=690 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Don Kerr Sent: Tuesday, October 14, 2008 1:17 PM To: flexcoders

[flexcoders] Re: Tree from flat query

2008-08-24 Thread Don Kerr
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:[EMAIL PROTECTED] On Behalf Of Don Kerr Sent: Saturday, August 23, 2008 7:42 AM To: flexcoders

[flexcoders] Re: Mail Merge...

2008-08-24 Thread Don Kerr
; } /style /head 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@yahoogroups.com

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

2008-08-24 Thread Don Kerr
setting editorDataField to selected works for me mx:DataGridColumn headerText=Region Review width=120 dataField=regionReview editorDataField=selected rendererIsEditor=true mx:itemRenderer mx:Component mx:CheckBox/ /mx:Component /mx:itemRenderer /mx:DataGridColumn Don Kerr

[flexcoders] Re: Mail Merge...

2008-08-24 Thread Don Kerr
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 flexcoders@yahoogroups.com, Don Kerr fusionpage@ wrote: Paul, On my http://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 fusionpage@ wrote: setting editorDataField to selected works

[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

[flexcoders] Re: Datagrid filterfunction results

2008-07-31 Thread Don Kerr
() 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 results convert what toArray()? I don't know where the filterFunction results

[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: Datagrid filterfunction results

2008-07-30 Thread Don Kerr
: 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 have a dataProvider feeding a dataGrid. I have a filterFunction that filters the DP down

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

[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

[flexcoders] Re: ADG MultipleRows FilterFunction

2008-07-20 Thread Don Kerr
; } --- 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 execute a filterfunction within the same ADG? I'm trying

[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: Label text={myHSlider.values[0]} - {myHSlider.values[1

[flexcoders] Re: Flex and CFC issues

2008-06-05 Thread Don Kerr
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, I am extremely new to Flex but I have been doing ColdFusion for a while now

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

2008-06-05 Thread Don Kerr
formats between AS and CF? AS 0-6 CF 1-7? Just a thought. Cheers, Craig --- In flexcoders@yahoogroups.com, Don Kerr fusionpage@ wrote: User selects date from date field. Saves. Date reflected in dataGrid displays GMT-05. Server time zone is GMT-06. Why? PROBLEM The user is scheduling

[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, Technical Cost is (1M,1M-25M, 25M) Schedule

[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] Re: programmatically showing data tips on a chart

2008-06-04 Thread Don Kerr
{ return b+(hd.item.crgDate.getMonth()+1).toString() + '/'+ hd.item.crgDate.getDate()+/b + br+ hd.item.docNumber + br +hd.item.type + br +hd.item.opr + br; } Don Kerr --- In flexcoders@yahoogroups.com, Ofir

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

[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 server, you can do both. http

[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: SWF Cache

2008-05-21 Thread Don Kerr
for always ensuring my flex apps load the current version. Maybe there is something in Actionscipt that I can do to force reload of the swf from the server? I don't know. Any suggestions? --- In flexcoders@yahoogroups.com, Don Kerr [EMAIL PROTECTED] wrote: How can I prevent my Flex app swf from being

[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.com, Kevin Fauth

[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 mx:SummaryField operation=SUM dataField=projectTotal label=projectTotal/ Doesn't Work

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

2008-03-29 Thread Don Kerr
this page http://livedocs.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 wrote: I've been using this code below

[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

[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

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

2008-03-25 Thread Don Kerr
question is how to update database with cfc after I pass updated ArrayCOllection from Flex. Thanks a lot Mark --- In flexcoders@yahoogroups.com, Don Kerr fusionpage@ wrote: I put this demo together for my Space City AUG meeting to show the basics of ColdFusion-Flex. I think

[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

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

[flexcoders] Re: HTML Wrapper

2008-03-21 Thread Don Kerr
:[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 page in /bin contains metatags for search description and keywords. Each time I compile in Flex Builder 3, this html gets overwritten

[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, Tracy Spratt tspratt@ wrote: You should be making

[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 via SCAUG onAIR here http://www.spacecityaug.com I

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

2008-03-02 Thread Don Kerr
hasn't missed a beat so far. Cheers Dmitri. --- In flexcoders@yahoogroups.com, Don Kerr fusionpage@ wrote: Thank you Dmitri. I just looked into XMLSocket. Looks like that would work great to test connection to host. In my scenario, the site, spacecityaug.com, would load just

[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

[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] 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. --- In flexcoders@yahoogroups.com, Don Kerr fusionpage@ wrote

[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] 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 previous install of the dotAir file exists Steps

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

2008-02-26 Thread Don Kerr
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 directly by Flex. --- In flexcoders@yahoogroups.com, Don Kerr fusionpage

[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

[flexcoders] Re: Flex Feedback for the Future

2008-02-12 Thread Don Kerr
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] wrote: one of my personal gripes, an RTE

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

[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 ?xml version=1.0 encoding=UTF-8? services-config

[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