Re: [flexcoders] Flex2 : databinding itemrenders

2005-11-19 Thread Manish Jethani
On 11/18/05, Michael Hansen [EMAIL PROTECTED] wrote: I don't quite follow your suggestion. Sorry for being stupid, but all this is semi new to me :) Could you elaborate a bit on your answer? So instead of this: mx:Vbox mx:Image source=./{dataObject.file / mx:Label

Re: [flexcoders] Re: Adding Item to a ComboBox

2005-11-19 Thread Manish Jethani
On 11/18/05, yaagcur [EMAIL PROTECTED] wrote: My attempts to date have ended in failure What kind of failure? When you report that something isn't working, please also explain what you mean by that. Compiler error? Runtime error? Nothing Happens (TM)? public function

RE: [flexcoders] Flex App not loading

2005-11-19 Thread João Fernandes
Is your application initialization based on some request result(RO,WS or HTTP)? Take a look also to your server log files to track any additional information. João Fernandes Secção de Desenvolvimento Departamento de Informática -Original Message- From: flexcoders@yahoogroups.com on

[flexcoders] Styling a link in LinkBar (F 1.5)

2005-11-19 Thread Tom Fitzpatrick
Is there a way to style a single link in a LinkBar? I want to add a bold font weight to the disabled link, in addition to specifying its color, while leaving the other links in the normal font weight . Is there any way to do this? If not in 1.5, is this possible in 2.0? Thanks. - Tom

[flexcoders] Alert display late in tagged AS code

2005-11-19 Thread endofadam228
Alert display late in tagged AS code I wanna create a app with login page, I am testing the alert function with login unsuccessful. After loaded the first page, I don't know why the alert will show when I click the button second time. I have test by Network Monitor, I can get the xml content in

[flexcoders] Flex 2: events in interfaces

2005-11-19 Thread Johannes Nel
hi all while implementing a collection class i was going through the interfaces and stumbled upon ICollectionView for which the documentation says: Event Summary collectionChanged Indicates that the ICollectionView has been updated in some way. how do you declare what event should

[flexcoders] Re: Adding Item to a ComboBox

2005-11-19 Thread yaagcur
I was hoping that turning a query into an array via a result handler was such a common practice that someone could quickly set me straight For the record I get compiler errors on this line public var cities:IList = new ArrayCollection({mx.utils.ArrayUtil.toArray(result)}); of Expecting colon

[flexcoders] Returning Object Instances from ColdFusion

2005-11-19 Thread Simeon Bateman
Hey i am working on returning custom objects from coldfusion to my flex application. I found a good example of this here http://www.richinternet.de/blog/index.cfm?mode=entryentry=74BA931D-C3DA-FDE0-C7959146205942DA However in the notes at the bottom it says: Edit: if you want to return CFC

[flexcoders] List box event

2005-11-19 Thread Jason Doyle
I am trying to fire off an event when the user mouses over an item in a list box. Both mouseOver and itemRollOver fire the events anytime the mouse enters the list box, even over whitespace. Any ideas how to get it to fire off only over list box items? And capture the index of that item? I really

[flexcoders] How do you print multiple records individually?

2005-11-19 Thread k631go2
I am trying to print a single record to a page from a multiple record database (to simulate accessing that database in the example below, I just used addItem to create three records). I just want to be able to print each of these records to a separate page. What I am getting is three pages of

[flexcoders] Re: Returning Object Instances from ColdFusion

2005-11-19 Thread Renaun Erickson
mx.utils.ClassUtil.FLEX_CLASS_FIELD is a static field. And the value is _remoteClass the article is pointing out that you need to set it to _REMOTECLASS because of how coldfusion sends back properties (in all uppercase). So like the article notes your AS Objects will have to have all UPPER class

[flexcoders] Re: Returning Object Instances from ColdFusion

2005-11-19 Thread Simeon Bateman
Thanks for your response. I guess my real question is where am I supposed to set hte FLEX_CLASS_FIELD at? Just in my VO in as? Its just not clear to me. Thanks. simeon --- In flexcoders@yahoogroups.com, Renaun Erickson [EMAIL PROTECTED] wrote: mx.utils.ClassUtil.FLEX_CLASS_FIELD is a static

[flexcoders] Re: Links to Nice-looking Flex Apps

2005-11-19 Thread Renaun Erickson
Here is an interesting way to look for examples: http://www.google.com/search?q=mxml+filetype%3Amxml It brings up this site that I haven't seen before. http://designcenter.omnova.com/flex/omnova/omnovaProductSelector.mxml?versionChecked=true Renaun --- In flexcoders@yahoogroups.com, Merrill,

[flexcoders] Re: Returning Object Instances from ColdFusion

2005-11-19 Thread Renaun Erickson
I have not tried the code, but from what I read it seems that all you would need to do is put the line of code below in the begining of your app. Like in the initialize event of the main mxml file. mx.utils.ClassUtil.FLEX_CLASS_FIELD = _REMOTECLASS; Renaun --- In flexcoders@yahoogroups.com,