Re: Adobe has announced the end-of-life of the Flash Player

2017-08-14 Thread Clint M
I remember reading that browsers won't be supporting after that. On Mon, Aug 14, 2017 at 6:19 AM, Deepak MS wrote: > Let's say Adobe releases final version of flash player version 35 for > instance, by end of 2019, without further maintenance or development of the > plugin. Will this version con

Re: Flex as an operating system

2016-12-08 Thread Clint M
RIM used it as a front end on top of QNX for the Playbook. (AIR Based) http://www.adobe.com/devnet/devices/articles/blackberry-difference.html On Thu, Dec 8, 2016 at 7:16 AM, flex capacitor wrote: > Was Flex going to be an operating system at some point? The way it's setup > allows you to load

Re: Slow performance > 1000 objects

2016-12-08 Thread Clint M
instead of list.addChild you might want to have a look at using an mx:List or s:List with useVirtualLayout for that many items On Thu, Dec 8, 2016 at 9:54 AM, gmanupnorth wrote: > This piece of code is causing significant lag in our UI and was looking for > suggestions on how to improve it. This

Re: [FlexJS] Problems with custom events in IE11

2017-01-17 Thread Clint M
Thought this might help. http://caniuse.com/#feat=customevent If you click the "Show All" button on the link you can see a broader range of device support. On Tue, Jan 17, 2017 at 1:55 PM, Alex Harui wrote: > Hi Piotr, > > Thanks for working on it. I'm wondering, is the "old way" of > createEve

Re: source forge downloads failing

2017-02-06 Thread Clint M
Would it be fine to use non https? This seems to work: http://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/frameworks/libs/OSMF2_0.swc?format=raw On Mon, Feb 6, 2017 at 4:29 AM, Justin Mclean wrote: > Hi, > > Just trying to make a new Flex SDK RC and we’re getting every source forge > down

Re: ArrayElementType?

2017-03-02 Thread Clint M
It's in the docs: http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf680e1-7ffe.html#WS2db454920e96a9e51e63e3d11c0bf69084-7a2c ArrayElementType metadata tag When you define an Array variable in ActionScript, you specify Array as the data type of the variable. However, you canno

Re: massive memory leak in Flex

2017-03-02 Thread Clint M
databinding is static at the application level… at least the way you're doing it via curly braces… and the renderers will leak try using this in the item renderer instead of text="{data}" and see if that fixes the problem : override public function set data(value:Object):void { mylabelId.text =

Re: massive memory leak in Flex

2017-03-02 Thread Clint M
Can't repro with the code in the original post… here's a video of it running for 60 seconds. http://www.screencast.com/t/mPFMIdKQMK On Thu, Mar 2, 2017 at 4:17 PM, Jason Taylor wrote: > Yeap task manager keeps climbing as well > > -Original Message- > From: Alex Harui [mailto:aha...@ado

Re: massive memory leak in Flex

2017-03-02 Thread Clint M
here's a video of it running in scout http://www.screencast.com/t/S5SHGLiskRN didn't leak… are you using advanced-telemetry ? On Thu, Mar 2, 2017 at 4:24 PM, Jason Taylor wrote: > Yeah, it looks like it may be an artifact of scout somehow > > -Original Message--

Re: massive memory leak in Flex

2017-03-02 Thread Clint M
it didn't leak using advanced-telemetry either… it didn't leak with a custom renderer with curly binding either… probably because spark lists recycle item renderers by default On Thu, Mar 2, 2017 at 4:29 PM, Clint M wrote: > here's a video of it running in scout > http:/

Re: WebAsm?

2017-03-13 Thread Clint M
might be best to make this a new thread On Mon, Mar 13, 2017 at 3:05 PM, Gary Yang wrote: > I am curious, what do you guys think about Flash Player and Flash > Platform's situation today? is it better or worse than expected 5/6 years > ago? > >

Re: Adding AIR/FP 20 Beta support to Installer

2015-12-08 Thread Clint M
Looks like AIR 20 was released last night. On Wed, Nov 11, 2015 at 5:18 PM, OmPrakash Muppirala wrote: > Looks like that worked. I now have the 4.14.1 with AIR 20 beta on my > machine. > > Thanks, > Om > > On Wed, Nov 11, 2015 at 4:18 PM, Alex Harui wrote: > > > And get rid of the versionID at

Re: Debug Failing on iOS after updating to AIR 20

2016-02-12 Thread Clint M
Flash Builder will append .debug to your application id to be com.yourdomain.yourapp.debug That's usually why I've seen that if everything else looks ok. On Fri, Feb 12, 2016 at 3:51 AM, Paul Moreau wrote: > Hi folks, > > I wouldn't normally do this but I've tried google / stack overflow to no

Re: iOS This build is invalid

2016-02-19 Thread Clint M
Hi... I just went through the headache of upgrading an older Flex mobile app. What are the versions of everything you're trying to build with? Operatin System + version: Flex SDK + version: AIR SDK + version: Does it have an ANE: What version of XCode + IOS SDK: What version of Java: On Thu, Feb

Re: HTTPService breakage in Flex SDK 4.15?

2016-02-19 Thread Clint M
Install an app like charles proxy on a computer and configure the proxy settings on the mobile device to run through the proxy. https://www.charlesproxy.com/documentation/faqs/using-charles-from-an-iphone/ Compare the raw http requests from 4.14 and 4.15 then maybe post the results if you can't fi

Re: iOS This build is invalid

2016-02-19 Thread Clint M
Install the certificate you use to sign the application with into your keychain and then select it. Do you see any red text that says it's not signed by a recognized signer or do you see green text saying the certificate is valid? On Thu, Feb 18, 2016 at 10:06 AM, Pipsisewah wrote: > Thank you

Re: iOS This build is invalid

2016-02-19 Thread Clint M
If you're on windows it's most likely what Nick Collins said. Read this. https://forums.adobe.com/thread/2037674?start=0&tstart=0 If you're on windows try adding the new cert to your trusted root certs. http://www.thewindowsclub.com/manage-trusted-root-certificates-windows https://developer.app

Re: Memory leak caused by addChild() ?

2016-02-23 Thread Clint M
Because this comment/code in NonLeakySubComponent.mxml is false and isn't a weak ref. /* This is not a memory leak, because BindingUtils uses weak references */ BindingUtils.bindSetter(dataProviderChanged,this,"dataProvider"); This would work: BindingUtils.bindSetter(dataProviderChanged,this,"d

Re: Memory leak caused by addChild() ?

2016-02-24 Thread Clint M
Well... it's not technically leaking... it just appears like it is because the timer is firing every 10 ms which doesn't let garbage collection run as fast as you think it should. It will eventually run... you just have to wait a really long time. (Most likely when your physical ram is full.) In

Re: Memory leak caused by addChild() ?

2016-02-24 Thread Clint M
I was able to reproduce the behavior while using the references array and uncommenting the line: references.splice( references.indexOf(lastInstance),1); It might be that Player holds a reference to the object spliced out because it does return it. In any case... I'd like to reiterate that it doe

Re: Developing Flex SDK with Flex Builder

2016-02-29 Thread Clint M
Well technically if you're just developing a patch a better would be to monkey patch the Flex SDK. Just create a folder structure under your source dir that matches the files you want to patch. For example: MyProject src spark components TextInput.as The

Re: iOS This build is invalid

2016-03-04 Thread Clint M
You were so close! For AIR 20 the namespace is http://ns.adobe.com/air/application/20.0 On Fri, Mar 4, 2016 at 10:20 AM, Pipsisewah wrote: > So I decided to go the route of compiling on a Mac. Got Flash Builder 4.7 > installed, copied all the files, etc. and was able to do a build. > > Now Fl

Re: Flex Issue : AS3 FLEX MOBILE APP CRASHING WHEN SCALING IMAGE

2016-05-31 Thread Clint M
ion as the image needs to > remain onscreen while the user pan zooms. > > Paul > > On Thu, May 26, 2016 at 5:40 PM, Clint M wrote: > > > My immediate reaction whenever I hear memory problems with images is > > somewhere some code is forgetting to call bitmapdata.dispose

Re: Flash Builder borked

2016-07-13 Thread Clint M
Does a clean build fix it? Does deleting the codemodel folder fix it? Mine is at /Users/clint/Documents/Adobe Flash Builder 4.7/.metadata/.plugins/com.adobe.flexide.codemodel.bridge Does a new workspace fix it? Sometimes eclipse workspaces become corrupt. RE: instability what is your Xmx set at in

Apache Flex Docs/Examples on StackOverflow

2016-07-25 Thread Clint M
Noticed this today: http://stackoverflow.com/tour/documentation If we get 2 more people to sign up we can start documenting apache flex with examples on StackOverflow. http://stackoverflow.com/documentation/flex/commit

Re: Apache Flex Docs/Examples on StackOverflow

2016-07-26 Thread Clint M
Thanks to the 2 people that signed up now we can add examples on SO. http://stackoverflow.com/documentation/flex @Christofer I don't think it's meant to be a place to hold "All the flex documentation". StackOverflow documentation is designed to fill a gap in it's model. It was difficult to publis

Apache Flex SDK Installer Broken

2016-09-01 Thread Clint M
Getting this error: Installer version 3.2.0 (mac) Using Locale: en_US Fetched the SDK download mirror URL from the CGI. Error #2031 Installation aborted Here's the raw request/response in Charles: Request: - GET /single-mirror-url--xml.cgi HTTP/1.1 Host: flex.apache.org

Re: Apache Flex SDK Installer Broken

2016-09-01 Thread Clint M
Alex > > On 9/1/16, 6:20 AM, "Clint M" wrote: > > >Getting this error: > > > >Installer version 3.2.0 (mac) > >Using Locale: en_US > >Fetched the SDK download mirror URL from the CGI. > >Error #2031 > >Inst

Re: Apache Flex SDK Installer Broken

2016-09-01 Thread Clint M
I was able to work around it by using Charles to map the cgi request to a local file with just the mirror url in it. On Thu, Sep 1, 2016 at 8:25 AM, Clint M wrote: > Not seeing any redirects in Charles. > > It manifests after you click the next button on the initial screen in the &g

Re: Apache Flex SDK Installer Broken

2016-09-01 Thread Clint M
t; On 9/1/16, 8:35 AM, "Clint M" wrote: > > >I was able to work around it by using Charles to map the cgi request to a > >local file with just the mirror url in it. > > > > Clever workaround. > > I am unable to reproduce the problem. My installer seems to be

Re: Apache Flex SDK Installer Broken

2016-09-01 Thread Clint M
Hmh… strange… I'm unable to reproduce the problem now as well. On Thu, Sep 1, 2016 at 2:01 PM, Alex Harui wrote: > > On 9/1/16, 8:35 AM, "Clint M" wrote: > > >I was able to work around it by using Charles to map the cgi request to a > >local file with just

Re: Apache Flex SDK Installer Broken

2016-09-01 Thread Clint M
Even on a fresh install?! Inconceivable!?! On Thu, Sep 1, 2016 at 4:51 PM, Clint M wrote: > Hmh… strange… I'm unable to reproduce the problem now as well. > > On Thu, Sep 1, 2016 at 2:01 PM, Alex Harui wrote: > >> >> On 9/1/16, 8:35 AM, "Clint M" wrote:

Re: Flex SDK Installer in macOS Sierra

2016-09-23 Thread Clint M
There is an option to install from "Mac App Store and identified developers". Does that work? I'm think the installer is code signed so it should. On Thu, Sep 22, 2016 at 2:35 AM, Carlos Rovira wrote: > Hi, > > In macOS Sierra there's no more "Anywhere" option to allow install > applications d

Unable to download 4.14.1 SDK using the Apache Flex SDK Installer

2016-10-03 Thread Clint M
Bit of a strange one... I just tried to download 4.14.1 and AIR 17 and the agreements screen comes up blank. When I click continue the install fails. I was able to download 4.15 and AIR 20 without any problems. The install log has this in it: Installer version 3.2.0 (mac) Using Locale: en_US Fet

Re: Unable to download 4.14.1 SDK using the Apache Flex SDK Installer

2016-10-04 Thread Clint M
Yep... works. Thank you. On Mon, Oct 3, 2016 at 11:37 PM, Alex Harui wrote: > > > On 10/3/16, 4:14 PM, "Justin Mclean" wrote: > > >Hi, > > > >> Bit of a strange one... I just tried to download 4.14.1 and AIR 17 and > >>the agreements screen comes up blank. When I click continue the install > >>