On 8/27/13 1:41 PM, "Taylor Bastien" wrote:
>
>Some questions:
>
>- Is it even possible for:
>
>1) Flex to make partial draws of a component during a single
>invalidation cycle?
Well, if you are in startup phase, or creating a new navigator content, or
a few other situations, the
so there is no simple workaround. Either Flex SDK would have to be changed
or the weborb.swc. So I will probably have to use Flex 4.6. Is that right?
2013/8/28 Alex Harui
>
>
> On 8/27/13 10:35 PM, "Justin Mclean" wrote:
>
> >Hi,
> >
> >> That's always a risk when we add new features.
> >Wasn'
Not entirely up to speed with the discussion, but is monkey-patching the
weborb.swc a possible solution?
http://stackoverflow.com/questions/5096795/how-to-monkey-patch-or-override-a-swc-class-in-flex
Ben
On 28 aug. 2013, at 10:20, Arne Broedel wrote:
> so there is no simple workaround. Either
I will also contact the weborb guys
2013/8/28 Arne Broedel
> so there is no simple workaround. Either Flex SDK would have to be changed
> or the weborb.swc. So I will probably have to use Flex 4.6. Is that right?
>
>
> 2013/8/28 Alex Harui
>
>>
>>
>> On 8/27/13 10:35 PM, "Justin Mclean" wrot
This change was added in 4.10, so you can upgrade to 4.9.1 and still
benefit from the improvements after 4.6.
Alternatively, you can use 4.10 and monkey patch the SDK. The problem is
in the file:
frameworks\projects\framework\src\mx\collections\ListCollectionView.as.
Simple comment the removeItem
Chaps
This may be off the subject of this user group if so please excuse me
I have been reading a lot about IntelliJ IDE and thought I would give it a go,
now I am not a hardened OS level chap, just a app developer
I managed to installIJ with Flex 10 and build a new app,nice, then I
Just run the shiny new installer from the Apache Flex site.
It does what Adobe never got around to doing :-)
Tom
On 28/08/2013 09:40, Scott Matheson wrote:
Chaps
This may be off the subject of this user group if so please excuse
me
I have been reading a lot about IntelliJ IDE and
On Wed, Aug 28, 2013 at 1:51 AM, Tom Chiverton wrote:
> Just run the shiny new installer from the Apache Flex site.
> It does what Adobe never got around to doing :-)
>
>
Detailed instructions are available here:
https://cwiki.apache.org/confluence/display/FLEX/1.1+Setting+up+using+the+Flex+Insta
Hi Scott,
Have you used the Apache SDK installer to install flex and air?
I'm building all my AIR apps with IntelliJ without any problem, desktop and
mobile.
The only thing I'm doing is pointing to the location of the SDK.
Also make sure you have the Flex/Flash plugin installed (see settings >
plu
Hi,
If you installed Flex SDK 4.10 using installer [1] recommended by Apache
that means that you already have AIR SDK installed together with the
Flex SDK (you had an option to select AIR SDK version during
installation process). So probably you don't need to install anything
and can configur
I've had to do something very similar in the past. The key is to realize
that Flex framework has no way of knowing that a component is completely
finished updating. I had a component that loaded x number of images, y
number of text labels and z number of vector arts. So, in my component
that hol
Hi
Thanks for all your support I did use the nice new Apache SDK installer
(very simple good for me )
Can I check the source code on my MAC to ensure I have installed AIR as
well, or should I just rerun the Apache installer
Otherwise I will dig in to IntelliJ
thanks
Scott
On 8/28/13 9:54
You can recall what version of AIR SDK you selected during installation:
run from command line: [flex SDK]/bin/adt -version
Main configuration in IntelliJ IDEA is done at Project Structure |
Modules | [your module] | [your build configuration subnode] | General
and Dependencies tabs. For examp
There is a built in event. I'm going to have to look for it because it
wasn't made to be obvious. It's pretty buried.
On Wed, Aug 28, 2013 at 12:54 AM, Frank Dahmen wrote:
> yes this would be possible but i thought there could be some built-in
> event to listen to
>
>
> - Original Message -
On Wed, Aug 28, 2013 at 12:54 AM, Frank Dahmen wrote:
> yes this would be possible but i thought there could be some built-in
> event to listen to
Try listing on the activeView for "_navigationChange_" but I believe the
little bugger that you are listening for is "viewChangeComplete" on the
Vie
this is what i was searching for.
where can i find the current reference? on the adobe reference it is not
listed.
- Original Message -
From: "Jonathan Campos"
To: "users"
Sent: Wednesday, August 28, 2013 5:05 PM
Subject: Re: Event on pushView() or popView()
On Wed, Aug 28, 201
On Wed, Aug 28, 2013 at 11:58 AM, Frank Dahmen wrote:
> where can i find the current reference? on the adobe reference it is not
> listed.
This is buried in the code. It was never documented. :)
--
Jonathan Campos
I found a link that shows it being used in some code:
http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/frameworks/tests/performance/mobile/ComponentCatalog/src/ScriptRunner.as
On Aug 28, 2013, at 11:18 AM, Jonathan Campos wrote:
> On Wed, Aug 28, 2013 at 11:58 AM, Frank Dahmen wrote:
>
Thanks for digging:)
- Original Message -
From: "Jonathan Campos"
To: "users"
Sent: Wednesday, August 28, 2013 8:18 PM
Subject: Re: Event on pushView() or popView()
On Wed, Aug 28, 2013 at 11:58 AM, Frank Dahmen wrote:
where can i find the current reference? on the adobe refer
Hi,
I'm using the apache flex 4.10 sdk to develop an Adobe Air desktop app for
Windows.
I have a problem with special characters and accents.
In fact all my mxml file starts with the following line :
but when I try to get the text of a spark TextInput and trace it in the
output console or send
trace() is a low-level Flash debugger feature. I'm not sure you can rely
on it regarding character sets.
On 8/28/13 1:56 PM, "manitas manitas" wrote:
>Hi,
>
>I'm using the apache flex 4.10 sdk to develop an Adobe Air desktop app for
>Windows.
>
>I have a problem with special characters and acce
Thanks for your answer.
I have just test to put an accent directly in the trace function like this
: trace("é");
And there is the same encoding issue so it should not be a problem from the
TextInput.
You said I can't rely on the trace function but this encoding problem also
appears when I direct
I had a similar problem when trying to send German characters from my flex
app to an email API. I resolved it by encoding the characters before
sending it to the server and decoding it at the server. Perhaps this
method will work for you?
I believe I used encodeURI
Keith
On Aug 28, 2013 6:05 PM
I think that is two different issues. There is a standard for POST data
and you probably have to encode non-ascii characters. See encode() method.
On 8/28/13 3:04 PM, "manitas manitas" wrote:
>Thanks for your answer.
>
>I have just test to put an accent directly in the trace function like this
Hi
i have a very basic question that i have search the web and could not find
an answer
what is the entry point to an flex application
what method does AIR run time invokes when we run the application
Thanks
Sumudu
25 matches
Mail list logo