Re: [flexcoders] Flex line chart

2011-09-13 Thread John Fletcher
Generally you have to reconstruct the data into an appropriate format for a Flex chart, you can do that server-side or client-side before giving it to the chart. John 2011/9/13 Brendan Meutzner bmeutz...@gmail.com ** I've re-read your post 3 times, and still can't make sense of how your

[flexcoders] AIR Packaging for different handheld devices

2011-09-13 Thread mulchand12345
Hi All, I have following questions related to the packaging of AIR applications for different devices. 1. Can I install iPhone applications on iPad? If yes, then, can the iOS packager provided in flashBuilder 4.5.1 be used to package applications for iPad? 2. Can I package the applications

[flexcoders] Getting Snap Interval Problem in VSlider

2011-09-13 Thread B.Praveen
Hi Friends I Have Canvas Which Contain The V slider, contain Snap interval Value 0.01;Snap Inter value increment Like In The 0.01,0.02,0.03,0.04; But It Increment The Values Likes in the order 0.03,0.06 Every time ; How To Solve This Problem; Please Check The Sample Code Here;

RE: [flexcoders] Flex line chart

2011-09-13 Thread Bill Brutzman
Wesley What. no middle-ware? How is Flex connecting to MySQL. ColdFusion, PhP, Java? --Bill From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of chinwesley Sent: Monday, September 12, 2011 10:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

Re: [flexcoders] AIR Packaging for different handheld devices

2011-09-13 Thread Douglas Knudsen
Check this link http://www.adobe.com/products/flash-builder/faq.html No to #2, only the PlayBook so far. Douglas Knudsen http://www.cubicleman.com this is my signature, like it? On Tue, Sep 13, 2011 at 1:54 AM, mulchand12345 mulchand12...@yahoo.inwrote: ** Hi All, I have following

RE: [flexcoders] navigateToUrl( ) - can I determine when completed?

2011-09-13 Thread Merrill, Jason
If yo can capture when the HTML page is done doing it's thing with Javascript, the Javascript could call a method in the Flash file to trigger an event there. Jason Merrill Instructional Technology Architect II Bank of America Global Learning ___ From:

[flexcoders] Best practices for dynamically styling components in FlashBuilder 4.5

2011-09-13 Thread c0mpl3xxx
Hi all, I'm trying to create a set of components for a video player app that require the ability to be styled via user supplied color options. Basically I have a set of buttons and text objects that will receive custom color properties from the user. This would be easy enough to accomplish

[flexcoders] Re: Best practices for dynamically styling components in FlashBuilder 4.5

2011-09-13 Thread turbo_vb
styleManager.getStyleDeclaration(style_name).setStyle(property, value); -TH --- In flexcoders@yahoogroups.com, c0mpl3xxx ktyacke@... wrote: Hi all, I'm trying to create a set of components for a video player app that require the ability to be styled via user supplied color options.

[flexcoders] passing parameters to coldfusion

2011-09-13 Thread lincoln
Hi , I want to parameters to cfm file from flex.. the parameters contains arrays and objects ... please help me how to do this

Re: [flexcoders] passing parameters to coldfusion

2011-09-13 Thread Brendan Meutzner
You need to look at using a RemoteObject, HTTPService, or WebService component in Flex. There are plenty examples of using CF with Flex... here's a tutorial to get started: http://www.adobe.com/devnet/flex/articles/fcf_getting_started_coldfusion_flex.html On Tue, Sep 13, 2011 at 8:12 AM,

[flexcoders] Re: Best practices for dynamically styling components in FlashBuilder 4.5

2011-09-13 Thread c0mpl3xxx
Thanks TH, That will help with updating the font sizes! If anyone else has any other thoughts or suggestions on how to best manage updating the color styles of the buttons and other components, it would be greatly appreciated!

[flexcoders] Re: Best practices for dynamically styling components in FlashBuilder 4.5

2011-09-13 Thread c0mpl3xxx
Note: As a potential solution, I have been trying to add some custom style properties to my various components (ie. fillColor, fillAlpha, etc.), then setting these properties via CSS. The thought was that I could then simply update those properties using the styleManager.getStyleDeclaration()

[flexcoders] Re: Best practices for dynamically styling components in FlashBuilder 4.5

2011-09-13 Thread c0mpl3xxx
So as it turns out, the reason that I was getting errors on my custom styles was that I was trying to use a pre-existing stylename (fillColor was already taken). It seems to be working somewhat well now and I might have my solution; however, I'd really like to hear any suggestions anyone still