RE: [flexcoders] Re: DataTransform.transformCache

2006-09-12 Thread Ely Greenfield
    No, that makes sense. and it sounds like you're doing the right thing.   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brendan MeutznerSent: Tuesday, September 12, 2006 4:20 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: DataTransform.

[flexcoders] DataGrid as actual Grid?

2006-09-12 Thread lostinrecursion
I think this is possible. I have a number of given values which will change dynamically. Each value corresponds to a certain width and height (which also changes depending on the set of data) - How can I represent this in a datagrid? For example: (Where x == a varying number) 100 200 300 400 1

RE: [flexcoders] Re: Fw: WatcherSetupUtil issue

2006-09-12 Thread Matt Chotin
From Paul (who wrote the binding support in 2.0)   For now, analzying the catalog.xml files seems like it will work fine. Alternatively, he could compile an application with the components in it and then look for the WatcherSetupUtil's in the generated SystemManager class.  Either wa

Re: [flexcoders] Re: cf query, xml & flex tr

2006-09-12 Thread Paul Hastings
On 9/12/06, bhaq1972 <[EMAIL PROTECTED]> wrote: > can you show us a dump (trace) of your cfquery returned object. sure. [object Object] ;-) the debugger is a bit more informative. thisMap = Object (@8fb2101) layers = Object (@8fb20e1) mapScale = "1:73,441" mapScaleFactor

[flexcoders] Need help auto starting a Java program to listen to msgs from Flex client

2006-09-12 Thread amalabie
I'm using messaging (JMS) to pass objects to a Java program that listens for messages on the Topic. My question is: How do I automatically get the Java program running so it can pick up messages? When I start it manually it does start to grab msg's off the message queue. Does JRun have some sort of

[flexcoders] Re: Removing outline from tabs

2006-09-12 Thread Mike Britton
I'm having the same problem. If you haven't already found a solution, I'll post back when I'm finished digging. Mike Britton -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups

[flexcoders] systemmanager root display

2006-09-12 Thread Angus Johnson
I'm loading a bunch of Flex 2 applications into a main application using a custom loader. I end up with an array of SystemManagers. I can call hooks in the sub applications with no problems. Without using SWFLoader how do I get the sub application into the main application display? Below is the

[flexcoders] Casting Value Objects

2006-09-12 Thread Pete Capra
Hi there,   I'm having a little trouble casting results from an RPC to a ValueObject. For example, I'm returning an array of objects from CF the object has two properties and I have created a VO class accordingly:   package com.xxx.xxx.model {       [Bindable]     public dynamic class M

[flexcoders] Re: Lost commit on data source with polling AMF

2006-09-12 Thread jeffjvroom
What is happening here is that the latency introduced by the poll is causing the client to receive the response from its "commit" before a previously queued pushed message to that client. By the time it receives the pushed message, it is "stale" - i.e. the previous version is not accurate anym

[flexcoders] Event propagation

2006-09-12 Thread gustavo.saume
Hello yall... im trying to comunicate controls with events, these controls are in diferent HBoxes.(they have diferent fathers in the tree hierarchy), but the control that listen doesnt work properly. i've tryed to do so in the bubbling and capture phase but nothing... in a different approach i

Re: [flexcoders] Re: DataTransform.transformCache

2006-09-12 Thread Brendan Meutzner
Ely,I'm creating an annotation that gets rendered on the chart at a physical location determined by a particular chart element.  When I load the annotation, I know the horizontal axis value of the chart item, and I know the y-value that item represents.  I use the transformCache method to get th

RE: [flexcoders] Re: DataTransform.transformCache

2006-09-12 Thread Ely Greenfield
    Hi Brendan. Can you give a little more detail of what you're trying to do and how you're solving it?  I have a nagging feeling you still might be mis-using the API in some way.   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brendan MeutznerSent: Tues

Re: [flexcoders] Re: DataTransform.transformCache

2006-09-12 Thread Brendan Meutzner
Bill,Thanks so much.  It was looking at the DataTransform object the wrong way.  Once you clarified below that an instance is tied to the Series, I was able to get my example working by calling the series instance related to that right axis. Thanks again,BrendanOn 9/12/06, bill_sahlas <[EMAIL PR

[flexcoders] Re: dateValidator question...

2006-09-12 Thread bill_sahlas
Adding missing Component declaration The full example app is this http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="init();"> --- In flexcoders@yahoogroups.com, "bill_sahlas" <[EMAIL PROTECTED]> wrote: > > >

[flexcoders] Re: Lost commit on data source with polling AMF

2006-09-12 Thread kwbillchan
I just verified it, it is a bug. Hope we can have a hotfix for it. --- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: > > > Hi All > > we have ancountered an issue with a datasource which has autocommit and > automerge turned on and uses an AMF channel with polling. > > The issue ari

[flexcoders] Re: mxml escape character??

2006-09-12 Thread Doug Lowder
... and if you need another option - :) --- In flexcoders@yahoogroups.com, "Chad Callahan" <[EMAIL PROTECTED]> wrote: > > I need to include the { and } characters inside of an mxml tag's > argument value but mxml reads the { and } as bindable. Is there a way > to escape the { and } character

RE: [flexcoders] background color of a text?

2006-09-12 Thread Ashish Goyal
You can just wrap your text or label component in a container with backgroundColor set to desired color. For eg:       -Ashish     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of oktay nba Sent: Saturday, September 09, 2006 12:31 PM To

[flexcoders] Re: DataTransform.transformCache

2006-09-12 Thread bill_sahlas
Hello, From one of our engineers that worked on Charting CartesianCharts can own multiple data transforms. Each data transform is associated with a specific set of axes...one horizontal, one vertical, etc.  When you specify a series, it gets associated with a single data transform, and hence a

[flexcoders] Re: mxml escape character??

2006-09-12 Thread Renaun Erickson
I read the post wrong, && gives you the booelean and inside a binding. Sorry wrong solution for your post. --- In flexcoders@yahoogroups.com, "Renaun Erickson" <[EMAIL PROTECTED]> wrote: > > Use > > && > > Renaun > > > --- In flexcoders@yahoogroups.com, "Chad Callahan" wrote: > > > > I need

Re: [flexcoders] mxml escape character??

2006-09-12 Thread Paul Andrews
- Original Message - From: Chad Callahan To: flexcoders@yahoogroups.com Sent: Tuesday, September 12, 2006 8:16 PM Subject: [flexcoders] mxml escape character?? I need to include the { and } characters inside of an mxml tag’s argument value but mxml

[flexcoders] Re: Flex with FMS (something like Breeze...)

2006-09-12 Thread Renaun Erickson
My Flex 2 and FMS example can be found here: http://renaun.com/blog/2006/08/22/87/ Renaun --- In flexcoders@yahoogroups.com, "Michael Ritchie" <[EMAIL PROTECTED]> wrote: > > I recently updated Adobe's FCS Text Chat example to work with Flex 2 > and FMS, you can find my post and example here: >

[flexcoders] Re: mxml escape character??

2006-09-12 Thread Renaun Erickson
Use && Renaun --- In flexcoders@yahoogroups.com, "Chad Callahan" <[EMAIL PROTECTED]> wrote: > > I need to include the { and } characters inside of an mxml tag's > argument value but mxml reads the { and } as bindable. Is there a way > to escape the { and } characters within the quotes? > >

RE: [flexcoders] Process CheckBoxes Displayed Inside a DataGrid

2006-09-12 Thread Tracy Spratt
When working with data-driven controls, you will almost always work with the dataprovider and not with the rendered display elements.  This is in part because the list based controls recycle the display elements when you scroll.  So you can’t loop through the rows of a dataGrid and read

Re: [flexcoders] mxml escape character??

2006-09-12 Thread Clint Modien
try   { = { } = }  On 9/12/06, Chad Callahan <[EMAIL PROTECTED]> wrote: I need to include the { and } characters inside of an mxml tag's argument value but mxml reads the { and } as bindable.  Is there a way to escape the { and } characters within the quotes?     CHAD CALLAHANPRO

[flexcoders] Rotating html text

2006-09-12 Thread jeremyrichman
I have a Text field that I want to rotate but it must display html text, not just plain text. I have embedded the font that I am setting in the html with the CSS font face style but on rotation, the text vanishes. I have tested this with the non-htmltext property, and it rotates fine provided

[flexcoders] mxml escape character??

2006-09-12 Thread Chad Callahan
I need to include the { and } characters inside of an mxml tag’s argument value but mxml reads the { and } as bindable.  Is there a way to escape the { and } characters within the quotes?     CHAD CALLAHAN PROGRAMMER T8DESIGN.COM | P 319.266.7574 - x195

Re: [flexcoders] fds/jms messaging. detecting client disconnection.

2006-09-12 Thread Tom Bray
Aldo,I instantiate it from a servlet that I've configured to load on startup via the following tags in C:\JRun4\servers\default\flex\WEB-INF\web.xml:        AppStartServlet     test.AppStartServlet    11    which I placed at the end of the list of servlets just before the section. 

[flexcoders] Process CheckBoxes Displayed Inside a DataGrid

2006-09-12 Thread phillips1021
Anyone know of a good tutorial or other resource for using checkboxes in a datagrid that the user can then click on and then click on a button below the datagrid. The button click will call a function that should update the database for just the rows the user has clicked (ie update the record for t

Re: [flexcoders] fds/jms messaging. detecting client disconnection.

2006-09-12 Thread Aldo Bucchi
Hi tom,looks like this might do it...now, where/when exactly are you instantiating this FlexSessionTest object??thanks,AldoOn 9/11/06, Tom Bray <[EMAIL PROTECTED]> wrote: Aldo,Here's some sample code that I used to know when a client disconnected.  The FlexSession.sessionDestroyed event corr

[flexcoders] Re: dateValidator question...

2006-09-12 Thread bill_sahlas
Based on what I see/read you need to specify an inputFormat var dateValidator:DateValidator = new DateValidator(); dateValidator.inputFormat = "MM/DD/"; var dateObj:Date = new Date(); Alert.show(dateValidator.validate(df.format(dateObj)).type); Alert.show(df.format(dateOb

[flexcoders] Re: cairngorm: managing hundred of views

2006-09-12 Thread dreuimar
Bjorn, THe difficult part with runtime stuff is that I think Flex is compiled as a SWF when it is first accessed in your container. I wanted something (I'm guessing through a Java RO) that would return all the mxml files in a given directory. The hard part is getting Flex to import them..I tried a

[flexcoders] Re: Need help using XML files without embedding them in SWF

2006-09-12 Thread Tim Hoff
Yes HTTPService.  The docs have some good examples.  Here is anothr simple example: http://www.cflex.net/showFileDetails.cfm?ObjectID=472&Object=File&ChannelID=1  -TH --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote:>> Er, use HTTPService rather than URLLoader, it will

RE: [flexcoders] Re: Need help using XML files without embedding them in SWF

2006-09-12 Thread Matt Chotin
Er, use HTTPService rather than URLLoader, it will take care of more for you.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of e_baggg Sent: Tuesday, September 12, 2006 7:35 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

RE: [flexcoders] My Adobe Developer Derby Xbox 360 Charity Auction

2006-09-12 Thread Mike Anderson
Yes, that is a very nice gesture -   Children are so precious - and after actually having one of your own, you truly understand what that means.   Sorry for the OT post - but a good cause always grabs my attention.   Mike :) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On B

RE: [flexcoders] Data interpolation in ColumnSets

2006-09-12 Thread Ely Greenfield
    Just to follow up on this, for everyone on the list...data effects should be assigned to individual column/bar/area series, not their parent sets.   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Anatole TartakovskySent: Saturday, September 09, 2006 6:

[flexcoders] sliderDataTip

2006-09-12 Thread gtsavdave
I am creating a video player utilizing the VideoDisplay component. I want to change the sliderDataTip property to use a custom class so that the tooltip will display the video time rather than the value (between 0 and 1). I am new to flex (and OOP). I have created a class that extends mx.control

[flexcoders] DataTransform.transformCache

2006-09-12 Thread Brendan Meutzner
Hi,I'm unable to figure out how to specify which verticalAxis (I have two) I want to use for the transformCache method on DataTransform.  I'd like to use the secondVerticalAxis in order to do the calculation.  Does somebody have a working example? Thanks,Brendan __._,_.___ -- Flexcoders Ma

RE: [flexcoders] Re: Datagrid with a dropdown column!

2006-09-12 Thread Joan Lafferty
Since your dataProvider has values of ‘b’, “i” and ‘e”, then, your ComboBox dataProvider should also have these values: myLabelFunction“>     bString>   i   e       Then, you can set a labelFunction on the ComboBox itemRenderer like this: private function myLabelFunction

[flexcoders] Re: WebORB for PHP with Flex

2006-09-12 Thread Renaun Erickson
You can find my comments on WebORB for PHP here http://renaun.com/blog/2006/09/06/94/ Also I did some stuff on SabreAMF another project: http://renaun.com/blog/2006/09/01/93/ As far as WebORB, they have a good foundation and solid package. There is an issue with the services-config.xml and how I

[flexcoders] Re: Flex with FMS (something like Breeze...)

2006-09-12 Thread Michael Ritchie
I recently updated Adobe's FCS Text Chat example to work with Flex 2 and FMS, you can find my post and example here: http://thanksmister.com/?p=26 The problem with the Adobe examples are that they are outdated and some of the code to update them is not easy to find. I wanted an updated and worki

Re: [flexcoders] My Adobe Developer Derby Xbox 360 Charity Auction

2006-09-12 Thread Brendan Meutzner
Rich,Way to go... you just earned my respect.BrendanOn 9/11/06, Rich Tretola <[EMAIL PROTECTED] > wrote: Hey all, Sorry to be off topic but it is for a good cause so please don't flame me. I just wanted to pass the word along that I have put my xBox 360 that w

[flexcoders] Re: WebService vs RemoteObject

2006-09-12 Thread bill_sahlas
Yup, the improvements in AMF protocol from older versions of CF is awesome - 7.02 supports the AMF3 (ActionScript 3.0/Flex 2.0) protocol and is much much quicker. --- In flexcoders@yahoogroups.com, "Darren Houle" <[EMAIL PROTECTED]> wrote: > > This was not designed as a controlled experiment, jus

[flexcoders] Rotate Effect Speed

2006-09-12 Thread Chad Callahan
Is it possible to change the speed of the Rotate effect?     CHAD CALLAHAN PROGRAMMER T8DESIGN.COM | P 319.266.7574 - x195 | 877.T8IDEAS | F 888.290.4675 This e-mail, including attachments, is covered by the Electronic Communications Privacy Act

Re: [flexcoders] Re: defaulting the cursor in a text input

2006-09-12 Thread Clint Tredway
thanks!On 9/12/06, Tim Hoff <[EMAIL PROTECTED]> wrote: Hi Clint, You have to set focus to the flash movie in the html wrapper file.  Unfortunately, IE is the only browser that allows you to do this.  Here is an example that works in IE: http://www.cflex.net/sho

[flexcoders] Re: Can somebody do a tutorial on UI design?

2006-09-12 Thread Tim Hoff
Here's the Cairngorm link on the labs site: http://labs.adobe.com/wiki/index.php/Cairngorm  -TH--- In flexcoders@yahoogroups.com, "Ralf Bokelberg" <[EMAIL PROTECTED]> wrote:>> What about the flex store? Andy updated it recently to the latest> version of Flex and Cairngorm. I'm not sure though, w

[flexcoders] Re: defaulting the cursor in a text input

2006-09-12 Thread Tim Hoff
Hi Clint, You have to set focus to the flash movie in the html wrapper file.  Unfortunately, IE is the only browser that allows you to do this.  Here is an example that works in IE: http://www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&objectID=462  -TH--- In flexcoders@yahoogroups.co

Re: [flexcoders] calendar component

2006-09-12 Thread hank williams
Alistair, your blog http://weblogs.macromedia.com/amcleod/ appears to be down or empty. Hank On 9/11/06, Alistair McLeod <[EMAIL PROTECTED]> wrote: > Hi, > > We're still working on the calendar component. I will post to my blog > (and here) when it is ready for release. > > Regards, > > Ali > --

[flexcoders] The Business of Flex/RIA Development

2006-09-12 Thread lostinrecursion
Hi all, Does anyone know of any places where I could review things such as example pricing, support fees, etc. The problem is I have been in the game for about five years now and I feel like I am grossly undercharging for my work. I just want to learn about averages for medium, small, enterprise a

[flexcoders] Re: properties file

2006-09-12 Thread bill_sahlas
This seems to be a taken a bit out of context - are you looking for a tool to manage props files? a class perhaps that someone has written? Does manage mean "manage multiple revisions" or "manage properties contents"? --- In flexcoders@yahoogroups.com, "Diego Guebel" <[EMAIL PROTECTED]> wrote: > >

[flexcoders] Re: calendar component

2006-09-12 Thread bghoward3
--- In flexcoders@yahoogroups.com, "Alistair McLeod" <[EMAIL PROTECTED]> wrote: > Thank you for the reply Ali, do you have an ETA on when this may be available, i am working on a government project and they are very interested in proof of concept. id like to hold off on developing the calendar

Re: [flexcoders] Setting breakpoints while debugging?

2006-09-12 Thread Douglas McCarroll
Hi All, I wrote: >> As far as I can see there's no way to set a breakpoint once I've started debugging. Franck de Bruijn replied: > Click the row in which you would like to have a breakpoint and > press CTRL-SHIFT-B, or use Run-Toggle Breakpoint from the menu. First of all, thanks Franck.

[flexcoders] Re: Binding the service result to HTTPservice

2006-09-12 Thread bill_sahlas
Hi Capho - Can I ask you to elaborate a bit more? Like, what error do you get (if any)? What do you expect vs what the actual output is? How about a full example (include all files/classes and source where possible) Bill --- In flexcoders@yahoogroups.com, "sinacapho" <[EMAIL PROTECTED]> wrot

[flexcoders] WebService vs RemoteObject

2006-09-12 Thread Darren Houle
This was not designed as a controlled experiment, just something I coded, noticed, and thought I'd pass on... I'm building a small Cairngorm application and one of it's functions is to display two sets of network user accounts in two datagrids. Initially I used a WebService to call a Coldfusio

RE: [flexcoders] Re: cairngorm: managing hundred of views

2006-09-12 Thread Bjorn Schultheiss
Hey Brennan,   I'm hearing you all the way, I'm using a similar technique in my AS2 app.   I wanted to ask, do you have any particular technique for applying transitions between screens, and also loading in screens at runtime. I know the transitioning aint hard but i can see a few ways of

Re: [flexcoders] Flex2 and Breeze syncSWF

2006-09-12 Thread Peter Hall
No, there isn't yet...PeterOn 9/10/06, Johannes Nel <[EMAIL PROTECTED]> wrote: afaik breeze doesn't support flex 2 yet.On 9/10/06, qnotemedia < [EMAIL PROTECTED]> wrote: Is there any way to dispatch/receive breeze syncSWF functions inFlex2?  Other than loading the extension, is there anything

Re: [flexcoders] Flex with FMS (something like Breeze...)

2006-09-12 Thread greg h
David, This is not an answer, but rather some links to some hopefully helpful sources. Yes, there are instances of Flex 2 being used with the FMS.  Following are a few links. First, the following is from Brian Lesser, the lead author of the must have FMS book Programming Flash Communication S

Re: [flexcoders] Binding a function to a MXML property

2006-09-12 Thread Johannes Nel
[Bindable (changeEvent="myEvent")] private function showVBox() : Boolean {   return (model.clientModel.selectedClie nt.contacts.length > 0);} and then you dispatch my event whenever the length changes On 9/11/06, dreuimar <[EMAIL PROTECTED]> wrote: Hey everyone,I have a VBox:That will display

Re: [flexcoders] Localizing application

2006-09-12 Thread Johannes Nel
you need to dispatch that event manuallyOn 9/11/06, Daniel Wabyick <[EMAIL PROTECTED]> wrote: Hey João,Thanks for the code sample ... Very helpful. In particular, I like howyou bind the a function to an event, I was trying to figure out how todo that ... I like it how it magically adds the class

[flexcoders] Re: cf query, xml & flex tre

2006-09-12 Thread bhaq1972
can you show us a dump (trace) of your cfquery returned object. ...doesn't have to be the whole thing just the main bits. --- In flexcoders@yahoogroups.com, "Paul Hastings" <[EMAIL PROTECTED]> wrote: > > On 9/12/06, bhaq1972 <[EMAIL PROTECTED]> wrote: > > thanks for the reply. > > > eg > >

[flexcoders] Re: Need help using XML files without embedding them in SWF

2006-09-12 Thread e_baggg
Yes, the URLLoader class is what you need. --- In flexcoders@yahoogroups.com, "greggohlke" <[EMAIL PROTECTED]> wrote: > > Right now I use several XML files in my Flex 2 app and they are being > embedded in the SWF file. I define them in an tag like this: > > source="../xml/site_configs/inboxCo

RE: [flexcoders] Re: Error #2032 HTTPS IE only

2006-09-12 Thread Kumaran Nallore
If you are testing with self-signed certificates, ensure that the property is set to true in proxy-config.xml.   Another thing to try is to add the following to the properties section of the SecureHTTPChannel:   false   HTH Kumaran     From: flexcoders@yahoogroups.com

[flexcoders] Re: EDI Applications - with Flex as the Front-End

2006-09-12 Thread Dave Wolf
We have a ton of experience in EDI across a variety of verticals (manufacturing, order entry, healthcare, etc). I am not sure what experience you are looking for here. I can tell you that "jumping into" EDI is a daunting process. There are decades and decades of history here, dozens of standards

[flexcoders] Re: EDI Applications - with Flex as the Front-End

2006-09-12 Thread Dave Wolf
Oh, it is also worth noting we are also currently developing a RIA which is the front end to a very large healthcare EDI infrastructure as well as doing the back-end development for that project. Breathing new life into "old" technology. Love it. -- Dave Wolf Cynergy Systems, Inc. Adobe Flex Al

[flexcoders] Lost commit on data source with polling AMF

2006-09-12 Thread Kornelius . Elstner
Hi All we have ancountered an issue with a datasource which has autocommit and automerge turned on and uses an AMF channel with polling. The issue arises from the following sequence of operation: - Client 1 updates an item on the datasource, the change is committed to the data source - Client 2

[flexcoders] defaulting the cursor in a text input

2006-09-12 Thread Clint Tredway
Using setFocus() is only focusing the text input, what is the syntax to get the cursor to show up when the form loads? -- diabetic? http://www.diabetesforums.com Albert Einstein - "It's not that I'm so smart, it's just that I stay with problems longer." -- Flexcoders Mailing List FAQ: http://gr

Re: [flexcoders] Can somebody do a tutorial on UI design?

2006-09-12 Thread Ralf Bokelberg
What about the flex store? Andy updated it recently to the latest version of Flex and Cairngorm. I'm not sure though, where to find it. Maybe at labs.adobe.com? If you search the mailing list about flex store, you should be able to find it. Cheers, Ralf. On 9/12/06, Xiaobin Liu <[EMAIL PROTECTED]

Re: [flexcoders] Re: Passing Const to custom component error

2006-09-12 Thread Tom Ortega
I found the error.  Trying to make the code more legible for the group, I stripped some tags from around the custom tag.  In my orginal post, I had this:            When in reality, I have this:                    The FreedHBox code looks like:http://www.adobe.com/2006/mxml" width="100%" horizon

Re: [flexcoders] EDI Applications - with Flex as the Front-End

2006-09-12 Thread Adam Dorritie
On 9/12/06, Mike Anderson <[EMAIL PROTECTED]> wrote: > I am vaguely familiar with the EDI Standard (and there are many flavors > out there), and I do also understand that there is much homework to be > done on my end, before I can forge ahead with this project. > > With that said, I would love

[flexcoders] Can somebody do a tutorial on UI design?

2006-09-12 Thread Xiaobin Liu
Hi, The flex 2 ˇ°getting startedˇ±, gives tutorials on simple and advanced UI design examples, however, the UI they referred to are just one or two controls putting together. Can somebody do a tutorial on UI design more deeply? Say, with header, advert space, footer, email functions available, I m

[flexcoders] Cairngorm: Switching between BusinessDelegates

2006-09-12 Thread Christophe Herreman
Hi guys, we are developing an application that has login functionality. Depending on the "context" (offline, online, ...) the application runs in, we would like to switch between local file io and online database access via remoting or webservices to read and write the user data. I was thinkin

[flexcoders] Cairngorm: Switching between BusinessDelegates

2006-09-12 Thread herrodius
Hi guys, we are developing an application that has login functionality. Depending on the "context" (offline, online, ...) the application runs in, we would like to switch between local file io and online database access via remoting or webservices to read and write the user data. I was thinking w

[flexcoders] Re: Datagrid with a dropdown column!

2006-09-12 Thread sahay17
Hi Joan, Thanks for the reply. It was really helpful.But the problem now is that the datagridcolumn rating is picking 'b' or 'i' or 'e' from the array collection and now I have to map 'b' to 'beginner' in the combobox. Similary I have to map 'i' to 'intermediate' in combobox and similary I have

Re: [flexcoders] Re: cf query, xml & flex tre

2006-09-12 Thread Paul Hastings
On 9/12/06, bhaq1972 <[EMAIL PROTECTED]> wrote: thanks for the reply. > eg > var xml1:XML = new XML(yourcfquery_returnedobject); > then do > var xc3:XMLListCollection = new XMLListCollection(xml1.children()); unfortunately xc3.length() is showing 0. i *know* the data's there. i wonder if the

[flexcoders] Re: cf query, xml & flex tree

2006-09-12 Thread bhaq1972
just an idea. take the object returned from your cfquery and make an XML object out of it. eg var xml1:XML = new XML(yourcfquery_returnedobject); then do var xc3:XMLListCollection = new XMLListCollection(xml1.children()); (n.b. in your case the xmllistcollection data might not be based on the c

[flexcoders] cf query, xml & flex tree

2006-09-12 Thread Paul Hastings
i'm successfully returning a cfquery to flex. i can get at all of the columns in the query save one, a columns containing a gob of xml. whatever data type i try to cast it as (ArrayCollection, XMLList,XMLListCollection, etc.) flex refuses to do the conversion. in the debugger it shows up as an "Obj