Inline below

On Tue, Feb 7, 2017 at 7:49 AM, olegkon <[email protected]> wrote:

> Clint,
>
> 1) I tried what you suggested:
> override public function setSelectedIndex(value:int,
> dispatchChangeEvent:Boolean = false,
> changeCaret:Boolean=true):void {  ... }


> When I try to save it, getting compilation error:   Method marked override
> must override another method.
> So I removed override from there, that worked.
>

I'm not sure you want to remove that. I'm also not sure why it didn't work
for you. You can view the source the method is public now.

>From DropDownListBase.as
override public function setSelectedIndex(rowIndex:int,
dispatchChangeEvent:Boolean = false, changeCaret:Boolean = true):void


>
> 2) actually now compilation takes even longer - about 2 hours (!) on a good
> PC with 16GB of RAM and SSD,
> most of it in compile modules task.
> Why is it so terribly slow?
>

What is your Xmx set at?


>
>
> 3) Also, can we get a source code of flexTasks.jar (for 4.15)?
>

I don't think so but I'm not sure.  You could decompile it if you want.
What do you get when you run it with -d ?(eg. ant build -d)

This will give you the exact command that you could run on the command line
instead of using the ant tasks.


>
>
> 4) Also we are trying to use FSCH to compile that Flex project faster, but
> can only see one for Flex3.
> Is there a more recent one?   Or you think it is not a good idea with 4.15?
>


 Should work as long as you understand the speed boost is from:

a) not booting up the jvm everytime
b) incremental compilation is faster because it keeps a cache

If you're running ant… there's a good chance you don't want b) in the first
place and just want a clean build everytime.


>
>
>
> --
> View this message in context: http://apache-flex-users.
> 2333346.n4.nabble.com/Upgrading-web-app-to-Flex-4-15-tp14603p14637.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>

Reply via email to