Re: [flexcoders] Slider dataTip- is it possibole to have this visibale all the time

2009-06-08 Thread Andrew D. Goodfellow
Does anyone have a good example of manually tool-tipping the thumb on a Slider (like what Manish is referring to)? -Andy On Thu, Jun 4, 2009 at 2:15 PM, Manish Jethanimanish.jeth...@gmail.com wrote: On Wed, Jun 3, 2009 at 4:29 PM, jossminker jossmin...@yahoo.com wrote: I woudl like to have

Re: [flexcoders] Re: Flex Appointment Calendar Component

2008-07-18 Thread Andrew D. Goodfellow
I get the same error. -Andy On Fri, Jul 18, 2008 at 7:08 AM, Jeremy Anderson [EMAIL PROTECTED] wrote: I'm now getting an error: ReferenceError: Error #1069: Property R918 not found on myComponents.Calendar and there is no default value. at myComponents::Calendar/findMaxColumns() at

Re: [flexcoders] Re: How to get the reference to an item renderer given item index in dataProvide

2008-06-24 Thread Andrew D. Goodfellow
Hi Gordon, I actually found a use-case where I think this is needed. If you are interested I'd be happy to discuss it with you off-list. -Andy On Mon, Apr 28, 2008 at 8:12 PM, Gordon Smith [EMAIL PROTECTED] wrote: Can you please explain your use case for needing a reference to an item

Re: [flexcoders] Flex 3 / AIR: Creating a Timer and binding Text

2008-04-23 Thread Andrew D. Goodfellow
Hi Steve, You need a [Bindable] meta tag in front of every property you need to be bindable. You only have it on callID, not callStatus. -Andy On 4/23/08, Steve Good [EMAIL PROTECTED] wrote: (I sent this earlier, but it never made it through, so I apologize if it ends up being a double

Re: [flexcoders] # sign in URL - how do I get rid of it?

2008-04-04 Thread Andrew D. Goodfellow
Hi Robert, Just set historyManagment=false in your Application tag. -Andy On 4/4/08, Robert Csiki [EMAIL PROTECTED] wrote: After we switched to using Flex3, there's a # sign that occasionally appears in browser, on the URL that accesses the Flex app, right after the context root; how can

Re: [flexcoders] Average salary of a Flex Developer in the Silicon Valley

2008-03-22 Thread Andrew D. Goodfellow
For what time period? On 3/22/08, heat_samurai [EMAIL PROTECTED] wrote: I've got an offer to join a reputed customized software firm in SF. I've got over 2 yrs of experience as a Flash Developer and migrated to Flex about 8 months back. They've offered me around $4,500. Is that good

Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-17 Thread Andrew D. Goodfellow
, 2008 3:03 AM, Andrew D. Goodfellow [EMAIL PROTECTED] wrote: We used the AlivePDF library on one of our client projects to generate PDF reports. I was very happy with the results. http://www.alivepdf.org/ http://code.google.com/p/alivepdf/ -Andy On Feb 16, 2008 9:40 PM

Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-16 Thread Andrew D. Goodfellow
We used the AlivePDF library on one of our client projects to generate PDF reports. I was very happy with the results. http://www.alivepdf.org/ http://code.google.com/p/alivepdf/ -Andy On Feb 16, 2008 9:40 PM, Eduardo Dias [EMAIL PROTECTED] wrote: Is there any way with Flex Charting (or

Re: [flexcoders] Running a flex app from local file system

2008-01-28 Thread Andrew D. Goodfellow
Hi Greg, I think if you go to Project | Properties | Flex Compiler and add -use-network false to the Additional Compiler Arguments that might do the trick. You'll need to rebuild. I think the problem you are having is due to security constraint built into the Flash player. It will allow the swf

Re: [flexcoders] flex rich edit control with image support

2007-12-27 Thread Andrew D. Goodfellow
Please consider it. The Flex community could use it. If you don't have time maybe you could give your code to the community to finish? -Andy On Nov 21, 2007 11:34 PM, DreamCode [EMAIL PROTECTED] wrote: I started doing one a while back, but got too busy with other stuff and I never got back

Re: [flexcoders] Are you going to MAX?

2007-09-21 Thread Andrew D. Goodfellow
I'll be there. -Andy On 9/21/07, ben.clinkinbeard [EMAIL PROTECTED] wrote: Just curious how many people from the list will be in Chicago. Ben

Re: [flexcoders] Re: DB access in Apollo

2007-03-07 Thread Andrew D. Goodfellow
+1 sqlite for me as well. An embedded SQL database would add tremendous value in the B2B custom app realm where I live. -Andy

Re: [flexcoders] Flex / Flash specific search engine

2007-03-07 Thread Andrew D. Goodfellow
Steve, At first glance it seems like this will be very useful! I especially like the LiveDocs search. I'll add it to my daily work flow and see how it goes. -Andy On 07 Mar 2007 10:21:40 -0800, Steve Drucker [EMAIL PROTECTED] wrote: http://www.gotswf.com Feedback appreciated. Regards,

[flexcoders] ByteArray / URLLoader / Loader / Image / Size?

2007-02-02 Thread Andrew D. Goodfellow
(I have searched for this answer on the list and in the docs and can't find anything so I'm gonna go ahead and post. If I missed a previous post, I apologize, please point me towards it.) I have an image in a ByteArray and I want to display it within a specific width and height inside an Image

Re: [flexcoders] ByteArray / URLLoader / Loader / Image / Size?

2007-02-02 Thread Andrew D. Goodfellow
the URLLoader in your code So try doing this: private var loader:FlexLoader = new FlexLoader(); loader.loadBytes (imageByteArray); previewImage.source = loader; mx:Image scaleContent=true height=260 width=215 id=previewImage/ -Doug Andrew D. Goodfellow wrote: (I have searched

Re: [flexcoders] ByteArray / URLLoader / Loader / Image / Size?

2007-02-02 Thread Andrew D. Goodfellow
this and replace yourCompleteEventHandler with you event handler function: loader.contentLoaderInfo.addEventListener(Event.COMPLETE, yourCompleteEventHandler); -Doug Andrew D. Goodfellow wrote: Thanks Doug! When I do that I'm getting the error: Error: Error #2099: The loading object is not sufficiently

Re: [flexcoders] Re: Loader.load(URLRequest) - ByteArray ?

2007-01-29 Thread Andrew D. Goodfellow
@yahoogroups.com flexcoders%40yahoogroups.com, Andrew D. Goodfellow [EMAIL PROTECTED] wrote: I feel like I must be missing something. I have a Loader object that I am loading image data to, sometimes as a URLRequest and sometimes as a ByteArray. It depends on if I am getting the data from an upload

[flexcoders] Loader.load(URLRequest) - ByteArray ?

2007-01-28 Thread Andrew D. Goodfellow
I feel like I must be missing something. I have a Loader object that I am loading image data to, sometimes as a URLRequest and sometimes as a ByteArray. It depends on if I am getting the data from an upload or from the database. How do I go about getting a ByteArray back out of the Loader

Re: [flexcoders] Since flex 2.0.1

2007-01-17 Thread Andrew D. Goodfellow
On 1/8/07, John Kirby [EMAIL PROTECTED] wrote: Dave - Thanks. I have solved my problems thanks to this link:

Re: [flexcoders] Flex/Flash on The iPhone ?

2007-01-10 Thread Andrew D. Goodfellow
If y'all haven't seen this you should. The iPhone is not the first interface to show this kind of multiple gesture behavior... http://www.youtube.com/watch?v=PLhMVNdplJc -Andy On 1/10/07, Michael Tuminello [EMAIL PROTECTED] wrote: I think they have no choice but to introduce something new

Re: [flexcoders] Flex/Flash on The iPhone ?

2007-01-10 Thread Andrew D. Goodfellow
Maybe I'm wrong, but I saw a bunch of tiling going on when Jobs was zooming in and out. I also noticed the compression changes when the zoom-in finished from low quality to high. All that makes me wonder if there isn't some faking-it going on for the zoom feature. Almost like a mapping program

Re: [flexcoders] FLV Thumbnail

2007-01-08 Thread Andrew D. Goodfellow
John, I don't do it in AS. I always process the flv on the fly (with caching of course) with an open source tool called ffmpeg ( http://sourceforge.net/projects/ffmpeg/) and load the thumbnail via url just like an external image. It's tricky to get it working, but once you do it works

Re: [flexcoders] Re: How can we achieve this effect in flex??? Any Ideas???

2007-01-08 Thread Andrew D. Goodfellow
Omkar, Have you made any progress with this? Maybe I missed it? Otherwise I'm going to try to create it myself. -Andy On 10/3/06, omkarjoe [EMAIL PROTECTED] wrote: Thanks Brian, That are really valuable inputs. I am thinking of creating that effect as my RnD pro. As soon as I finish it

Re: [flexcoders] Re: FLV Thumbnail

2007-01-08 Thread Andrew D. Goodfellow
remoting On 1/8/07, john_69_11 [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Andrew D. Goodfellow Ya, I had heard about that. I was trying to offload some of the processing to the user by doing it in AS. I have found that unless you are getting the FLV

[flexcoders] Allowing text to follow a curve

2007-01-02 Thread Andrew D. Goodfellow
Hey, has anyone out there ever made text that follows a curve in flex2? Like a besier curve or even a circle? I've searched but can't find any examples of where to start. TIA. -Andy

Re: [flexcoders] Flex help on IRC

2006-11-28 Thread Andrew D. Goodfellow
Great idea Louie! I've been using this channel for about a day now and I'm finding it very useful. I'd definitely encourage everyone on the list to come and participate, or at least lurk. :o) -Andy On 11/27/06, Louie Penaflor [EMAIL PROTECTED] wrote: Hey everyone, For

Re: [flexcoders] security issues when capturing flex screens that contain other domain bitmaps

2006-11-03 Thread Andrew D. Goodfellow
I literally just hit this problem now too. Did you ever receive a solution Hank? Anyone else?-AndyOn 9/26/06, hank williams [EMAIL PROTECTED] wrote: I have a flex screen that I want to capture into a bitmap using the technique that Andrew Trice described

Re: [flexcoders] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-11-02 Thread Andrew D. Goodfellow
on it... what features of Apollo are people most excited about? - Gordon From: [EMAIL PROTECTED]ups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Andrew D. Goodfellow Sent: Tuesday, October 31, 2006 6:15 AM To: [EMAIL PROTECTED]ups.com Subject: Re: [flexcoders] Isn´t there any

Re: [flexcoders] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-10-31 Thread Andrew D. Goodfellow
Yep, I know how you feel. The suspense is brutal. I could have already built and sold like 8 products built on it.There are probably too many holes in it still, or at least that's what I keep telling myself. :o) -AndyOn 10/31/06, arianrechia [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: [DateChooser] Emphasize specific days

2006-10-11 Thread Andrew D. Goodfellow
answered that question as well then I apologize and humbly ask you to point us all back to a different answer. I believe I have searched the forums thoroughly and came up empty.-Andy On 10/11/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 11 October 2006 04:56, Andrew D. Goodfellow wrote

Re: [flexcoders] Re: [DateChooser] Emphasize specific days

2006-10-10 Thread Andrew D. Goodfellow
I'm really interested in this type of thing as well. Searching the list I see one other question about this with no response from Syed Mazhar Hasan Qadri on August 6.Has anyone done anything like this with the Flex 2 DateChooser? It seems like this would pretty a pretty common use-case for this

Re: [flexcoders] XMPP AS3 class libraries on Labs

2006-09-13 Thread Andrew D. Goodfellow
Hi Danny,Any word on an update? There are several issues that are not compatible with the full release. StringBuilder and flash.util are a few. I have corrected all the errors and warnings, however many of the tests are failing and if there is an imminent update I will wait on debugging the old

[flexcoders] Flex 1.5 Box container component that wraps?

2006-04-23 Thread Andrew D. Goodfellow
We're all super familiar with the HBox and VBox containers. Has anyone extended one of these to get a wrapping behavior? Almost like an HVBox? :) I want to create a tag cloud using Link components to look like: http://www.flickr.com/photos/tags/ I don't think Grid or Tile will give me the

Re: [flexcoders] Flex 1.5 HTTPService Fault: An XML element was malformed

2005-12-30 Thread Andrew D. Goodfellow
. var sReqParam:String = "SEL_EVENT" + sWhatever; var oRequest:Object = new Object({sql: sReqParam }) eventHTTP.send(oRequest ); Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Andrew D, Goodfellow Sent: Friday, December 30, 20

[flexcoders] Flex 1.5 HTTPService Fault: An XML element was malformed

2005-12-29 Thread Andrew D, Goodfellow
Does anyone know why when I run this code I get an error that says: HTTPService Fault: An XML element was malformed.? It seems to only happen when I escape things like and # into the URL.?xml version= 1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml mx:HTTPService