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

2008-02-05 Thread nasawebguy
at the class and see how they do it and u can always use Math.random() to give random colors. The way i seen it done in everybook is just Math.random()*0xFF - Original Message From: nasawebguy [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 4, 2008 4:24:36 PM

[flexcoders] generate unique colors for per-item fill

2008-02-04 Thread nasawebguy
How do I generate a list of unique colors dynamically in AS? similar to how Flex does in default charts, except in a per-item fill scenario? CONTEXT I want to color code an Hlist of categories to match the dot colors in a per-item filled Plot Series. I have an arrayCollection dataProvider that

[flexcoders] Re: Streaming Video in Flex using Windows 2003 Server

2008-01-31 Thread nasawebguy
Thank you Greg. I'll look into this article. I'm open to progressive download for sure...just didn't know how to do it in a Flex app. Don --- In flexcoders@yahoogroups.com, greg h [EMAIL PROTECTED] wrote: Hi Don, For video in Flex/Flash there are three options: streaming, progressive

[flexcoders] Streaming Video in Flex using Windows 2003 Server

2008-01-29 Thread nasawebguy
Anyone have any examples of how to code Flex to stream a video hosted on a Windows 2003 streaming service? Once I enable the streaming service on my server, I need to know: 1) How to point Flex to that file 2) AS code to initiate the streaming. My assumption is that I need to use a streaming

[flexcoders] Re: Streaming Video in Flex using Windows 2003 Server

2008-01-29 Thread nasawebguy
. If interested contact [EMAIL PROTECTED] -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nasawebguy Sent: Tuesday, January 29, 2008 5:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Streaming Video in Flex using Windows 2003

[flexcoders] Conflict Management using Flex/CF references?

2008-01-24 Thread nasawebguy
Any suggestions on getting started with the conflict management (concurrent/simultaneous users hitting same record) features of Flex 3? I have a Flex 3/ColdFusion app that I'd like to expand beyond just remoteObject/Remoting to prevent users from stomping on each others data. What can I do with

[flexcoders] Chart Date Time

2008-01-23 Thread nasawebguy
I have an existing arrayCollection coming in that looks like: id,mydate,type,... 1,1/1/2008,type1 2,1/2/2008,type2 3,1/7/2008,type3 4,1/7/2008,type1 5,1/8/2008,type2 ... This is a dataProvider for a dataGrid. What I'd like to do is create a new dataProvider for a chart, based on this existing

[flexcoders] Re: Chart Date Time

2008-01-23 Thread nasawebguy
I solved it via ColdFusion server-side for now. Thanks anyway. Don --- In flexcoders@yahoogroups.com, nasawebguy [EMAIL PROTECTED] wrote: I have an existing arrayCollection coming in that looks like: id,mydate,type,... 1,1/1/2008,type1 2,1/2/2008,type2 3,1/7/2008,type3 4,1/7/2008

[flexcoders] Re: Application background colour during pre-loader

2008-01-16 Thread nasawebguy
just a note of thanks! This helped me too. Don --- In flexcoders@yahoogroups.com, Peter Baird [EMAIL PROTECTED] wrote: You need to declaritively set the backgroundColor property directly in the application tag (not in css file). So: mx:Application backgroundColor=#FF ... On

[flexcoders] Re: Using per-item fills in PlotSeries

2008-01-12 Thread nasawebguy
, nasawebguy dkerr@ wrote: Single Series only I see how to change the color of each data item based on the item.yValue. Very slick. (see my code below). However, I'd like my conditions to be compared to data in my dataProvider for each item, instead of just the yValue. For example

[flexcoders] Re: Plot Chart drag drop

2008-01-11 Thread nasawebguy
documented. Converting from screen to data is possible on your chart via several mechanisms. Data binding should take care of refreshing your chart. hth Simon --- In flexcoders@yahoogroups.com, nasawebguy dkerr@ wrote: Can you drag n' drop OR move a data point from one place to another

[flexcoders] Re: Plot Chart drag drop

2008-01-11 Thread nasawebguy
at CartesianChart dataToLocal and localToData they convert from a pixel point to a data point and vice versa. If you want to get really clever then Ely Greenfield had a data canvas on his quietlyscheming blog. --- In flexcoders@yahoogroups.com, nasawebguy dkerr@ wrote: Thank you. How

[flexcoders] Re: a checkbox in mx:DataGrid

2008-01-11 Thread nasawebguy
This should help point you in the right direction... Don mx:DataGridColumn textAlign=center headerText=Cmplt width=45 editorDataField=selected rendererIsEditor=true dataField=completed mx:itemRenderer

[flexcoders] Re: How to integrate multiple Flex application in a one-site Flex application?

2008-01-11 Thread nasawebguy
Do they have to be three full Flex applications? Or could the three be MXML components brought in via a ViewStack/TabNav? I too was wondering if their can be children apps within a parent app, similar to mxml components within one app. But, since they all would have mx:Application in them, I

[flexcoders] Using per-item fills in PlotSeries

2008-01-11 Thread nasawebguy
Single Series only I see how to change the color of each data item based on the item.yValue. Very slick. (see my code below). However, I'd like my conditions to be compared to data in my dataProvider for each item, instead of just the yValue. For example, my dataProvider includes type. type can

[flexcoders] Plot Chart drag drop

2008-01-10 Thread nasawebguy
Can you drag n' drop OR move a data point from one place to another inside a chart and have it update the chart and dataprovider? For example, if my x-axis is date, and a datapoint sits at 1/9/2008, and the user moves that datapoint to 2/9/2009, the chart/dataProvider would update the new date

[flexcoders] Re: Flex SSL over AMF with ColdFusion services-config.xml

2008-01-05 Thread nasawebguy
will appear in: C:\Documents and Settings\yourusername\Application Data\Macromedia\Flash Player\Logs\flashlog.txt On windows I use tail.exe from cygwin to monitor the file. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nasawebguy Sent

[flexcoders] Re: Flex SSL over AMF with ColdFusion services-config.xml

2008-01-03 Thread nasawebguy
:[EMAIL PROTECTED] On Behalf Of nasawebguy Sent: Wednesday, January 02, 2008 8:45 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex SSL over AMF with ColdFusion services-config.xml When I use smartsniff/Charles, my remoteObject content is not encrypted/https/port 443. IE/Firefox

[flexcoders] Re: Developing Flex against CF Server

2008-01-03 Thread nasawebguy
://learncf.com From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nasawebguy Sent: Thursday, 3 January 2008 1:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Developing Flex against CF Server Dale, I feel your pain. Flex Builder does need more intuitive

[flexcoders] Re: Flex SSL over AMF with ColdFusion services-config.xml

2008-01-03 Thread nasawebguy
cygwin to monitor the file. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nasawebguy Sent: Thursday, January 03, 2008 10:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex SSL over AMF with ColdFusion services-config.xml

[flexcoders] Flex SSL over AMF with ColdFusion services-config.xml

2008-01-02 Thread nasawebguy
When I use smartsniff/Charles, my remoteObject content is not encrypted/https/port 443. IE/Firefox shows SSL to the user, eventhough the data is NOT actually encrypted over AMF! Below is my services-config.xml file and remoteObject code snips. I've been researching this all day with no clear

[flexcoders] Re: Offline Work Support in Flex 2

2008-01-02 Thread nasawebguy
Take a look at Adobe AIR. Very cool offline/online sync capability. Don --- In flexcoders@yahoogroups.com, nirav_eng_comp [EMAIL PROTECTED] wrote: Hi, Offline Work Support is possible in flex or not? I want to provide offline mode facility in my web application. User can work offline

[flexcoders] Re: Developing Flex against CF Server

2008-01-02 Thread nasawebguy
Dale, I feel your pain. Flex Builder does need more intuitive and support different develop/production scenarios, especially where the developer isn't running locally or even on a local network. It can be confusing. It is assumed that you're using a dev version of CF on your dev box. (ideal

[flexcoders] Re: TabNavigator hide/show tabs

2007-11-08 Thread nasawebguy
/flexlib/controls/SuperTabBar.html component from flexlib. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com nasawebguy wrote: I want to show/hide tabs based on user permissions. Permissions work fine on combo boxes, etc. But not tabs. What I do

[flexcoders] Re: TabNavigator hide/show tabs

2007-11-08 Thread nasawebguy
/mx:Canvas mx:Canvas id=t3 label=tab 3 /mx:Canvas mx:Canvas id=t4 label=tab 4 /mx:Canvas /mx:TabNavigator --- In flexcoders@yahoogroups.com, nasawebguy [EMAIL PROTECTED] wrote: Thanks Scott. I look it over some...very nice. But, I don't readily see an option

[flexcoders] TabNavigator hide/show tabs

2007-11-07 Thread nasawebguy
I want to show/hide tabs based on user permissions. Permissions work fine on combo boxes, etc. But not tabs. What I do on the combos is simply set myCB.visible = true, if they have permissions to see it. I tried things like setting the tab canvas to true/false. Didn't do anything. I tried

[flexcoders] Re: getChildren() ... what's in it?

2007-09-05 Thread nasawebguy
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nasawebguy Sent: Tuesday, September 04, 2007 8:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] getChildren() ... what's in it? I'm trying to save the Panel children of a Canvas to the database. Docs say

[flexcoders] Re: getChildren() ... what's in it?

2007-09-05 Thread nasawebguy
child:DisplayObject = getChildAt(i); trace(child.x, child.y, child.width, child.height); } - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nasawebguy Sent: Tuesday, September 04, 2007 8:12 PM To: flexcoders@yahoogroups.com

[flexcoders] getChildren() ... what's in it?

2007-09-04 Thread nasawebguy
I'm trying to save the Panel children of a Canvas to the database. Docs say myCanvas.getChildren() creates an array. How can I output the contents of getChildren() to an Alert or something? Just to confirm what data is in it? I need to know if the getChildren() will give me back the

[flexcoders] Re: Flex RichTextEditor/WYSIWYG editor

2007-04-08 Thread nasawebguy
? Thanks, Don --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: Take a look at textField.useRichTextClipboard. - Dan Freiman On 26 Mar 2007 18:46:20 -0700, nasawebguy [EMAIL PROTECTED] wrote: I've tried pasting from MS Word, Rich Text, HTML pages, etc

[flexcoders] Flex RichTextEditor/WYSIWYG editor

2007-03-26 Thread nasawebguy
I've tried pasting from MS Word, Rich Text, HTML pages, etc. into the Flex RichTextEditor, but everything (bullets, bold, colors, links, tables) gets converted to plain text on paste. Same goes for other Flex options like http://flashtexteditor.com/flexdemo/full/ . I've used Ektron's

[flexcoders] Re: Simple form submit example

2007-03-16 Thread nasawebguy
:[EMAIL PROTECTED] On Behalf Of nasawebguy Sent: Sunday, March 04, 2007 12:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Simple form submit example I need basic example code for a simple form submit. I'm using a flex form and have a ColdFusion CFC to do the insert. What

[flexcoders] Simple form submit example

2007-03-04 Thread nasawebguy
I need basic example code for a simple form submit. I'm using a flex form and have a ColdFusion CFC to do the insert. What I need is what gets the two talking? I'm not using FDS at this point. Just ColdFusion MX7.02. I assume I should use a remoteobject, but I don't know how to pass the

[flexcoders] Re: filter AS syntax question

2007-02-14 Thread nasawebguy
And for finding a match within a comma-separated String see below: http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/js/html/wwhelp .htm?href=1875.html Paul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nasawebguy Sent

[flexcoders] Re: filter AS syntax question

2007-02-13 Thread nasawebguy
, I really do appreciate your help! Don --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Saturday 10 Feb 2007, nasawebguy wrote: return(ProductItem.Product == item.Product OR ProductItem.Product ~= item.ProductRelatedProducts); return (a == b

[flexcoders] filter AS syntax question

2007-02-10 Thread nasawebguy
In this Flex/RemoteObject/CFC app I'm developing: http://66.219.52.136/simple/bin/simple.html I have two columns in my drivergrid 1) Product (which are single product name such as: TravelMate 8000) 2) RelatedProducts(comma separate string of product names such as: TravelMate 8000, TravelMate

[flexcoders] Re: navigateToURL bind to datagrid selecteditem

2007-02-08 Thread nasawebguy
click=doNavigate() ... / --- In flexcoders@yahoogroups.com, nasawebguy dkerr@ wrote: I have a linkbutton called Download The downloaded filename is in a datagrid column called uploadedfile. This uploaded filename varies, but the path stays the same www.mydomain.com/synapse/data

[flexcoders] navigateToURL bind to datagrid selecteditem

2007-02-07 Thread nasawebguy
I have a linkbutton called Download The downloaded filename is in a datagrid column called uploadedfile. This uploaded filename varies, but the path stays the same www.mydomain.com/synapse/data/7117/documents/#uploadedfile# When the user selects a row in drivergrid, the driver details appear

[flexcoders] Re: mx:DataGrid variable columns

2007-01-08 Thread nasawebguy
myColumns.push(myDGC); cfgrid.columns = myColumns; You can probably find some examples of this on CFlex or other sites. HTH, Doug --- In flexcoders@yahoogroups.com, nasawebguy dkerr@ wrote: I have tables in the database that the user can change via a ColdFusion application, therefore

[flexcoders] Re: mx:DataGrid variable columns

2007-01-08 Thread nasawebguy
probably find some examples of this on CFlex or other sites. HTH, Doug --- In flexcoders@yahoogroups.com, nasawebguy dkerr@ wrote: I have tables in the database that the user can change via a ColdFusion application, therefore the columns in my Flex DataGrid need to be dynamic. How do I

[flexcoders] mx:DataGrid variable columns

2007-01-07 Thread nasawebguy
I have tables in the database that the user can change via a ColdFusion application, therefore the columns in my Flex DataGrid need to be dynamic. How do I modify the code below to dynamically generate the gridcolumns? Thanks, Don Kerr ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Flex in Tex

2006-11-01 Thread nasawebguy
Looking for instructor-led Flex 2 training in Texas. Any recommendations? 1) Intro to OOP 2) Intro to Actionscript 3.0 3) Flex Builder 2 4) Flex/ColdFusion Integration Thanks, Don -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404

2006-10-25 Thread nasawebguy
I'm running Flex Builder 2 connecting to a ColdFusion MX Enterprise 7.02 server. I have a simple app that calls a CFC with RemoteObject and I get the following error: [RPC Fault faultString=Send failed faultCode=Client.Error.MessageSend faultDetail=Channel.Connect.Failed error