RE: [flexcoders] Re: Flash Player 9 BUG?? Regex and Unicode

2007-10-14 Thread Alex Harui
I don't think it sees \u0041 as a Unicode character in the string definition. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aldo Bucchi Sent: Saturday, October 13, 2007 8:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

RE: [flexcoders] Re: Flash Player 9 BUG?? Regex and Unicode

2007-10-14 Thread Alex Harui
Sorry, you have too many '\. It should be \u0041 file:///\\\u0041 If you have two of them they become the backslash. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Sunday, October 14, 2007 12:05 AM To:

[flexcoders] effect of canvas

2007-10-14 Thread Joe
Hello all, May I add effects, such as fade, to the canvas which is under alert popup window? How can I achieve this? Thank you in advance. Regards, Joe

[flexcoders] Access a ViewStack within a custom component

2007-10-14 Thread George Georgiou
Hi there, I have this really simple problem. I have created a ViewStack within my main application. I would like to switch into different views from a custom component that I have. Here's my code: mx:ViewStack id=mainStack borderStyle=solid width=100% height=100% mx:Canvas id=startPage

[flexcoders] How to modify alignment of specific Datagrid columns

2007-10-14 Thread jovialrandor
I want to right align only a subset of the columns in my datagrid. I know that you can align at the datagird level, but can you do it at the column level? If not, how would I got about doing this? thanks

Re: [flexcoders] Re: Flex, LiveCycle Data Services, EJB, JAAS problem

2007-10-14 Thread Douglas Knudsen
ok, I'm no J2EE expert by any means, but what you are describing sounds way complex. I've had a app I built using LCDS, well FDS first under Flex 1.5then ported to Flex 2 and using LCDS. I used JRun under FDS for Flex 1.5 and Tomcat after porting to use LCDS. In either case I simply used a HTML

Re: [flexcoders] Re: Import Statement keeps disappearing

2007-10-14 Thread Daniel Freiman
Has anyone filed a bug report? Because this sounds like it would be really annoying if it were in the final release. https://bugs.adobe.com/jira/login.jsp - Dan Freiman On 10/13/07, Doug McCune [EMAIL PROTECTED] wrote: I noticed this prior to Beta 2 as well, basically organize imports

[flexcoders] Maven plugin out of memory problem

2007-10-14 Thread Ronen Naor
Hi, Has anyone encountered the following problem using the maven israfil plugin: java.lang.OutOfMemoryError: Java heap space at java.util.HashMap.resize(Unknown Source) at java.util.HashMap.addEntry(Unknown Source) at java.util.HashMap.put(Unknown Source) at

RE: [flexcoders] 1067: Implicit coercion of a value of type String to an unrelated type mx.core:Container.

2007-10-14 Thread Alex Harui
selectedChild is a container, not a string if you have a container id=addCustoner you want to type the param as container From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of George Georgiou Sent: Saturday, October 13, 2007 4:25 PM To:

RE: [flexcoders] How to modify alignment of specific Datagrid columns

2007-10-14 Thread Alex Harui
Set the styles on the datagridcolumn. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jovialrandor Sent: Sunday, October 14, 2007 8:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to modify alignment of specific Datagrid

Re: [flexcoders] 1067: Implicit coercion of a value of type String to an unrelated type mx.core:Container.

2007-10-14 Thread George Georgiou
Oh - I didn't know that there is a datatype 'container'. thanks for your help!!! It works now!! :-) George On 10/14/07, Alex Harui [EMAIL PROTECTED] wrote: selectedChild is a container, not a string if you have a container id=addCustoner you want to type the param as container

[flexcoders] what event is triggered every time a datagrid is shown on screen? (creationComplete is not ideal for this case)

2007-10-14 Thread George Georgiou
Hi there, I have a CFC component that loads some records into a datagrid. I have placed this remoteobject and datagrid as a component on my own xml namespace. I have noticed that when I add new record into my SQL, the datagrid does not get refreshed - really creationComplete does not fire every

[flexcoders] ComboBox populate list with remoteobject

2007-10-14 Thread George Georgiou
Hi there, I got a remoteobject which loads data from an sql table. I got something like 5 fields for customers. I want to populate a combobox showing the name of the customer and having as a value the customer_id. After Googling it a bit, I have ended up with this: mx:ComboBox

[flexcoders] HTTPService: replacing the URL

2007-10-14 Thread jovialrandor
I want to replace the URL parameter of an HTTPService and refresh a datagrid. Here is what I have so far: Script section; --- public function autoClickHandler(event:Event):void { sanData5.url =

Re: [flexcoders] what event is triggered every time a datagrid is shown on screen? (creationComplete is not ideal for this case)

2007-10-14 Thread Sheriff
why don't u used an XMLListCollection or ArrayCollection, i think that would solve the problem. - Original Message From: George Georgiou [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, October 14, 2007 3:04:46 PM Subject: [flexcoders] what event is triggered every time a

Re: [flexcoders] transparent text

2007-10-14 Thread grimmwerks
There was a blog that stated using a filter effect without embedding the font would almost bitmap the font and they could do transparent text. I can't recall the blog though... :( On Oct 10, 2007, at 1:13 AM, Alex Harui wrote: You can control the alpha of the textField in the TextArea if you

Re: [flexcoders] Maven plugin out of memory problem

2007-10-14 Thread Christian Edward Gruber
Ah. By default, the plugin (and the command-line tool) creates a debug version of the .swf. If you want the non-debug (deployable, small, faster) version of the .swf, then you should add debugfalse/ debug in your maven-flex2-plugin configuration section. As to out of memory, I'm not sure

[flexcoders] Multiple IFrames in Flex

2007-10-14 Thread Flexing...
Hi All, I am building an application which require me to show multiple IFrame based banners on a Panel. Is their a way to achieve this in Flex ? Is Adobe doing something in the direction to support IFrames in Flex ? Currently I am using a servlet based solution i..e create a single servlet

[flexcoders] Make money while you learn flex/air :-)

2007-10-14 Thread Chad
Hey guys, Anyone looking to pickup a few extra bucks helping crank out the front-end for a new flex/ air app? Its a cool music app and for a charitable cause. All the wireframes are drawn up I just someone to help finish slapping all the stock flex components together into a non-working

RE: [flexcoders] ComboBox populate list with remoteobject

2007-10-14 Thread Alex Harui
What do you want to do with customer_id? Normally you wouldn't show it in the combobox and just see the names. If you want to see both, use a custom labelFunction. Normally, someone sees the names and picks one and selectedItem.customer_id is the customer id.

Re: [flexcoders] ALTGr key gives two keyboard events

2007-10-14 Thread Peeyush Tuli
Hi, The application I am working on runs in full screen mode have keydown event handler at the application level. Whenever it receives a ctrl key down event, focus is passed to the html window which wraps the application through an ExternalInterface call. The window also has a keydown handler

RE: [flexcoders] what event is triggered every time a datagrid is shown on screen? (creationComplete is not ideal for this case)

2007-10-14 Thread Alex Harui
creationComplete fires once per component when it has completed its creation cycle. updateComplete fires whenever the component re-draws itself. show/hide of a parent container will fire as the viewstack changes views. I don't think I understand your data flow. If your CFC has fetched

RE: [flexcoders] HTTPService: replacing the URL

2007-10-14 Thread Alex Harui
It would be helpful if you explained what problem you are seeing and what you tried as solutions. Everything I see looks ok, but calling refresh() after send won't work since send() is asynchronous. From: flexcoders@yahoogroups.com [mailto:[EMAIL