[flexcoders] ComboBox : HBox as ItemRenderer - textRollOverColor problem

2009-06-18 Thread cwicky99
So I have an itemRenderer which simply displays text and an image...something like: mx:HBox mx:Image / mx:Label text={data.anme} / /mx:HBox My ComboBox is configured in MXML such as: mx:ComboBox id=foo itemRenderer=MyComboRenderer / My CSS has: ComboBox {

[flexcoders] Re: ComboBox : HBox as ItemRenderer - textRollOverColor problem

2009-06-18 Thread cwicky99
, cwicky99 codecr...@... wrote: So I have an itemRenderer which simply displays text and an image...something like: mx:HBox mx:Image / mx:Label text={data.anme} / /mx:HBox My ComboBox is configured in MXML such as: mx:ComboBox id=foo itemRenderer=MyComboRenderer / My CSS has

[flexcoders] Re: Flex crossdomain failing in Internet Explorer

2009-05-21 Thread cwicky99
anyone...?? --- In flexcoders@yahoogroups.com, cwicky99 codecr...@... wrote: I realize it's worth mentioning these two servers are using self-signed certs (at the moment). So the first time you launch the apps in Firefox you can add an exception basically telling Firefox that you trust

[flexcoders] Flex crossdomain failing in Internet Explorer

2009-05-14 Thread cwicky99
I have a Flex app that runs on foo.acme.com which tries to access content on bar.acme.com over secure communications (i.e SSL). Both servers use tomcat and on bar.acme.com I have a crossdomain.xml file setup in /tomcat_home/webapps/ROOT. When I launch the app on foo (i.e. https://foo.acme.com)

[flexcoders] Re: Flex crossdomain failing in Internet Explorer

2009-05-14 Thread cwicky99
doesn't seem to handle/act that way. --- In flexcoders@yahoogroups.com, cwicky99 codecr...@... wrote: I have a Flex app that runs on foo.acme.com which tries to access content on bar.acme.com over secure communications (i.e SSL). Both servers use tomcat and on bar.acme.com I have

[flexcoders] Diagramming Components

2008-11-21 Thread cwicky99
Anyone know of any good diagramming/network-type graphing components? Basically, I am looking for something that allows me to define nodes (shapes, icons, etc) that can be dragged/dropped from a pallet onto a canvas (not meaningFlex Canvas component). Those nodes can be moved around and

[flexcoders] Programmatically Determine if FlexEvent.CREATION_COMPLETE has been dispatched

2008-10-27 Thread cwicky99
I need to programmatically determine if a component has dispatched FlexEvent.CREATION_COMPLETE so that I know it has finished being created as well as all of it's children. I don't see a creationCompleted property, is there some other way to tell? I know I can listen for the event I am wondering

[flexcoders] Re: Programmatically Determine if FlexEvent.CREATION_COMPLETE has been dispatche

2008-10-27 Thread cwicky99
allways test, wether the component-creation has been completed or not. Best regards from Germany --- In flexcoders@yahoogroups.com, cwicky99 codecraig@ wrote: I need to programmatically determine if a component has dispatched FlexEvent.CREATION_COMPLETE so that I know

[flexcoders] Re: Programmatically Determine if FlexEvent.CREATION_COMPLETE has been dispatche

2008-10-27 Thread cwicky99
] On Behalf Of cwicky99 Sent: Monday, October 27, 2008 7:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Programmatically Determine if FlexEvent.CREATION_COMPLETE has been dispatche So, say I missed the creation_complete eventor I can't listen

[flexcoders] Re: LiveCycleDS - Problem Accessing RemoteObject over Secure AMF

2008-10-21 Thread cwicky99
One thing I noticed is that if I just try to browse to the channel URL: https://localhost:8443/myapp/messagebroker/amfsecure I get: HTTP Status 404 - Servlet MessageBrokerServlet is not available

[flexcoders] DataGrid: Make text bold when row is highlighted or selected

2008-10-20 Thread cwicky99
I have a DataGrid and I am trying to figure out how to make the font Bold when the user mouses over a row or selects the row. Any ideas?

[flexcoders] Re: LiveCycleDS - Problem Accessing RemoteObject over Secure AMF

2008-10-08 Thread cwicky99
I do have an SSL cert installed. So apparently I guess LCDS 2.6 is a bit different than LCDS 2.5. I was able to use FireBug and see that when I tried to browse to my app I was getting 404's because it couldn't find FlexSwfServlet which was defined in my web.xml (based on LCDS 2.5):

[flexcoders] ANSWER - Re: LiveCycleDS - Problem Accessing RemoteObject over Secure AMF

2008-10-08 Thread cwicky99
So I guess LCDS 2.6 did change some things, such as not having the flex-bootstrap JAR (not sure if this code moved somewhere else or not). But basically I updated my web.xml so all of the LCDS 2.5 stuff (as mentioned in the earlier post) is gone and I only have the servlet mapping and

[flexcoders] LiveCycleDS - Problem Accessing RemoteObject over Secure AMF

2008-10-07 Thread cwicky99
I'm trying to access a destination over SSL with the my-secure-amf channel. I have a destination defined in remoting-config.xml that looks like: destination id=foo channels channel ref=my-secure-amf / /channels /destination However when my code tries to use this destination I

[flexcoders] Re: LiveCycleDS - Problem Accessing RemoteObject over Secure AMF

2008-10-07 Thread cwicky99
One thing I noticed is that if I just try to browse to the channel URL: https://localhost:8443/myapp/messagebroker/amfsecure I get: HTTP Status 404 - Servlet MessageBrokerServlet is not available

[flexcoders] Re: LiveCycleDS - Problem Accessing RemoteObject over Secure AMF

2008-10-07 Thread cwicky99
One thing I noticed is that if I just try to browse to the channel URL: https://localhost:8443/myapp/messagebroker/amfsecure I get: HTTP Status 404 - Servlet MessageBrokerServlet is not available

[flexcoders] LiveCycleDS + Java Enums

2008-10-06 Thread cwicky99
This post: http://www.drflex.eu/2008/07/livecycle-es-data-services-data-management-and-java-enums/ Says that LiveCycleDS 2.6 handles Java enum's out of the box. Does anyone know if this only works with DataService objects? I am using a Consumer to listen to a JMS topic...but it doesn't seem to

[flexcoders] Re: LiveCycleDS + Java Enums

2008-10-06 Thread cwicky99
as well.Since AS does not have a native enum type, by default a Java5 enum gets serialized to the client using the string value of the enum. Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cwicky99 Sent: Monday, October 06, 2008 8:18 AM To: flexcoders

[flexcoders] Change LegendItem fill Color

2008-09-29 Thread cwicky99
I am trying to allow the user to select the color of the LegendItem. However, when I try and set the LegendItem fill style it doesn't change in the UI. I event tried: legendItem.setStyle(fill, new SolidColor(0xFF00FF)); legendItem.invalidateDisplayList(); ...but it has no effect. I can call:

[flexcoders] Re: Change LegendItem fill Color

2008-09-29 Thread cwicky99
in the UI. --- In flexcoders@yahoogroups.com, cwicky99 [EMAIL PROTECTED] wrote: I am trying to allow the user to select the color of the LegendItem. However, when I try and set the LegendItem fill style it doesn't change in the UI. I event tried: legendItem.setStyle(fill, new SolidColor(0xFF00FF

[flexcoders] Flex Books - Detailed/Nitty-Gritty

2008-09-26 Thread cwicky99
I'm looking for one or more books to really dive into Flex (and perhaps AS3). I know the basics and have been using it for a while, but I really want to get into the advanced topics and the details for some serious Flex development. Most of the books I've seen all seem to have the some Table of

[flexcoders] Re: Flex Books - Detailed/Nitty-Gritty

2008-09-26 Thread cwicky99
an understanding or background in C# or Java. If you are new to the development scene, then obviously flex will be rather more daunting - but it is worthwhile. On Sep 26, 2008, at 12:43 PM, cwicky99 wrote: I'm looking for one or more books to really dive into Flex (and perhaps AS3). I know

[flexcoders] AdvancedDataGrid - help displaying custom data objects

2008-08-14 Thread cwicky99
I have two classes (shown below) and I think the AdvancedDataGrid can display it properly. Basically there can be EmployeeGroups inside of EmployeeGroups..nested as much as you want. Each group also contains Employees. I'd like to display these columns:Name (of group/employee) | Dept (of employee)

[flexcoders] Re: AdvancedDataGrid - help displaying custom data objects

2008-08-14 Thread cwicky99
so to get things to show up as I wanted I had to add a children property to my EmployeeGroup (didn't see that anywhere in the documentation, but I noticed the Adobe examples have children properties). So I added this in the EmployeeGroup: pre public function get children():ArrayCollection {

[flexcoders] View State Help

2008-05-12 Thread cwicky99
I am trying to use States in my Flex 3 application. The application is run outside of the browser. The one thing I am hoping to improve upon is manual labor of removing and adding components when the states change. So for example if I have a login panel. Once the user logs in i want to go to a