Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

flexcoders · RIA Development with Adobe Flex

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 12338
  • 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

Advanced
Messages Help
Messages 104500 - 104530 of 165719   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
104500 cool buddy
hydcool02 Send Email
Feb 29, 2008
10:37 pm
Sure..here it goes.. <?xml version="1.0" encoding="utf-8"?> <mx:states> <mx:State name="FLIGHTS&quot;> </mx:State> <mx:State name="CRUISES&quot; basedOn="FLIGHTS"> ...
104501 markb@...
mark00bradley Send Email
Feb 29, 2008
11:08 pm
This works great. I'll continue to look for a more straightforward way that doesn't rely on mx_internal variables. Thank you for this though! This will work...
104502 Gordon Smith
gsmithsf Send Email
Feb 29, 2008
11:27 pm
... That's not true. A primitive value like a Number is passed as a copy, not a reference. - Gordon ________________________________ From:...
104503 Paul Decoursey
lepusmars Send Email
Feb 29, 2008
11:40 pm
I just imported some projects from Flex 2 into Flex 3 and it wiped out my html-templates... I spent hours tweaking those files and all that work is gone....
104504 Dale Fraser
plucka70 Send Email
Feb 29, 2008
11:51 pm
Get them out of backup or SVN. Regards Dale Fraser From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Decoursey Sent:...
104505 Tracy Spratt
nts333rd Send Email
Feb 29, 2008
11:53 pm
I have found that whenever you programatically assign a dataProvider, you must use callLater() to invoke any methods that affect the visual UI. Tracy ...
104506 Tracy Spratt
nts333rd Send Email
Feb 29, 2008
11:59 pm
Make your changes to the index.template.html file. Do a project, clean to make sure the wrapper gets re-generated. If you need multiple start-up conditions,...
104507 VELO
velobr Send Email
Mar 1, 2008
12:29 am
I'm trying to do something like this: <mx:Object id="obj" name="velo&quot; age="44"> <mx:job area="IT" worktime="10" /> </mx:Object> And always got: Could not...
104508 Rick Winscot
rwinscot Send Email
Mar 1, 2008
1:07 am
VELO - the Flex Object is a 'simple&#39; storage type... the RemoteObject along with the ObjectProxy are designed specifically for dynamic object management -...
104509 Rick Winscot
rwinscot Send Email
Mar 1, 2008
1:09 am
Not to mention the fact that using x (which is a property of visual objects) is a no no! So... are 'i' and 'j' not good enough for you anymore???? huh???...
104510 Rick Winscot
rwinscot Send Email
Mar 1, 2008
1:19 am
OR! There is always the ever popular mouseChildren = false... Rick Winscot On Fri, Feb 29, 2008 at 4:09 AM, Martijn van Beek...
104511 Nayan Savla
mailnayan Send Email
Mar 1, 2008
2:00 am
It seems that flex only changes the default html file all the time, made changes to the template html and then copied it to the bin-debug and then changed the...
104512 Nayan Savla
mailnayan Send Email
Mar 1, 2008
2:00 am
i used updateComplete to listen for changes in the dataProvider. private function categoryDataChanged(event:FlexEvent):void{ if(event.currentTarget ==...
104513 Sherif Abdou
sherif626 Send Email
Mar 1, 2008
2:16 am
where are you getting <mx:Job/> from? it is not an Adobe Class so use whatever job is under ... From: VELO <velo.br@...> To: flexcoders@yahoogroups.com ...
104514 Sherif Abdou
sherif626 Send Email
Mar 1, 2008
2:18 am
add an event Listener for that event and just do event.preventDefault() ... From: [p e r c e p t i c o n] <percepticon@...> To:...
104515 Sherif Abdou
sherif626 Send Email
Mar 1, 2008
2:19 am
bouncing stuff is done with sin and cosine so you could try that. ... From: crumpelfungus <crumpelfungus@...> To: flexcoders@yahoogroups.com Sent:...
104516 Sherif Abdou
sherif626 Send Email
Mar 1, 2008
2:22 am
so are you updating the dataProvider and if so just try comboBoxName.dataProvider.refresh() or just try comboBoxName.validateNow() --Come to think of it what...
104517 Sherif Abdou
sherif626 Send Email
Mar 1, 2008
2:24 am
how are you working this out? some code would help? ... From: valdhor <stevedepp@...> To: flexcoders@yahoogroups.com Sent: Friday, February 29, 2008...
104518 Doug McCune
dougmccune Send Email
Mar 1, 2008
3:47 am
You can make read-only properties bindable. In your case your age property is a read-only property since it only has a getter. The normal bindable stuff...
104519 Marvin Froeder
velobr Send Email
Mar 1, 2008
3:48 am
Im trying just to mimic this proxy behavior. Lets imagine is not one job, but is like RO, several jobs... <mx:Object id="obj" name="velo&quot; age="44"> <mx:job...
104520 VELO
velobr Send Email
Mar 1, 2008
4:00 am
Hi, At work we are using maven for all, compile flex (thanks israfil), compile java, build war and build ear. To build war we have a dependency to LCDS 2.5...
104521 Alex Harui
alex_harui Send Email
Mar 1, 2008
4:26 am
My take on how to do this is at: http://blogs.adobe.com/aharui/2008/02/checkbox_selection_in_datagrid.htm l ________________________________ From:...
104522 Don Kerr
fusionpage Send Email
Mar 1, 2008
4:46 am
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...
104523 dfalling Send Email Mar 1, 2008
5:08 am
I guess I'm missing something obvious...are you saying to create the datatip field ahead of time in the file with the datagrid, and put a data tip function in...
104524 Dmitri Girski
mitek17 Send Email
Mar 1, 2008
5:40 am
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, ...
104526 Alex Harui
alex_harui Send Email
Mar 1, 2008
6:41 am
dataTipField/dataTipFunction is used to map the dataProvider to a string to be displayed by a renderer. The renderer can just call itemToDataTip(data) on the...
104527 Greg Morphis
gmorphis@... Send Email
Mar 1, 2008
6:58 am
This is my first time modifying our production code since taking over a flex project and on the prod server the .java files are .class' files. Please someone...
104528 Don Kerr
fusionpage Send Email
Mar 1, 2008
7:00 am
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 ...
104529 Greg Morphis
gmorphis@... Send Email
Mar 1, 2008
7:24 am
I had the .class files locally from dropping the files into Tomcat to test (outside of Eclipse). I moved those out and everything seems to be working okay....
104530 Don Kerr
fusionpage Send Email
Mar 1, 2008
7:51 am
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...
Messages 104500 - 104530 of 165719   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