[flexcoders] Gradient Color in Bar Chart

2009-05-20 Thread ak
Hi, How can i fill the gradient color in the bar chart using the css. aK Share files, take polls, and make new friends - all under one roof. Go to http://in.promos.yahoo.com/groups/

RE: [flexcoders] DataGridColumn backgroundColor bug?

2009-05-20 Thread Alex Harui
Search the bug base. I think there's already an bug on that Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Ben Reynolds Sent: Tuesday, May 19, 2009 9:43

[flexcoders] Using FFMPEG to convert video files to FLV format in flex and coldfusion

2009-05-20 Thread stinasius
hi i am trying to setup a mini video site where guys can upload videos from devices like mobile phones and video cameras and i am using flex and coldfusion to do it. one thing i would like to know is how to use ffmpeg along with coldfusion and flex to allow guys to upload videos of any format

[flexcoders] Pb With Falsh Player 10

2009-05-20 Thread christophe_jacquelin
Hello, I have an upload component that running well with Flash Player 9 and running wrong with Flash Player 10. What could be the problem. Thank you, Christophe;

Re: [flexcoders] LangRef == FAIL

2009-05-20 Thread Tom Chiverton
On Tuesday 19 May 2009, Jonathon Stierman wrote: This is why you download it and view locally. ;) In a handy AIR app like Doc? for instance. -- Helping to administratively morph world-class architectures as part of the IT team of the year, '09 and '08 Tom Chiverton Developer Tel: +44 0161

RE: [flexcoders] Pb With Falsh Player 10

2009-05-20 Thread Kenneth Sutherland
Maybe just a little bit of extra info may be handy here. Like what exactly is going wrong??? From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of christophe_jacquelin Sent: 20 May 2009 09:55 To: flexcoders@yahoogroups.com Subject: [flexcoders] Pb With Falsh Player

[flexcoders] Re: Printing PDF417 barcodes in Flex...

2009-05-20 Thread Cato Paus
Here you have it http://bumpslide.com/blog/tag/flex/ --- In flexcoders@yahoogroups.com, Laurence MacNeill lmacne...@... wrote: Has anybody here ever tried to print PDF417 barcodes in Flex? It's far more than a simple embed-the-font kind of thing, as you need a proper encoder to encode

Re: [flexcoders] Re: BlazeDS RemoteObject Performance

2009-05-20 Thread Fotis Chatzinikos
Are these calls all coming from the same client? Most browsers will open two concurrent connections to the same domain not more. If this is the case its not a server limitation but a client limitation On Wed, May 20, 2009 at 7:45 AM, Josh McDonald j...@joshmcdonald.infowrote: You should be

[flexcoders] Re: scale9grid and containers

2009-05-20 Thread thomas parquier
the css 'background-size: 100%;' has to be used with 'background-image: Embed(...)'. thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056 2009/5/5 thomas parquier

[flexcoders] Re: Pure MVC vs Cairgorm

2009-05-20 Thread aphexyuri
So which one is the Ferrari and which the mini ;) One of the biggest advantages of PureMVC has, lies with the multicore build. It allows you to have multiple application cores, and comms between them via a Pipes utility...perfect for working with modules...100%...loosly-coupled. Also, I think

[flexcoders] Master-Detail Datagrid and Form

2009-05-20 Thread Angelo Anolin
Hi. I am looking for a simple application where a datagrid is displayed. When the user clicks on the datagrid, the selected item's details is populated in a form element. I have no problem setting up the datagrid and populating it with XML data. I know that I need to map the itemClick

[flexcoders] VO Issues

2009-05-20 Thread Jeremy Rottman
I have written a vo that for some odd reason always comes up null when I try to populate it. Everything I have tried comes up with the same results. I could use an extra set of eyes to see if there is something small I am missing. Any help with this is greatly appreciated. CompanyVO: package

[flexcoders] Re: Master-Detail Datagrid and Form

2009-05-20 Thread markgoldin_2000
There are other ways but here what I am doing: mx:FormItem width=100% direction=horizontal label=First Name required=true mx:TextInput id=firstname focusOut=formatNames(firstname) text={badgelist.selectedIndex==-1 ?

[flexcoders] Re: Transition only works once

2009-05-20 Thread Tim Hoff
Probably because bottomBox is getting removed before the reverse transition plays. Instead of add/remove child, you could use setProperty on visible/includeInLayout or alpha. Another way would be to control visible/includeInLayout in the effectStart or effectEnd functions. -TH --- In

Re: [flexcoders] MVC view and model communication

2009-05-20 Thread Richard Rodseth
Yes, they would go in the model (perhaps a presentation model) and be used with binding like any other property, eg. currentState={model.userState} There's also the Observe tag from Adobe consulting, but I hven't used it in a while. On Tue, May 19, 2009 at 4:12 PM, Steve Horvath

Re: [flexcoders] Re: Master-Detail Datagrid and Form

2009-05-20 Thread Angelo Anolin
Thanks for this. Although, I am looking at something that I would get the items in the selected datagrid, store the same into variables and then set those variable values into the form field. I am still trying your codes out. Regards. From: markgoldin_2000

Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-20 Thread Angelo Anolin
Hi Tracy, Apologies if I am having a bit of a time trying to figure out what you said here. My XML data is coming from a .NET webservice call, which is a dataset being converted to XML and the value is being returned I believe as an XML string. Now, when I bind the XML string to my datagrid,

[flexcoders] Re: Master-Detail Datagrid and Form

2009-05-20 Thread markgoldin_2000
Well, that's another way of dong that but why whould you copy selectedItem into a set of vars.? --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Thanks for this. Although, I am looking at something that I would get the items in the selected datagrid, store the

[flexcoders] Re: BlazeDS RemoteObject Performance

2009-05-20 Thread mmormando
D'oh, you beat me to it! The only addition I can make is that this can usually be changed in the registry for IE, or in Firefox via the about:config page. I think the defaults in IE 8 and Firefox 3 are 8 connections, IE before 8 was indeed 2. --- In flexcoders@yahoogroups.com, Fotis

[flexcoders] Re: modify item before binding to datagrid

2009-05-20 Thread markgoldin_2000
Angelo, did you try the code I have replied to you with? --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: My apologies but I forgot to mention that I am getting the data from a .NET web service which is a dataset and then returned via string (XML) using the .NET

[flexcoders] Rotation of Text box

2009-05-20 Thread shubhra
Hi.. I'm relatively new to Flex and was wondering how one could rotate a TextArea in Flex3. I am able to rotate a Label, and Text component... but not a TextArea component.. can anyone please guide me? Thanks Regards, Subu

[flexcoders] Re: Gradient Color in Bar Chart

2009-05-20 Thread Tim Hoff
Hi, Use a gradient fill (see docs) for the BarSeries. Alternatively, you could create a custom itemRenderer for the BarSeries. Then use Degrafa or draw the gradient with the drawing api. -TH --- In flexcoders@yahoogroups.com, ak ak_...@... wrote: Hi, How can i fill the gradient color in

RE: [flexcoders] DataGrid highlight issues

2009-05-20 Thread Jake Churchill
Thanks for the reply. I was able to figure out what the problem was (at least what I think it was). The drawRowBackground method in the Datagrid class was somehow getting called twice after processing all the data that I mentioned. In the first call, it set the highlight color correctly for the

[flexcoders] Flex HTML Control in AIR app: Problem with flash contents in browser window

2009-05-20 Thread cf.ende
HI, I made a little browser with Flex/AIR using the built in mx:HTML control. Right above the html control there is a combox, where you can select the url to display in the control. If there is some Flash content inside this page, it is not possbile for the combo box to display the flyout over

[flexcoders] Flash and REST

2009-05-20 Thread Terry May
Hello, I am currently working on integrating our company's soon to be public API with Flash/Flex. Our server side engineers have built a sensible REST based service, after years of working with flash integration using XML-RPC I am very happy with the API they have put together and want to try to

[flexcoders] Re: Flash and REST

2009-05-20 Thread djhatrick
Hello, we use REST as well, unfortunately, browser limitations prevent the browser from sending anything but a 200 to the flash. The way we work around this issue, is we use our own status codes, that basically wraps normal status codes, so inside your result event handler switch on the status

[flexcoders] Re: Pure MVC vs Cairgorm

2009-05-20 Thread djhatrick
Pure mvc whips the camel's ass! You should use it, I absolutely love the way it just works. P --- In flexcoders@yahoogroups.com, aphexyuri yuriv...@... wrote: So which one is the Ferrari and which the mini ;) One of the biggest advantages of PureMVC has, lies with the multicore build.

[flexcoders] Re: VO Issues

2009-05-20 Thread djhatrick
I think we'd need to see more code to help you more. Usually, something is being casted with as and it doesn't match the data type, it will throw null. I would try removing the class alias, and see what happens. Also, try calling registerClassAlias(com.rottmanj.model.vo.CompanyVO) In your

[flexcoders] Re: getting currency symbol to display when loading locale from resource module

2009-05-20 Thread flexcoder2008
Yes, that's correct - for my purposes that's what I needed - I was using the non-breaking space to put an extra character before the currency symbol (for right-aligned currency symbol and also a blank space as the thousands seperator character). Thanks again --- In

Re: [flexcoders] Re: getting currency symbol to display when loading locale from resource module

2009-05-20 Thread Paul Hastings
flexcoder2008 wrote: Figured it out. To get the blank space to work in the .properties file you have to enter it as ALT+0160 just so you know, that's a non-breaking space (not sure how the player renders that sort of thing).

Re: [flexcoders] Re: Printing PDF417 barcodes in Flex...

2009-05-20 Thread Laurence MacNeill
Thanks! That's perfect! Laurence MacNeill Mableton, Georgia, USA At 05:30 AM 5/20/2009, you wrote: Here you have it http://bumpslide.com/blog/tag/flex/http://bumpslide.com/blog/tag/flex/ --- In mailto:flexcoders%40yahoogroups.comflexcoders@yahoogroups.com, Laurence MacNeill lmacne...@...

[flexcoders] Re: getting currency symbol to display when loading locale from resource module

2009-05-20 Thread flexcoder2008
Thanks! Saving the .properties file with UTF-8 encoding fixed the problem with the pound symbol. I still am unable to get an empty space character to display though. How do I specify a blank space for the thousands seperator? I tried putting nbsp; in the .properties file but that doesn't work

RE: [flexcoders] DataGrid sort

2009-05-20 Thread Alex Harui
I would set a breakpoint on your sortable function so you can see who is calling it again. It should not be called when you select a row. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: VO Issues

2009-05-20 Thread Jake Churchill
If you are using ColdFusion for your server, you can return a typed structure rather than registering the object mappings. Like this: Struct[__TYPE__] = com.rottmanj.model.vo.CompanyVO; Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com

[flexcoders] Re: VO Issues

2009-05-20 Thread valdhor
Instead of companyVO = event.itemRenderer.data as CompanyVO try companyVO = event.currentTarget.selectedItem as CompanyVO HTH Steve --- In flexcoders@yahoogroups.com, Jeremy Rottman rottmanl...@... wrote: I have written a vo that for some odd reason always comes up null when I try to

[flexcoders] Re: DataGrid sort

2009-05-20 Thread mhbmarcos
thank Alex But, i see the stack execution, but the sort function is throw by de arralListView, and i am not delete this execution. any another solution? thank --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: I would set a breakpoint on your sortable function so you can see

Re: [flexcoders] Re: BlazeDS RemoteObject Performance

2009-05-20 Thread Aldo Bucchi
Hi, Yes! We figured yesterday that it is, in fact, a *client side* limitation. We are using AIR 1.5 BTW. Is there any workaround for this? We are changing the overall strategy to consolidate several queries at once, but it would be nice to raise the client side pool a bit more ( having only two

[flexcoders] Re: getting currency symbol to display when loading locale from resource module

2009-05-20 Thread flexcoder2008
Figured it out - to get a blank space to display in your .properties file you have to type ALT+0160 --- In flexcoders@yahoogroups.com, flexcoder2008 djohnso...@... wrote: Thanks! Saving the .properties file with UTF-8 encoding fixed the problem with the pound symbol. I still am unable to

[flexcoders] Re: getting currency symbol to display when loading locale from resource module

2009-05-20 Thread flexcoder2008
Figured it out. To get the blank space to work in the .properties file you have to enter it as ALT+0160 --- In flexcoders@yahoogroups.com, flexcoder2008 djohnso...@... wrote: Thanks! Saving the .properties file with UTF-8 encoding fixed the problem with the pound symbol. I still am

[flexcoders] Re: Flash and REST

2009-05-20 Thread valdhor
This is my opinion - take it with a grain of salt ;-} I don't believe REST services should include errors in HTTP headers. There was no problem with the HTTP - the error was generated in your code. These types of errors should be returned as part of the data payload. In all of my SOAP code I

[flexcoders] can one access mx.core.Container from within a SWFLoader

2009-05-20 Thread Stephen More
Lets say I have 2 compiled flex applications: main.swf - contains a View Stack components.swf - contains 2 mx.containers.Panel within main.swf can one use SWFLoader ( or something else ) to add 1 of the panels from components.swf as a child of the view stack within main.swf ? I know

[flexcoders] DataGrid sort

2009-05-20 Thread mhbmarcos
Hi!!, i have a problem with dataGrid the dataGrid have into dataGridColumn a sortable function, so if sort this column, sort correct, but if then i have select any row, againt execute the sortableColumn. Please, solution for this? how to remove sortable function? thanks

[flexcoders] Inconsistant linkage, 'isNaN' is marked as extern, but '__AS3__.vec:Vector$int' is not.

2009-05-20 Thread Jesse Warden
When trying to create a library project with AIR as an external library, I keep getting the above error. I've tried multiple SDK's, using Flex Builder, Eclipse plugin, and the ANT tasks; all result in the same error.

[flexcoders] Re: Transition only works once

2009-05-20 Thread jimmy5804
Actually, instead of add/remove child in the Sequence, what I meant to say was I had tried Add/RemoveChildAction, which as I understand it, is supposed to give you control over the ordering of the effect with regard to the add/removechild. But... I'll hack around and see what I can do. Thanks

[flexcoders] AMF serialization/de-serialization non-blocking?

2009-05-20 Thread limscoder
I'm having trouble serializing/de-serializing large object graphs, because it locks up the Flash player. Is there a way to serialize/de-serialize in a non-blocking way when a RPC is sent/received?

[flexcoders] Re: VO Issues

2009-05-20 Thread Jeremy Rottman
Well I ended up figuring it out, it was a small issue with how the returning cfc data was type cast. Always the small things that you never expect it to be.

[flexcoders] AIR: Security sandbox violation: PNG trying to access .swf?

2009-05-20 Thread Ken Dunnington
Hi all, I'm getting some bizarre security errors in an AIR app, and I can't for the life of me make any sense of them. The most reproducible error looks like this: *** Security Sandbox Violation *** SecurityDomain

Re: [flexcoders] Re: Flash and REST

2009-05-20 Thread Terry May
Well in our case the headers do not actually contain error information. The headers might contain information about what URL to call next, or what the URL with the stored profile might be. more info here for anyone who interested (

[flexcoders] Re: How do I do a sort on IHierarchicalCollectionView

2009-05-20 Thread djhatrick
I created my sort, applied called my grouping Collection.refresh() and the data duplicates in the advancedDatagrid, any ideas? Thanks, Patrick --- In flexcoders@yahoogroups.com, foobone9 foobo...@... wrote: I don't think that it is different. IHierarchicalCollectionView extends

Re: [flexcoders] DataGridColumn backgroundColor bug?

2009-05-20 Thread Andriy Panas
The corresponding issue for this bug is http://bugs.adobe.com/jira/browse/SDK-14785, it is still not fixed in SDK with a current status deferred -- Best regards, Andriy Panas

[flexcoders] Re: VO Issues

2009-05-20 Thread Jeremy Rottman
Ok here is another oddity that I have run into. I have these two methods one is the action method used to call the cfc and the other is the result event for the results. [Bindable] public var acKeys:ArrayCollection; public var acPerson:ArrayCollection; public var companyVO:CompanyVO; private

[flexcoders] Modular Flex application and BlazeDS serialization problem

2009-05-20 Thread Leon`e
Hey there, I'm writing modular Flex application that uses BlazeDS to communicate with Spring managed Java backend. I've created Java Objects on the server side and relevant ActionScript Objects in flex. I've used RemoteClass metatag to serialize objects from flex to java. Everything works

Re: [flexcoders] Modular Flex application and BlazeDS serialization problem

2009-05-20 Thread Leon`e
I've already solved problem. I have found this thread on other forum: http://www.flexdeveloper.eu/forums/mxml/help!!-remote-object-method-invocation-faultdetail%27the-expected-argument-typ/ It pointed out that i can experience problems with ApplicationDomain when loading modules and sub

[flexcoders] Re: Embedding fonts dynamically...

2009-05-20 Thread rid_b80
I've tried this and it doesnt seems to unload the previous fonts Is anyone having that problem as well? --- In flexcoders@yahoogroups.com, Wildbore, Brendon b.j.wildb...@... wrote: Hi, One way of achieving this is two have a number of different stylesheets with the embedded fonts in them.

[flexcoders] Flex in jsp

2009-05-20 Thread Alex Qi (yuqi)
Hi: I got the following exception while trying to embed flex inside the jsp. java.lang.NullPointerException flex.bootstrap.BootstrapTag.init(BootstrapTag.java:39) flex.bootstrap.BootstrapBodyTag.init(BootstrapBodyTag.java:28)

RE: [flexcoders] Re: modify item before binding to datagrid

2009-05-20 Thread Tracy Spratt
Here is my advice: * Set resultFormat=e4x * * In the result handler, loop over the xml nodes, for each, create and populate a VO class instance, taking care to get the data types correct * Put each VO in an ArrayCollection, * Bind to the ArrayCollection This

RE: [flexcoders] Re: Embedding fonts dynamically...

2009-05-20 Thread Alex Harui
It should work, but depending on which class is going to display the text, you might also need to use ContextualClassFactory and/or package those classes into the same modules as the fonts. See other posts by me on embedded fonts. Alex Harui Flex SDK Developer Adobe Systems

RE: [flexcoders] Re: DataGrid sort

2009-05-20 Thread Alex Harui
Post the stacktrace. Use a debug build so you get line numbers Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of mhbmarcos Sent: Wednesday, May 20, 2009

RE: [flexcoders] AIR: Security sandbox violation: PNG trying to access .swf?

2009-05-20 Thread Alex Harui
FlashTmp() looks like a method to me. You sure there's no code in there? Lots of Sandbox Violation warnings are swallowed and harmless. My general rule is that unless it throws up the RTE dialog, it was just a warning. I think I would just explore why the app is in a bad state keeping mind

[flexcoders] TextArea Line-breaks

2009-05-20 Thread Laurence MacNeill
How do I add line-breaks to a text area? In ActionScript, I mean -- I want something like the following: myTextArea.text = Line one. + lineBreak + Line two. I just don't know what to put in place of 'lineBreak' above. Thanks for any and all help, Laurence MacNeill Mableton, Georgia, USA

[flexcoders] Re: TextArea Line-breaks

2009-05-20 Thread rid_b80
try \n for the line break --- In flexcoders@yahoogroups.com, Laurence MacNeill lmacne...@... wrote: How do I add line-breaks to a text area? In ActionScript, I mean -- I want something like the following: myTextArea.text = Line one. + lineBreak + Line two. I just don't know what to put

[flexcoders] Sending SOAP with attachment

2009-05-20 Thread daxdr9
Seems receiving of SOAP attachments is out, but does Flex support sending of SOAP attachments (either directly or indirectly)? --- In flexcoders@yahoogroups.com, Mykola Dzyuba mdzy...@... wrote: I don't think SOAP attachments are supported in Flex at the moment. Here is some more info with