[flexcoders] Re: Using modules and remote objects

2010-09-07 Thread valdhor
I do this all the time. My main application is a shell that loads in the app's layout and loads the menu's based on a users access level. This app then loads whatever module the user is interested in. Each module has all of its functionality encapsulated including its required remoting. This is

[flexcoders] Re: Which URL to use for amfEndpoint in LCCS Project?

2010-09-07 Thread valdhor
From the description on the web site you don't change that at all. It should point to Adobe's Livecycle collaboration Services site (http://www.adobe.com/ap/products/livecycle/collaborationservice/) which is an Adobe hosted service. You would have to sign up for a free trial to test it

[flexcoders] Re: flashBuilder.ini

2010-09-07 Thread valdhor
First off, are you running 32 bit or 64 bit Java? Not to mention Eclipse (Flash Builder). NB: Flash Builder is built on Eclipse. It looks like it is 32 bit (win32 mentioned in plugins line). This will give a maximum heap size of 2GB which you would not be able to set it to as there would not be

[flexcoders] Re: how do you guys read flexcoders

2010-09-07 Thread valdhor
I use the Yahoo groups page to read and reply. I use the Nabble Flexcoders page to search for posts (http://_.15888.www.nabble.com/Re-f16212.html - not that it's working at the moment ;-). The emailed messages are collected and archived with my mail reader application. --- In

[flexcoders] Re: File Upload with php on Mac

2010-09-07 Thread valdhor
Does file uploading work from an HTML page? Get this working before involving AS3. --- In flexcoders@yahoogroups.com, Christophe christophe_jacque...@... wrote: Hello, What is the specificity of the Mac plateform, because my upload function with AS3 and Php is working on Pc but not on

[flexcoders] Re: dynamic data load problem with OLAPDatagrid

2010-09-07 Thread valdhor
Binding problem? --- In flexcoders@yahoogroups.com, Tejas Patel tejaspate...@... wrote: Single OLAPDatagrid component is not used for dynamic arraycollection data. Initially data displayed perfectly and also itemClicked event working perfectly. But after data changed dynamically and fetch

RE: [flexcoders] I don't know if I need Flex (please help me to decide)

2010-09-07 Thread Bill Brutzman
My rule of thumb is that if there is data. like a database. then yes. Flex is the way to go. --Bill From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of enridp Sent: Monday, September 06, 2010 2:15 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] I don't

[flexcoders] Re: Line Chart, I have a X value, how can I find the Y value?

2010-09-07 Thread Mike
I did something like this for EBay. I defined a hierarchy of Equation classes, including linear, nth order polynomials, power law. The base Equation class provided common functionality such as data initialization and solving for the unknown gien a variable. Applications could then be written

[flexcoders] Re: Using modules and remote objects

2010-09-07 Thread Mike
I recently did something like this for Cisco. They needed a way for a sub-Application to invoke a method in another sub-Application, which might not be loaded. The solution was to derive the sub-Applications from a common base class and use the main Application as a broker. The broker

[flexcoders] Re: flashBuilder.ini

2010-09-07 Thread Mike
I am using a 32 bit JDK because as you have guessed FB is not 64 bit capable at this time. BTW, I have discovered that command line vmargs do not override settings specified in the ini file, contrary to the docs. In other words, given the ini file I posted earlier, the following does not

[flexcoders] Re: flashBuilder.ini

2010-09-07 Thread valdhor
--- In flexcoders@yahoogroups.com, Mike msl...@... wrote: I am using a 32 bit JDK because as you have guessed FB is not 64 bit capable at this time. QED You have only 2GB of usable memory. It would be more helpful to post complete and working ini files that provide 800M of heap. One

[flexcoders] Re: I don't know if I need Flex (please help me to decide)

2010-09-07 Thread enridp
Yes, there's a lot of data. But I was thinking in AMFPHP for that. I think the alternatives are: 1) Adapting the Flex code that I need to a pure AS3 project (I'm not sure if this is possible in all the casses) 2) Using RSL's Because I can't start my project with 200Kb, the size is a really big

[flexcoders] Flex Developers in Houston

2010-09-07 Thread Prakash M
Hi Guys, Is there any one in Houston, TX working on Flex. If so please reply me. Thanks, Prakash.

[flexcoders] Re: ItemDoubleClick ListEvent not fired even with doubleClickEnabled = true

2010-09-07 Thread carnau...@ymail.com
Hello, Does anyone know any work-arround for this ItemDoubleClick not fired... issue ? I've noticed a similar post, for the same issue, here : http://raghuonflex.wordpress.com/2007/08/10/assigning-different-behavior\ s-on-click-doubleclick/#comment-5350 Any help on this item being very

[flexcoders] Re: I don't know if I need Flex (please help me to decide)

2010-09-07 Thread enridp
Yes, that helps a lot. I was searching and I found this: http://www.logicalchaostheory.com/2008/02/10/remoteobject-for-flash-cs3/ I have not tested it yet, so I don't know if it has problems. But what happens with applications like WebOrb? do you think faking the RemoteObject class will work?

[flexcoders] Flex Developers in Houston

2010-09-07 Thread Brendan Meutzner
Why? Can you give a bit more info on what you're looking for?

Re: [flexcoders] Re: I don't know if I need Flex (please help me to decide)

2010-09-07 Thread claudiu ursica
AMFPHP works with flash also. You need to update the data yourself within controls since no bindings are available, but it will be working. C From: enridp enr...@yahoo.com.ar To: flexcoders@yahoogroups.com Sent: Tue, September 7, 2010 5:09:34 PM Subject:

[flexcoders] Module-friendly modals

2010-09-07 Thread Richard Rodseth
Someone on the Mate forums advocated a way to treat a modal popup as a state of a view, where the presentation model has a modalShown property, and the view observes it using bindSetter. This has the nice effect of avoiding the need to pass in Application.application to createPopUp, but it's

RE: [flexcoders] Re: I don't know if I need Flex (please help me to decide)

2010-09-07 Thread Bill Brutzman
Consider also Adobe's ColdFusion. I have found ColdFusion to be easier to use and more robust than PHP. --Bill From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of enridp Sent: Tuesday, September 07, 2010 11:10 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Line Chart, I have a X value, how can I find the Y value?

2010-09-07 Thread napearson99
I mean, you would think you could just give the line series the X value and it could tell you the current Y value. Couldn't be that simple, right? --- In flexcoders@yahoogroups.com, Mike msl...@... wrote: I did something like this for EBay. I defined a hierarchy of Equation classes,

[flexcoders] Re: Line Chart, I have a X value, how can I find the Y value?

2010-09-07 Thread napearson99
*wshh* That's the sound your post just made going by my noggin :). I was hoping there was something built into flex for this. Does anyone have a simple way of figuring this out? Thanks for responding though mike, I appreciate even if I'm not smart enough to

Re: [flexcoders] Re: Line Chart, I have a X value, how can I find the Y value?

2010-09-07 Thread Brendan Meutzner
Lol... yeah there's an easier way ;-) It's been a long time, so I can't explain fully off the top of my head, but check out the dataTransform object and specifically invertTransform(x,y) which takes screen coordinates and returns the axis values at that point. You can look into a blog post I did