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
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
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
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
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
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
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 =
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
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--
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:/
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?
>
>
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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:
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
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
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
> >>
35 matches
Mail list logo