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

2009-06-18 Thread cwicky99
t;color", getStyle("color")); } ... You'll notice I just listen for the rollOver/rollOut events and handle it there. It uses the textRollOverColor style that is set on the ComboBox :) --- In flexcoders@yahoogroups.com, "cwicky99" wrote: &

[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: My ComboBox is configured in MXML such as: My CSS has: ComboBox { textRollOverColor=0xFF; } So what I want is for the items in my ComboBox ("foo") to have "red" text on the Label when t

[flexcoders] Re: Flex crossdomain failing in Internet Explorer

2009-05-21 Thread cwicky99
anyone...?? --- In flexcoders@yahoogroups.com, "cwicky99" 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

[flexcoders] Re: Flex crossdomain failing in Internet Explorer

2009-05-14 Thread cwicky99
e user. However, IE doesn't seem to handle/act that way. --- In flexcoders@yahoogroups.com, "cwicky99" 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 t

[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] 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 connected

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

2008-10-27 Thread cwicky99
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 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 mis

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

2008-10-27 Thread cwicky99
gt; > > this.button.addEventListener(FlexEvent.CREATION_COMPLETE, > > > onCreationComplete); > > > this.dictionary[this.button] = false; > > > } > > > > > > function onCreationComplete(event:Event):void > > > { > > > if (event.target == this.b

[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 wonderin

[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] 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 definitio

[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] 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 - 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: However when my code tries to use this destination I get: NetConnection.Call.Failed: HTTP: Failed: url: 'https://localhost:

[flexcoders] Re: LiveCycleDS + Java Enums

2008-10-06 Thread cwicky99
hat with LC DS2.6 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,

[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 w

[flexcoders] Re: Change LegendItem "fill" Color

2008-09-29 Thread cwicky99
uot; property doesn't update 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&#x

[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 cal

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

2008-09-26 Thread cwicky99
- its not terribly difficult to pick up once you have 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, cwick

[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 C

[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: public function get children():ArrayCollection {

[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] 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