[flexcoders] Re: Why most Flex Developer job ads ask now for Knowledge in Java??

2010-02-17 Thread gers32
Flex being relatively new, I suspect many companies hiring Flex developers don't yet have a Flex project and need someone who can at least develop a Proof Of Concept. That's what I had to do at my company: in addition to learning Flex, I also learned Ruby on Rails for the back end (I knew Java

[flexcoders] Re: Caringorm vs PureMVC

2010-01-10 Thread gers32
Hi Patricia, I spent a couple days investigating the various Flex frameworks and finally came to the conclusion that Mate was best for me. The big Plus is that it doesn't interfere with your Flex code. Among my numerous findings, the following two are pretty good:

[flexcoders] Re: AIR with Oracle

2009-12-30 Thread gers32
My Flex application runs in a browser, not AIR, but the concept is the same; it connects to an Oracle database, via two different server-side technologies (I've been experimenting for my employer) : Ruby-on-Rails or PL/SQL (using the Oracle HTTP Server and mod_plsql). Basically, your Flex

[flexcoders] Re: Starting with Cairngorm or PureMvc

2009-12-01 Thread gers32
I have chosen the Mate framework, based on the reviews below: http://www.summa-tech.com/blog/2009/01/14/selecting-the-right-flex-application-framework/ http://www.summa-tech.com/blog/2009/02/27/the-flex-application-frameworks-smackdown-sorta/

[flexcoders] Re: How to start learning Flex 4? There is no book out there!!

2009-11-26 Thread gers32
Try Peter Armstrong's Hello! Flex 4 (http://www.manning.com/armstrong3/) once you've read your Flex 3 books. I read it and found it very useful for understanding the new things in Flex 4. Chris.

[flexcoders] Re: Binding not working in custom class and DataGrid using XMLListCollection

2009-11-17 Thread gers32
The reason for this is explained in Diving in the Data Binding Waters by Michael Labriola http://tv.adobe.com/watch/360flex-conference/diving-in-the-data-binding\ -waters-by-michael-labriola/ , but an example using ArrayCollection or XMLListCollection would be welcome. Thanks, Chris.

[flexcoders] Re: Binding not working in custom class and DataGrid using XMLListCollection

2009-11-17 Thread gers32
Although the above discussion about Data Binding is great, you can skip directly to 28:24 for the short explanation I was referring to. Chris.

[flexcoders] Re: Firebug tool

2009-11-04 Thread gers32
I open Firebug whenever I type the Konami Code, so it's never really officially there, but can be helpful sometimes in production...

[flexcoders] Re: Firebug tool

2009-11-02 Thread gers32
I use FlexSpy (http://code.google.com/p/fxspy/), but I know there are others. Chris.

[flexcoders] Re: Flex 3 and Oracle

2009-03-03 Thread gers32
Hi, My company's applications are based on Oracle databases and Oracle Forms. I've built a prototype application using a Flex front-end and Ruby-on-Rails back-end. And although it works great, my boss is afraid of customers' potential reactions to Ruby-on-Rails and the whole Ruby + Rails +

[flexcoders] Re: Flex server language

2009-02-19 Thread gers32
Ruby on Rails is interesting because of the little amount of code you need to write, compared to Java for example. My RoR back end server deals with the database (Oracle in my case) and communicates with a Flex front end via XML. Of course, you can use AMF, but in my situation I don't have such

[flexcoders] Re: Flex connection to Oracle 10g PL/SQL

2008-10-23 Thread gers32
Hi Juliano, I'm currently using Ruby-on-Rails as a Server-side interface between an Oracle database and the Flex client. My employer's not confident in the whole Ruby/Rails/Mongrel cluster/Monit/Apache or nginx setup... So the technology you mention interests me. Is there some kind of Web Server

[flexcoders] Re: Flex connection to Oracle 10g PL/SQL

2008-10-23 Thread gers32
OK, I'll answer that one myself: yes indeed, the Oracle server now includes an HTTP server in addition to the Apache HTTP server. So here's my follow-up question: I did a quick Google search and the information I've gathered so far seems to say that this technology might not yet be

[flexcoders] Re: Best way to deliver data via Rails

2008-10-10 Thread gers32
Hi, I deliver data to my Flex front-end via RoR HttpService in XML form. I realize XML is not the most efficient, and considered using BlazeDS, but because I haven't yet encountered any performance problems, I'm sticking to XML to avoid any proprietary format, should I ever need to switch server

[flexcoders] Re: Flex connection with Database

2008-04-02 Thread gers32
Hi Chitra, I don't know exactly what kind of application you're working on, but I can tell you how I connect to a database from my Flex front-end. I use Flex's HttpService to call a URL, which then returns data sent from a Web Service. This Web Service can be written in Java, since you seem to

[flexcoders] Replacing accentuated characters with their ASCII equivalents

2008-03-06 Thread gers32
Hi, Is there an existing function that would allow me to replace accentuated characters with their ASCII equivalents (e.g., 'à' - 'a', 'é' - 'e')? I need it so that I can then do a case-insensitive SQL search, after also converting to upper or lower-case letters. I could write one from scratch,

[flexcoders] Flex Builder 3 + Eclipse plugins vs. MyEclipse + FB3 plugin?

2008-03-04 Thread gers32
Hi, I've been using MyEclipse + Flex Builder 2 plugin, as well as a bunch of other plugins (RadRails, Database Explorer, SVN, etc) for about 6 months. The makers of MyEclipse tell me they don't officially support Flex Builder. So when I eventually upgrade to FB3, I'm considering installing the

[flexcoders] Re: Flex Builder 3 + Eclipse plugins vs. MyEclipse + FB3 plugin?

2008-03-04 Thread gers32
OK, thanks for your input guys. Looks like I'll stick with MyEclipse and install FB3 as a plugin, just like I did with FB2. The only requirement is that I upgrade to MyEclipse 6 (from 5.5.1). So any way I look at it, I'll have to reinstall plugins... Cheers, Chris.

[flexcoders] Re: Problem reading German characters from XML

2008-01-27 Thread gers32
I've solved a similar problem by converting my Windows-1252 content stored in an Oracle database to UTF-8, directly in the SQL query like this (the actual method name might be different for your particular database): SELECT CONVERT( CODE, 'UTF8', 'WE8MSWIN1252' ) AS CODE, ... Hope this

[flexcoders] Re: Tutorial - creating a vertical tabnavigator

2008-01-24 Thread gers32
Hi, I use Flex Builder 2, but here's how I do it with a TabBar and a ViewStack: my TabBar is in a VBox with other stuff, like a logo .. mx:TabBar id=myTabBar dataProvider=myViewStack direction=vertical selectedIndex=0

[flexcoders] Missing *-debug.html and *-debug.swf in Flex Builder 2

2008-01-09 Thread gers32
Hi, I'm developing my third Flex application, using Flex Builder 2, and unlike the first two, I have no *-debug.html or *-debug.swf files... I moved my output directory to the Ruby on Rails server's public/bin directory, but I had done that for the previous two projects. The launch configuration

[flexcoders] Re: HttpService not called the first time

2007-11-29 Thread gers32
Thanks for the example, Tracy.

[flexcoders] Re: HttpService not called the first time

2007-11-27 Thread gers32
Hi Tracy, That's a good idea. Now, I'm wondering what the trade off is between one HttpService per Component (bigger SWF file size, but parallel requests thus faster data access on multi-processor boxes?) and one single HttpService for the whole application (smaller SWF file, but sequential thus

[flexcoders] Re: HttpService not called the first time

2007-11-26 Thread gers32
Being a Flex newbie, I can only think of one way to solve this dilemma (assuming I ever encounter performance problems at startup): I thought it was a good idea to implement each HttpService in the Component that displays the retrieved data, which is saved to an application-wide Model, accessible

[flexcoders] HttpService not called the first time

2007-11-22 Thread gers32
Hi, Components A and B are inside Panels of a ViewStack; they're accessed via a TabBar. I define an HttpService within component A. I call A.HttpService from an action in component B. When I perform the action in component B, A.HttpService will only get called if I have PREVIOUSLY visited A...

[flexcoders] Re: HttpService not called the first time

2007-11-22 Thread gers32
@yahoogroups.com, gers32 cbu@ wrote: Hi, Components A and B are inside Panels of a ViewStack; they're accessed via a TabBar. I define an HttpService within component A. I call A.HttpService from an action in component B. When I perform the action in component B, A.HttpService will only get

[flexcoders] Re: DataGrid: column width and horizontal scroll

2007-10-24 Thread gers32
You're right, this simple example does work. I still don't know why my original code didn't work... But I built up this example until I reached the same functionality as the old code. Unfortunately, I'm unable to identify the part that made the difference! Thanks for your help, Chris. --- In

[flexcoders] Re: Report building.

2007-10-24 Thread gers32
Because my backend is written with Ruby on Rails, I'm considering using Ruby Reports (http://rubyreports.org/). I can't give you my opinion on it yet, but it might be worth checking out. Chris.

[flexcoders] Re: DataGrid: column width and horizontal scroll

2007-10-23 Thread gers32
? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gers32 Sent: Monday, October 22, 2007 7:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid: column width and horizontal scroll Hi, I'm having a hard time figuring out how to set the column

[flexcoders] DataGrid: column width and horizontal scroll

2007-10-22 Thread gers32
Hi, I'm having a hard time figuring out how to set the column widths of a DataGrid which is constrained inside its container (width=100% height=100%), has two locked columns (lockedColumnCount=2), and which I force to scroll horizontally (horizontalScrollPolicy=on). The DataGridColumn widths are

[flexcoders] Re: Problem setting localized Application.pageTitle

2007-10-18 Thread gers32
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gers32 Sent: Wednesday, October 17, 2007 5:32 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Problem setting localized Application.pageTitle Hi, My localized application defines the following

[flexcoders] Problem setting localized Application.pageTitle

2007-10-17 Thread gers32
Hi, My localized application defines the following ResourceBundle for retrieving localized strings (the [Bindable] is to get rid of warning messages): [Bindable] [ResourceBundle(FDS)] private var rb:ResourceBundle; I then successfully use rb in my MXML code, except in mx:Application, where I

[flexcoders] Re: Here we go again: Flex Vs Java

2007-09-27 Thread gers32
First of all, a Flex front-end is Web 2.0 vs. Web 1.0 for JSPs. I recently made the switch from JSP to Flex for that reason. Also, your application will scale better if you put some of the logic inside the Client. If your employer argues that he's invested a lot in Java, that's OK because you can

[flexcoders] Re: Here we go again: Flex Vs Java

2007-09-27 Thread gers32
a comment like Flex front end is web 2.0 Web 2.0 is not about RIA, web 2.0 is about collaboration. God forbid, you even know what Enterprise 2.0 is oh yeah thats MS Silverlight on steriods. On 9/27/07, gers32 [EMAIL PROTECTED] wrote: First of all, a Flex front-end is Web 2.0 vs. Web 1.0

[flexcoders] Re: What is the most productive serverside development architecture?

2007-08-29 Thread gers32
I've chosen to develop my server-side code with Ruby on Rails. It's the most productive technology I've encountered. I access its XML output via HTTPService. If you're designing your application and database from scratch, I don't think anything can beat it, from a productivity standpoint (most of

[flexcoders] Background coloring in Scheduling Framework

2007-08-27 Thread gers32
Hi, I need to color the background of a ScheduleViewer component, each line with a different background color. BackgroundItem lets you do that for columns... but I can't find anything that'll let me color individual lines. Thanks, Chris.