Re: Amended Button still not in Nightly Build

2018-02-08 Thread Alex Harui
In bin/js-debug is a pile of JS files.  Some of them come from SWCs, some come 
from the compiling of your application sources.  Every time you run the 
compiler, the JS files corresponding to your application source MXML and AS 
files are overwritten.  But the JS files corresponding to classes from a SWC 
are not overwritten.  So, if I change to a newer SWC with a fix for Button, the 
Button.js will not be updated and I wonder why my fix didn't work.  That's the 
only time I get burned by the logic that handles JS files in bin/js-debug.

You are correct that if you delete a class from a SWC or from your application 
source that the old JS file will remain in bin/js-debug, but I'm asking if that 
actually causes a problem.  I didn't think it does.  I don't think the minifier 
will see that obsolete file.

That my understanding of the problem.
-Alex

From: Piotr Zarzycki 
<piotrzarzyck...@gmail.com<mailto:piotrzarzyck...@gmail.com>>
Reply-To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Date: Thursday, February 8, 2018 at 10:34 AM
To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Subject: Re: Amended Button still not in Nightly Build

Alex,

I'm not sure why you are mentioning about swc. I'm talking about real world 
application which is compiling to the bunch of JavaScript files. Maybe I don't 
understand your way of thinking.


2018-02-08 19:19 GMT+01:00 Alex Harui 
<aha...@adobe.com<mailto:aha...@adobe.com>>:
You are correct that if we make a file go away from an upgrade to a SWC that 
the compiler does not know to delete the now obsolete JS file.  But does that 
actually cause something to break?

IMO, the only time I've been burned is when we update a file in a SWC.  And 
that can be detected by the IDEs.

-Alex

From: Piotr Zarzycki 
<piotrzarzyck...@gmail.com<mailto:piotrzarzyck...@gmail.com>>
Reply-To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Date: Thursday, February 8, 2018 at 9:50 AM

To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Subject: Re: Amended Button still not in Nightly Build

Problem is not about swc, problem is about that some files in JS output has 
been left. For example if you in one build had file X, for another build that 
files has been removed it doesn't mean that it disappear from the js-debug 
folder.

Piotr

2018-02-08 18:47 GMT+01:00 Alex Harui 
<aha...@adobe.com<mailto:aha...@adobe.com>>:
A clean option in an IDE is a good idea, but it doesn't have to be manually 
operated.  Moonshine and other IDEs could get smarter and detect that a SWC's 
date has changed and do a clean.  The compiler itself doesn't memorize stuff 
like SWC dates, but an IDE can.

My 2 cents,
-Alex

From: Piotr Zarzycki 
<piotrzarzyck...@gmail.com<mailto:piotrzarzyck...@gmail.com>>
Reply-To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Date: Thursday, February 8, 2018 at 1:44 AM
To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Subject: Re: Amended Button still not in Nightly Build

Yeah. I'm quite often clean the build before starting it with Royale projects. 
I think we should have in Moonshine options which combine those two steps. :)
1) Clean
2) Build

Thanks,
Piotr

2018-02-08 10:39 GMT+01:00 doug777 
<doug777...@gmail.com<mailto:doug777...@gmail.com>>:
OK got it. Thanks to you both.

Doug



--
Sent from: 
http://apache-royale-users.20374.n8.nabble.com/<https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-royale-users.20374.n8.nabble.com%2F=02%7C01%7Caharui%40adobe.com%7Ce021e861ac59406727ea08d56ed88e12%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536798731440044=Z366xpcHM59mkHbOvB94w3p9HemFPoFFPz6txIUbjSE%3D=0>



--

Piotr Zarzycki

Patreon: 
https://www.patreon.com/piotrzarzycki<https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzycki=02%7C01%7Caharui%40adobe.com%7Ce021e861ac59406727ea08d56ed88e12%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536798731440044=9tkqxNsj5Rh9TebHbIBBT4IbiVA4omA0n3axNT99bLA%3D=0>



--

Piotr Zarzycki

Patreon: 
https://www.patreon.com/piotrzarzycki<https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzycki=02%7C01%7Caharui%40adobe.com%7Ca3154062c4cb48f38d7308d56f1c8153%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636537090575666047=9LnYRL99bN6A0QLfG33JMjHsrs%2FX

Re: Amended Button still not in Nightly Build

2018-02-08 Thread Piotr Zarzycki
Alex,

I'm not sure why you are mentioning about swc. I'm talking about real world
application which is compiling to the bunch of JavaScript files. Maybe I
don't understand your way of thinking.


2018-02-08 19:19 GMT+01:00 Alex Harui <aha...@adobe.com>:

> You are correct that if we make a file go away from an upgrade to a SWC
> that the compiler does not know to delete the now obsolete JS file.  But
> does that actually cause something to break?
>
> IMO, the only time I've been burned is when we update a file in a SWC.
> And that can be detected by the IDEs.
>
> -Alex
>
> From: Piotr Zarzycki <piotrzarzyck...@gmail.com>
> Reply-To: "users@royale.apache.org" <users@royale.apache.org>
> Date: Thursday, February 8, 2018 at 9:50 AM
>
> To: "users@royale.apache.org" <users@royale.apache.org>
> Subject: Re: Amended Button still not in Nightly Build
>
> Problem is not about swc, problem is about that some files in JS output
> has been left. For example if you in one build had file X, for another
> build that files has been removed it doesn't mean that it disappear from
> the js-debug folder.
>
> Piotr
>
> 2018-02-08 18:47 GMT+01:00 Alex Harui <aha...@adobe.com>:
>
>> A clean option in an IDE is a good idea, but it doesn't have to be
>> manually operated.  Moonshine and other IDEs could get smarter and detect
>> that a SWC's date has changed and do a clean.  The compiler itself doesn't
>> memorize stuff like SWC dates, but an IDE can.
>>
>> My 2 cents,
>> -Alex
>>
>> From: Piotr Zarzycki <piotrzarzyck...@gmail.com>
>> Reply-To: "users@royale.apache.org" <users@royale.apache.org>
>> Date: Thursday, February 8, 2018 at 1:44 AM
>> To: "users@royale.apache.org" <users@royale.apache.org>
>> Subject: Re: Amended Button still not in Nightly Build
>>
>> Yeah. I'm quite often clean the build before starting it with Royale
>> projects. I think we should have in Moonshine options which combine those
>> two steps. :)
>> 1) Clean
>> 2) Build
>>
>> Thanks,
>> Piotr
>>
>> 2018-02-08 10:39 GMT+01:00 doug777 <doug777...@gmail.com>:
>>
>>> OK got it. Thanks to you both.
>>>
>>> Doug
>>>
>>>
>>>
>>> --
>>> Sent from: http://apache-royale-users.20374.n8.nabble.com/
>>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-royale-users.20374.n8.nabble.com%2F=02%7C01%7Caharui%40adobe.com%7Ce021e861ac59406727ea08d56ed88e12%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536798731440044=Z366xpcHM59mkHbOvB94w3p9HemFPoFFPz6txIUbjSE%3D=0>
>>>
>>
>>
>>
>> --
>>
>> Piotr Zarzycki
>>
>> Patreon: *https://www.patreon.com/piotrzarzycki
>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzycki=02%7C01%7Caharui%40adobe.com%7Ce021e861ac59406727ea08d56ed88e12%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536798731440044=9tkqxNsj5Rh9TebHbIBBT4IbiVA4omA0n3axNT99bLA%3D=0>*
>>
>
>
>
> --
>
> Piotr Zarzycki
>
> Patreon: *https://www.patreon.com/piotrzarzycki
> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzycki=02%7C01%7Caharui%40adobe.com%7Ca3154062c4cb48f38d7308d56f1c8153%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636537090575666047=9LnYRL99bN6A0QLfG33JMjHsrs%2FXGRxOBo%2Fk5RbtvNI%3D=0>*
>



-- 

Piotr Zarzycki

Patreon: *https://www.patreon.com/piotrzarzycki
<https://www.patreon.com/piotrzarzycki>*


Re: Amended Button still not in Nightly Build

2018-02-08 Thread Alex Harui
You are correct that if we make a file go away from an upgrade to a SWC that 
the compiler does not know to delete the now obsolete JS file.  But does that 
actually cause something to break?

IMO, the only time I've been burned is when we update a file in a SWC.  And 
that can be detected by the IDEs.

-Alex

From: Piotr Zarzycki 
<piotrzarzyck...@gmail.com<mailto:piotrzarzyck...@gmail.com>>
Reply-To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Date: Thursday, February 8, 2018 at 9:50 AM
To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Subject: Re: Amended Button still not in Nightly Build

Problem is not about swc, problem is about that some files in JS output has 
been left. For example if you in one build had file X, for another build that 
files has been removed it doesn't mean that it disappear from the js-debug 
folder.

Piotr

2018-02-08 18:47 GMT+01:00 Alex Harui 
<aha...@adobe.com<mailto:aha...@adobe.com>>:
A clean option in an IDE is a good idea, but it doesn't have to be manually 
operated.  Moonshine and other IDEs could get smarter and detect that a SWC's 
date has changed and do a clean.  The compiler itself doesn't memorize stuff 
like SWC dates, but an IDE can.

My 2 cents,
-Alex

From: Piotr Zarzycki 
<piotrzarzyck...@gmail.com<mailto:piotrzarzyck...@gmail.com>>
Reply-To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Date: Thursday, February 8, 2018 at 1:44 AM
To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Subject: Re: Amended Button still not in Nightly Build

Yeah. I'm quite often clean the build before starting it with Royale projects. 
I think we should have in Moonshine options which combine those two steps. :)
1) Clean
2) Build

Thanks,
Piotr

2018-02-08 10:39 GMT+01:00 doug777 
<doug777...@gmail.com<mailto:doug777...@gmail.com>>:
OK got it. Thanks to you both.

Doug



--
Sent from: 
http://apache-royale-users.20374.n8.nabble.com/<https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-royale-users.20374.n8.nabble.com%2F=02%7C01%7Caharui%40adobe.com%7Ce021e861ac59406727ea08d56ed88e12%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536798731440044=Z366xpcHM59mkHbOvB94w3p9HemFPoFFPz6txIUbjSE%3D=0>



--

Piotr Zarzycki

Patreon: 
https://www.patreon.com/piotrzarzycki<https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzycki=02%7C01%7Caharui%40adobe.com%7Ce021e861ac59406727ea08d56ed88e12%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536798731440044=9tkqxNsj5Rh9TebHbIBBT4IbiVA4omA0n3axNT99bLA%3D=0>



--

Piotr Zarzycki

Patreon: 
https://www.patreon.com/piotrzarzycki<https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzycki=02%7C01%7Caharui%40adobe.com%7Ca3154062c4cb48f38d7308d56f1c8153%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636537090575666047=9LnYRL99bN6A0QLfG33JMjHsrs%2FXGRxOBo%2Fk5RbtvNI%3D=0>


Re: Amended Button still not in Nightly Build

2018-02-08 Thread Piotr Zarzycki
Problem is not about swc, problem is about that some files in JS output has
been left. For example if you in one build had file X, for another build
that files has been removed it doesn't mean that it disappear from the
js-debug folder.

Piotr

2018-02-08 18:47 GMT+01:00 Alex Harui <aha...@adobe.com>:

> A clean option in an IDE is a good idea, but it doesn't have to be
> manually operated.  Moonshine and other IDEs could get smarter and detect
> that a SWC's date has changed and do a clean.  The compiler itself doesn't
> memorize stuff like SWC dates, but an IDE can.
>
> My 2 cents,
> -Alex
>
> From: Piotr Zarzycki <piotrzarzyck...@gmail.com>
> Reply-To: "users@royale.apache.org" <users@royale.apache.org>
> Date: Thursday, February 8, 2018 at 1:44 AM
> To: "users@royale.apache.org" <users@royale.apache.org>
> Subject: Re: Amended Button still not in Nightly Build
>
> Yeah. I'm quite often clean the build before starting it with Royale
> projects. I think we should have in Moonshine options which combine those
> two steps. :)
> 1) Clean
> 2) Build
>
> Thanks,
> Piotr
>
> 2018-02-08 10:39 GMT+01:00 doug777 <doug777...@gmail.com>:
>
>> OK got it. Thanks to you both.
>>
>> Doug
>>
>>
>>
>> --
>> Sent from: http://apache-royale-users.20374.n8.nabble.com/
>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-royale-users.20374.n8.nabble.com%2F=02%7C01%7Caharui%40adobe.com%7Ce021e861ac59406727ea08d56ed88e12%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536798731440044=Z366xpcHM59mkHbOvB94w3p9HemFPoFFPz6txIUbjSE%3D=0>
>>
>
>
>
> --
>
> Piotr Zarzycki
>
> Patreon: *https://www.patreon.com/piotrzarzycki
> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzycki=02%7C01%7Caharui%40adobe.com%7Ce021e861ac59406727ea08d56ed88e12%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536798731440044=9tkqxNsj5Rh9TebHbIBBT4IbiVA4omA0n3axNT99bLA%3D=0>*
>



-- 

Piotr Zarzycki

Patreon: *https://www.patreon.com/piotrzarzycki
<https://www.patreon.com/piotrzarzycki>*


Re: Amended Button still not in Nightly Build

2018-02-08 Thread Piotr Zarzycki
Yeah. I'm quite often clean the build before starting it with Royale
projects. I think we should have in Moonshine options which combine those
two steps. :)
1) Clean
2) Build

Thanks,
Piotr

2018-02-08 10:39 GMT+01:00 doug777 :

> OK got it. Thanks to you both.
>
> Doug
>
>
>
> --
> Sent from: http://apache-royale-users.20374.n8.nabble.com/
>



-- 

Piotr Zarzycki

Patreon: *https://www.patreon.com/piotrzarzycki
*


Re: Amended Button still not in Nightly Build

2018-02-08 Thread doug777
OK got it. Thanks to you both.

Doug



--
Sent from: http://apache-royale-users.20374.n8.nabble.com/


Re: Amended Button still not in Nightly Build

2018-02-08 Thread Piotr Zarzycki
Doug,

Exactly. Installer won't work anymore. You will have to use manual download
or Node npm. Take a look into our website [1]

[1] http://royale.apache.org/

Thanks, Piotr


2018-02-08 10:33 GMT+01:00 Alex Harui <aha...@adobe.com>:

> Also make sure you clean or delete your bin/js-debug and bin/js-release
> folders.  The compiler does not overwrite your bin/js-debug files that come
> from SWCs because it assumes they haven't changed and speeds up
> compilation.  Only the output .js files for the source that is being
> compiled overwrites existing .js files.  So, you can upgrade to a later
> build and find that your JS app doesn't pick up fixes because it is still
> using older versions.
>
> HTH,
> -Alex
>
> From: Piotr Zarzycki <piotrzarzyck...@gmail.com>
> Reply-To: "users@royale.apache.org" <users@royale.apache.org>
> Date: Thursday, February 8, 2018 at 1:28 AM
> To: "users@royale.apache.org" <users@royale.apache.org>
> Subject: Re: Amended Button still not in Nightly Build
>
> Hi Doug,
>
> Where did you download your nightly build ? It looks like it is not the
> right place. The Royale nightly build is here [1] (JS, SWF) version, [2]
> (JSOnly)
>
> [1] http://apacheroyaleci.westus2.cloudapp.azure.com:8080/job/royale-asjs/
> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapacheroyaleci.westus2.cloudapp.azure.com%3A8080%2Fjob%2Froyale-asjs%2F=02%7C01%7Caharui%40adobe.com%7Cf49bfec2b2b74fd06ec708d56ed657ab%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536789254745916=EaiBMgXjXGBUPA4opEV5ZeJJ%2BdJzctfKZ2OrD63mSkY%3D=0>
> [2] http://apacheroyaleci.westus2.cloudapp.azure.com:
> 8080/job/royale-asjs_jsonly/
> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapacheroyaleci.westus2.cloudapp.azure.com%3A8080%2Fjob%2Froyale-asjs_jsonly%2F=02%7C01%7Caharui%40adobe.com%7Cf49bfec2b2b74fd06ec708d56ed657ab%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536789254745916=B6ERnGQoBb4y%2BZJK%2F0HIAr3Go9omHnpVBZQsMrzI%2FYo%3D=0>
>
> Thanks, Piotr
>
> 2018-02-08 10:24 GMT+01:00 doug777 <doug777...@gmail.com>:
>
>> I can see the Button component has had the mouse events added for the js
>> compiler at
>> https://github.com/apache/royale-asjs/blob/develop/framework
>> s/projects/Basic/src/main/royale/org/apache/royale/html/Button.as
>> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Froyale-asjs%2Fblob%2Fdevelop%2Fframeworks%2Fprojects%2FBasic%2Fsrc%2Fmain%2Froyale%2Forg%2Fapache%2Froyale%2Fhtml%2FButton.as=02%7C01%7Caharui%40adobe.com%7Cf49bfec2b2b74fd06ec708d56ed657ab%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536789254745916=lG5zoB2tZKpyi1v520Jj1XhGF0Mw7bdwkW9WUlDW5rY%3D=0>
>>
>> That's great and many thanks for that!
>>
>> But it's still not in the Nightly builds.
>>
>> This file in the downloaded sdk
>> frameworks\projects\Basic\src\main\flex\org\apache\flex\html\Button.as is
>> still the unamended version with only the click event available for js.
>>
>> Any chance the updated version could be added to the nightly builds
>> sometime
>> soon?
>>
>> Doug
>>
>>
>>
>> --
>> Sent from: http://apache-royale-users.20374.n8.nabble.com/
>> <https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-royale-users.20374.n8.nabble.com%2F=02%7C01%7Caharui%40adobe.com%7Cf49bfec2b2b74fd06ec708d56ed657ab%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536789254745916=1oGSohJiFC82Rvbg5wNEJm0%2F70xKqI4zgonfK1AB8mc%3D=0>
>>
>
>
>
> --
>
> Piotr Zarzycki
>
> Patreon: *https://www.patreon.com/piotrzarzycki
> <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzycki=02%7C01%7Caharui%40adobe.com%7Cf49bfec2b2b74fd06ec708d56ed657ab%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536789254745916=BqIve7B3wAJt6IOSU5%2BdqQGvzNuY0203Qskk13E0dBo%3D=0>*
>



-- 

Piotr Zarzycki

Patreon: *https://www.patreon.com/piotrzarzycki
<https://www.patreon.com/piotrzarzycki>*


Re: Amended Button still not in Nightly Build

2018-02-08 Thread Alex Harui
Also make sure you clean or delete your bin/js-debug and bin/js-release 
folders.  The compiler does not overwrite your bin/js-debug files that come 
from SWCs because it assumes they haven't changed and speeds up compilation.  
Only the output .js files for the source that is being compiled overwrites 
existing .js files.  So, you can upgrade to a later build and find that your JS 
app doesn't pick up fixes because it is still using older versions.

HTH,
-Alex

From: Piotr Zarzycki 
<piotrzarzyck...@gmail.com<mailto:piotrzarzyck...@gmail.com>>
Reply-To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Date: Thursday, February 8, 2018 at 1:28 AM
To: "users@royale.apache.org<mailto:users@royale.apache.org>" 
<users@royale.apache.org<mailto:users@royale.apache.org>>
Subject: Re: Amended Button still not in Nightly Build

Hi Doug,

Where did you download your nightly build ? It looks like it is not the right 
place. The Royale nightly build is here [1] (JS, SWF) version, [2] (JSOnly)

[1] 
http://apacheroyaleci.westus2.cloudapp.azure.com:8080/job/royale-asjs/<https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapacheroyaleci.westus2.cloudapp.azure.com%3A8080%2Fjob%2Froyale-asjs%2F=02%7C01%7Caharui%40adobe.com%7Cf49bfec2b2b74fd06ec708d56ed657ab%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536789254745916=EaiBMgXjXGBUPA4opEV5ZeJJ%2BdJzctfKZ2OrD63mSkY%3D=0>
[2] 
http://apacheroyaleci.westus2.cloudapp.azure.com:8080/job/royale-asjs_jsonly/<https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapacheroyaleci.westus2.cloudapp.azure.com%3A8080%2Fjob%2Froyale-asjs_jsonly%2F=02%7C01%7Caharui%40adobe.com%7Cf49bfec2b2b74fd06ec708d56ed657ab%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536789254745916=B6ERnGQoBb4y%2BZJK%2F0HIAr3Go9omHnpVBZQsMrzI%2FYo%3D=0>

Thanks, Piotr

2018-02-08 10:24 GMT+01:00 doug777 
<doug777...@gmail.com<mailto:doug777...@gmail.com>>:
I can see the Button component has had the mouse events added for the js
compiler at
https://github.com/apache/royale-asjs/blob/develop/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/Button.as<https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Froyale-asjs%2Fblob%2Fdevelop%2Fframeworks%2Fprojects%2FBasic%2Fsrc%2Fmain%2Froyale%2Forg%2Fapache%2Froyale%2Fhtml%2FButton.as=02%7C01%7Caharui%40adobe.com%7Cf49bfec2b2b74fd06ec708d56ed657ab%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536789254745916=lG5zoB2tZKpyi1v520Jj1XhGF0Mw7bdwkW9WUlDW5rY%3D=0>

That's great and many thanks for that!

But it's still not in the Nightly builds.

This file in the downloaded sdk
frameworks\projects\Basic\src\main\flex\org\apache\flex\html\Button.as is
still the unamended version with only the click event available for js.

Any chance the updated version could be added to the nightly builds sometime
soon?

Doug



--
Sent from: 
http://apache-royale-users.20374.n8.nabble.com/<https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-royale-users.20374.n8.nabble.com%2F=02%7C01%7Caharui%40adobe.com%7Cf49bfec2b2b74fd06ec708d56ed657ab%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536789254745916=1oGSohJiFC82Rvbg5wNEJm0%2F70xKqI4zgonfK1AB8mc%3D=0>



--

Piotr Zarzycki

Patreon: 
https://www.patreon.com/piotrzarzycki<https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzycki=02%7C01%7Caharui%40adobe.com%7Cf49bfec2b2b74fd06ec708d56ed657ab%7C71f1da39c0a84d5a8d88a67b23c30bf4%7C0%7C0%7C636536789254745916=BqIve7B3wAJt6IOSU5%2BdqQGvzNuY0203Qskk13E0dBo%3D=0>


Re: Amended Button still not in Nightly Build

2018-02-08 Thread doug777
I used the Apache Flex SDK Installer. Is there an update for this or is this
not working any more for Dev builds?

Doug



--
Sent from: http://apache-royale-users.20374.n8.nabble.com/