[flexcoders] PlotChart Multiple Values Per Point

2009-11-03 Thread pliechty
I created a PlotChart with a single plotseries. My data has multiple values for the same point. How do I select all the items? Each point contains a query. I want to display the query for each one. So I need to be able to select them all. I am capturing the PlotChart change event. It

[flexcoders] I want print component to be invisible in the ui

2009-05-15 Thread pliechty
I want to print a component in Flex without it showing up in the UI. I have tried setting visible = false and includeInLayout = false. Nothing prints when I do that. If those are true, then it shows up in the ui. I just need to print a component without it showing up in the ui.

[flexcoders] Re: Printing Images with printJob.addObject

2009-05-15 Thread pliechty
You can do printing with dynamic images, you just have to wait until the images are loaded before adding them to the printjob. Listen for the Event.COMPLETE event to know when the images are loaded. I am doing it and it works fine. --- In flexcoders@yahoogroups.com, bnuenemann bened...@...

[flexcoders] Re: Text Looks Ugly When PrintAsBitmap=true

2009-03-11 Thread pliechty
@yahoogroups.com, pliechty pliechty@ wrote: We print images in our application. I can print fine with printAsBitmap=false, but I want to set the smooth flag on the image. I have to set printAsBitmap=true to get the smooth flag to take effect, but my text looks horrible. Is there a way to have

[flexcoders] Text Looks Ugly When PrintAsBitmap=true

2009-03-10 Thread pliechty
We print images in our application. I can print fine with printAsBitmap=false, but I want to set the smooth flag on the image. I have to set printAsBitmap=true to get the smooth flag to take effect, but my text looks horrible. Is there a way to have smooth images and nice looking text?

[flexcoders] Scale To Fit

2009-03-05 Thread pliechty
Does Flex have a scale to fit mechanism? I would like to scale a component to fit in the visible screen space.

[flexcoders] Print Inverted Image?

2009-03-04 Thread pliechty
I am trying to print an image with a filter on it. The filter inverts the colors of the image. I add the imgBox to the printJob. But, the image doesn't print with the filter applied. Here is the code: mx:Script ![CDATA[ private function invert():void { var matrix:Array

[flexcoders] Custom Binding Question

2009-02-12 Thread pliechty
I am using custom binding in one of my classes. I have one problem. I fire an event when a property is set, but the bound object is an mxml component that has not been created yet. Normal binding will wait until it is created and then set the bound value. How do I mimic this behavior in a

[flexcoders] Mask stops working when scaling hits .91

2009-01-30 Thread pliechty
I apply a mask to my Canvas component which works great. I have a child component of the Canvas which is an image that gets scaled. When the scaling of the child hits .91, the mask stops working. Any ideas?