Skip to search.
flexcoders · RIA Development with Adobe Flex

Group Information

  • Members: 9019
  • Category: Development
  • Founded: Mar 17, 2004
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 2428 - 2457 of 165211   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2428 Fiona Malikoff
fethorne Offline Send Email
Aug 2, 2004
12:51 am
Matt, The CalculateWidths method doesn't seem to be available on a ComboBox. ComboBox inherits from ComboBase, which inherits from UIComponent. No mention of...
2429 sjen5 Offline Send Email Aug 2, 2004
1:11 am
Are there any sites with flex code examples at this stage. Similar to codeproject, and gotdotnet for the .net world. Any other sites anyone has come across...
2430 Samuel R. Neff
samblinex Offline Send Email
Aug 2, 2004
3:26 am
How do you create a calculated column in a datagrid? For example if I have a grid bound to a model "emps" and emps has fields "fname" and "lname", how can I...
2431 Cameron Gregory
blokecom Offline Send Email
Aug 2, 2004
3:30 am
labelFunction is your friend in this case! the row is passed in, so you get all fields , and return whatever label you want. Cameron ... From: Samuel R. Neff...
2432 Alberto Albericio
alberto@... Send Email
Aug 2, 2004
12:29 pm
Hi, How can I set a timeout for a WebService? Something like : <mx:WebService id="myWS" timeOut="200" ...../> And how can I capture that "fault" and know it is...
2433 Clint Tredway
clinttredway Offline Send Email
Aug 2, 2004
3:50 pm
I apologize for the OT, but I am looking to find a new position doing Flex development. First off, is anyone hiring flex developers and two, where would Flex...
2434 David Gassner
dbg583 Offline Send Email
Aug 2, 2004
4:08 pm
Hi, I'm interested in the performance issue in regard to using ColdFusion cfc's. Given that cfc's can be accessed through RemoteObject/AMF, is performance...
2435 Clint Tredway
clinttredway Offline Send Email
Aug 2, 2004
4:13 pm
Clint Tredway "When you turn to God you discover He has been facing you all the time."--Zig Ziglar __________________________________________________ Do You...
2436 Thomas Ruggles
t0mruggles Offline Send Email
Aug 2, 2004
4:30 pm
Hi Alberto, Unfortunaltey there is no such setting currently but I can see the value in it. I encourage you to add an enhancement request for it here: ...
2437 Ted Casey
tcasey000893 Offline Send Email
Aug 2, 2004
4:35 pm
Does this get you where you need to go?: http://livedocs.macromedia.com/flex/1/flex_docs/wwhelp/wwhimpl/common/html/w whelp.htm?context=Flex_Documentation ...
2438 Ted Casey
tcasey000893 Offline Send Email
Aug 2, 2004
4:52 pm
What you can do for the time being is to call setInterval() when you call the webservice. For example: <?xml version="1.0"?> <mx:Application...
2439 David Mendels
dmendels@... Send Email
Aug 2, 2004
4:59 pm
Hi, Have you seen Christophe's site: http://www.coenraets.com/index.jsp -David ... From: sjen5 [mailto:sjen5@...] Sent: Sunday, August 01, 2004 8:55 PM...
2440 Steven Webster
swebsteratit... Offline Send Email
Aug 2, 2004
5:27 pm
... Duh, my bad ... I was thinking in terms of accessing CFC by exposing them as WebServices. Of course, if you're doing RemoteObject access, you get the same...
2441 David Gassner
dbg583 Offline Send Email
Aug 2, 2004
5:44 pm
Is there any way to dynamically retrieve the hosting domain name from within a Flex application? I'm thinking an equivalent of ColdFusion's...
2442 Joey Lott
fredfredfredf13 Offline Send Email
Aug 2, 2004
5:57 pm
You can use the _url property of any MovieClip instance, which includes and component (control, container, etc.). Thanks, Joey...
2443 Clint Tredway
clinttredway Offline Send Email
Aug 2, 2004
7:12 pm
Ok, I have an application and I am using a Viewstack with 2 forms inside the viewstack. My issue is that once I did this, I cannot hide/disable the form...
2444 Gordon Smith
gsmithsf Offline Send Email
Aug 2, 2004
7:50 pm
The dropdown of a ComboBox is a List which inherits from ScrollSelectList. In other words, a ComboBox is not a ScrollSelectList, but it has one. - Gordon ... ...
2445 Rich Tretola
rtretola@... Send Email
Aug 2, 2004
7:53 pm
Anyone know when additional sample code will be available for the iterationTwo book?...
2446 Gordon Smith
gsmithsf Offline Send Email
Aug 2, 2004
7:55 pm
This is probably due to the deferred instantiation of the controls on a ViewStack's views. When are you disabling the button? I suspect it doesn't exist yet....
2447 Clint Tredway
clinttredway Offline Send Email
Aug 2, 2004
8:08 pm
Ok, I now understand why it behaves the way it does. I have a hide() function that hides/disables certain UI pieces and I was disabling it in that function. ...
2448 Clint Tredway
clinttredway Offline Send Email
Aug 2, 2004
8:21 pm
- object properties are always upper-cased I am using CF as my middle tier using remoting with the RemoteObject tag and my David Gassner <dgassner@...>...
2449 Clint Tredway
clinttredway Offline Send Email
Aug 2, 2004
8:24 pm
I hit the wrong button.. what I was going to say is that I am using CFC's(flash remoting) and my properties are the case that I determine. If I use the CFC as...
2450 Uday Moorjani
umoorjani@... Send Email
Aug 2, 2004
8:33 pm
What do you think of J2SE 1.4.2 JDBC 3.0 using JSP as a middle tier ? ... From: Clint Tredway To: flexcoders@yahoogroups.com Sent: Monday, August 02, 2004 4:23...
2451 Rich Tretola
rtretola@... Send Email
Aug 2, 2004
8:51 pm
Actually as it turns out the problem was that I had my java instance variables set to private and I didn't have getters defined which returned empty records to...
2452 Steven Webster
swebsteratit... Offline Send Email
Aug 2, 2004
9:01 pm
Hey Rich, ... Truth be told, Alistair and I have been up to our eyes with consultancy work right now, and finding it hard to find the extra time necessary to...
2453 David Gassner
dbg583 Offline Send Email
Aug 2, 2004
9:50 pm
Hi, this is more of a JRun question. Even though I have the Reload option selected for my Flex web application, recompiled Java classes serving as my data...
2454 Ted Casey
tcasey000893 Offline Send Email
Aug 2, 2004
9:56 pm
http://livedocs.macromedia.com/flex/1/flex_docs/wwhelp/wwhimpl/common/html/w whelp.htm?context=Flex_Documentation ...
2455 David Gassner
dbg583 Offline Send Email
Aug 2, 2004
10:36 pm
Found a solution; if anyone needs it's explained at: http://www.macromedia.com/support/jrun/ts/documents/cfmx_helper_reloa d.htm Touching the Flex...
2456 tckuntz Offline Send Email Aug 2, 2004
10:50 pm
This would seem to be a simple thing to do so I am almost embarassed to ask... except I can't figure it out from the docs. I have a DataGrid as in the example...
2457 sjen5 Offline Send Email Aug 2, 2004
11:57 pm
No i hadnt seen that site before, thanks for the tip it has some good blogs and samples from my brief look. I meant more of site that allows people to join and...
Messages 2428 - 2457 of 165211   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help