Re: Apache Flex SDK Installer version 3.3.2

2018-07-13 Thread Alex Harui
I think Adobe has reorganized where playerglobal is stored. I updated the URL the installer uses for FP28. I don't have the time to update the older ones. I guess we'll wait until someone complains or someone else has time to update the older URLs. Try 28 if you need it and let us know if it

Re: Apache Flex SDK Installer version 3.3.2

2018-07-13 Thread douglasmccarroll
> I think the AIR 30 checksums were out of date. I updated them. If it doesn't work, post the log. It now works. I've successfully downloaded an API with AIR 30. > For AIR 28, can you download from the link via a Browser without error > even with the double-slash? No. I get this: Not Found T

Re: hitData function. How to Determine the LineSeries I have hit

2018-07-13 Thread Philip Medlam
Thank you very much. With a Slight modification it gives me the LineSeries name:-) var elementName:String = String(hitData.element); var c:int = elementName.lastIndexOf("."); var lineSeriesName:String = elementName.substring(c + 1); Please consider this question answered, with many thanks! > On 1

Re: hitData function. How to Determine the LineSeries I have hit

2018-07-13 Thread Alex Harui
Are you looking for something like: var elementName:String = hitData.element.toString(); var c:int = elementName.lastIndexOf("."); var lineSeriesName:String = elementName.substring(c + 1); Of course, I could be wrong... HTH, -Alex On 7/12/18, 4:33 AM, "npem" wrote: Hi, I have a L