Re: Drag and drop ceases to work after a right click drag

2014-09-02 Thread Thomas Bottini
It seems I'm completely alone on this... Am I the only one who has encountered this problem ? Thanks all ! -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Drag-and-drop-ceases-to-work-after-a-right-click-drag-tp7782p7816.html Sent from the Apache Flex Users

CalloutButton Example please

2014-09-02 Thread Ulrich Andreas
I am trying to use a CalloutButton in a FlexWeb Application. But I do not get the desired behavior the CalloutContent shows up on MouseOver Event - I'd like to change this to MouseClick on the CalloutButton. Even worse is the automatic closing with MouseOut - I can't even reach the Content

Re: CalloutButton Example please

2014-09-02 Thread Angelo Lazzari
Hi, did you try this tutorial? http://devgirl.org/2011/10/17/flex-mobile-development-callout-component-sample-with-source/ Angelo 2014-09-02 16:35 GMT+02:00 Ulrich Andreas andreas.ulr...@formware.de: I am trying to use a CalloutButton in a FlexWeb Application. But I do not get the desired

Re: CalloutButton Example please

2014-09-02 Thread Deepak MS
https://issues.apache.org/jira/browse/FLEX-34405 Set rollOverOpenDelay to NaN. If you are using a CSS, add this in it: s|CalloutButton { rollOverOpenDelay: NaN; } On Tue, Sep 2, 2014 at 8:05 PM, Ulrich Andreas andreas.ulr...@formware.de wrote: I am trying to use a CalloutButton in a

AW: CalloutButton Example please

2014-09-02 Thread Ulrich Andreas
Works! Kudos Thank you! -Ursprüngliche Nachricht- Von: Deepak MS [mailto:megharajdee...@gmail.com] Gesendet: Dienstag, 2. September 2014 16:49 An: users@flex.apache.org Betreff: Re: CalloutButton Example please https://issues.apache.org/jira/browse/FLEX-34405 Set rollOverOpenDelay

Line chart

2014-09-02 Thread mark goldin
I have a line chart that sometimes have a line overlayed by another chart objects. How can I make sure that the line is drawn always on a top? Thanks

Re: Line chart

2014-09-02 Thread Deepak MS
It depends on the order in which you add the series items in the chart. Whichever item you need on top should be added as first item in the series array. On Tue, Sep 2, 2014 at 9:17 PM, mark goldin markzolo...@gmail.com wrote: I have a line chart that sometimes have a line overlayed by another

Re: Line chart

2014-09-02 Thread mark goldin
Can I change that order without refactoring code? On Tue, Sep 2, 2014 at 11:05 AM, Deepak MS megharajdee...@gmail.com wrote: It depends on the order in which you add the series items in the chart. Whichever item you need on top should be added as first item in the series array. On Tue,

Re: Line chart

2014-09-02 Thread Deepak MS
Yes, you can. How are you populating the series objects? Is it in mxml or is it in actionscript (dynamically creating series)? On Tue, Sep 2, 2014 at 9:36 PM, mark goldin markzolo...@gmail.com wrote: Can I change that order without refactoring code? On Tue, Sep 2, 2014 at 11:05 AM, Deepak

Re: Line chart

2014-09-02 Thread mark goldin
ActionScript. On Tue, Sep 2, 2014 at 11:08 AM, Deepak MS megharajdee...@gmail.com wrote: Yes, you can. How are you populating the series objects? Is it in mxml or is it in actionscript (dynamically creating series)? On Tue, Sep 2, 2014 at 9:36 PM, mark goldin markzolo...@gmail.com wrote:

Re: Drag and drop ceases to work after a right click drag

2014-09-02 Thread Alex Harui
I haven't looked to see if the AIR runtime even supports what you want. Have you seen it work in other AIR apps? In Apache, it doesn't really matter if you are alone or not. We are a community of volunteers and not a corporate-driven product. You can file a JIRA bug and lobby for votes. You

Re: AW: Simple Database Architecture Suggestions Please

2014-09-02 Thread Tintin
Thank you Olaf (sorry for the delay in replying) your reply was very helpful. It is looking like PHP and MySQL is the best option for me. I've got to get my head around how they talk to each other and allow data to flow from MySQL to Flex objects. I'm unsure if I need (or should consider) a

Re: Line chart

2014-09-02 Thread Deepak MS
Okay. Let's say you have 'Sales' as your columnseries and 'Target' as your lineseries, then your lineChart.series[0] should be 'Sales', and lineChart.series[1] should be 'Target', which means to say 'Sales' is behind 'Target' on the chart. On Tue, Sep 2, 2014 at 9:39 PM, mark goldin

Re: AW: Simple Database Architecture Suggestions Please

2014-09-02 Thread Javier Guerrero García
Hi Tintin: Do you need CRUD operations to be commanded from within your flex app, or just read-only data? If it's the latter, I would recommend you three incredible simple choices: 1. Use MS SQL FOR XML statement (6 chars), make an ASP that just executes the query FOR XML (one line), invoque

Re: Line chart

2014-09-02 Thread mark goldin
Basically, what I want is to have two lines: one horizontal and another is arc on my linked image being shown on the top. I am assuming at this point that they will be seen better. The image is a square box in two colors. http://i57.tinypic.com/fm75fn.jpg Please try the link in IE. Thanks On

Re: Line chart

2014-09-02 Thread mark goldin
Well, works in Chrome too. On Tue, Sep 2, 2014 at 12:06 PM, mark goldin markzolo...@gmail.com wrote: Basically, what I want is to have two lines: one horizontal and another is arc on my linked image being shown on the top. I am assuming at this point that they will be seen better. The image

Re: Line chart

2014-09-02 Thread Deepak MS
Hmmm.. Its not quite clear to me yet. Are you saying you want to show a line chart with a horizontal line and a curve line, on top of that red image in that link.? On Tue, Sep 2, 2014 at 10:40 PM, mark goldin markzolo...@gmail.com wrote: Well, works in Chrome too. On Tue, Sep 2, 2014 at

Re: Line chart

2014-09-02 Thread mark goldin
The lines are already there but not seen too good. On Tue, Sep 2, 2014 at 1:08 PM, Deepak MS megharajdee...@gmail.com wrote: Hmmm.. Its not quite clear to me yet. Are you saying you want to show a line chart with a horizontal line and a curve line, on top of that red image in that link.?

Re: Line chart

2014-09-02 Thread mark goldin
I cannot change line color. I think the red image is a line background, but I am not sure at this point. Is there anything like z-order to force a line to be in front of everything? On Tue, Sep 2, 2014 at 2:29 PM, Deepak MS megharajdee...@gmail.com wrote: Did you try changing the line color of

Re: Line chart

2014-09-02 Thread OmPrakash Muppirala
Do you have any annotationElements in your Chart? On Tue, Sep 2, 2014 at 1:22 PM, mark goldin markzolo...@gmail.com wrote: I cannot change line color. I think the red image is a line background, but I am not sure at this point. Is there anything like z-order to force a line to be in front of

Re: Line chart

2014-09-02 Thread mark goldin
Yes, I do. On Tue, Sep 2, 2014 at 4:15 PM, OmPrakash Muppirala bigosma...@gmail.com wrote: Do you have any annotationElements in your Chart? On Tue, Sep 2, 2014 at 1:22 PM, mark goldin markzolo...@gmail.com wrote: I cannot change line color. I think the red image is a line background,

Re: Line chart

2014-09-02 Thread OmPrakash Muppirala
On Tue, Sep 2, 2014 at 2:18 PM, mark goldin markzolo...@gmail.com wrote: Yes, I do. Yup, that is drawn on top of the chart. If you want to draw behind the chart, change it into backgroundElements. Some info:

Re: Line chart

2014-09-02 Thread mark goldin
Thanks! That's exactly what I needed. On Tue, Sep 2, 2014 at 4:23 PM, OmPrakash Muppirala bigosma...@gmail.com wrote: On Tue, Sep 2, 2014 at 2:18 PM, mark goldin markzolo...@gmail.com wrote: Yes, I do. Yup, that is drawn on top of the chart. If you want to draw behind the chart,