Re: RightBead or PositionBead or something else

2020-09-11 Thread Hugo Ferreira
Sure.
I created this bead right now.
I was a component property repeated on several components that I will
convert all in a bead.
I have other use cases that will convert all in beads and end up with a
very light and clean component (Royale way) ;)

package pt.solidsoft.framework.components
{
import org.apache.royale.core.IBead;
import org.apache.royale.core.IStrand;
import org.apache.royale.core.UIBase;

public class RightPositionBead implements IBead
{
public var right:int = 0;

public function set strand(value:IStrand):void
{
if (right > 0)
(value as UIBase).style = "right: " + right + "px";
}
}
}

Use case:
...






...


Carlos Rovira  escreveu no dia sexta, 11/09/2020
à(s) 19:04:

> Can you post a snippet of code to understand what you mean?
>
> El vie., 11 sept. 2020 a las 20:00, Hugo Ferreira ( >)
> escribió:
>
> > But if you have a Group and set the right style in a component, then this
> > component is right aligned with a space.
> > It works.
> > I have a property for that, so I thought that a bead could make sense.
> >
> > Carlos Rovira  escreveu no dia sexta,
> 11/09/2020
> > à(s) 18:29:
> >
> > > Hi Hugo,
> > >
> > > Group does not have that APIs, since they are all positioned
> absolutely.
> > > Instead HGroup and VGroup has what you want, since "all items" can be
> > > aligned left, center, right horizontally and top, center, bottom
> > > vertically:
> > >
> > >  /**
> > > * Distribute all items horizontally
> > > * Possible values are:
> > > * - itemsLeft
> > > * - itemsCenter
> > > * - itemsRight
> > > * - itemsSpaceBetween
> > > * - itemsSpaceAround
> > > *
> > > * @langversion 3.0
> > > * @playerversion Flash 10.2
> > > * @playerversion AIR 2.6
> > > * @productversion Royale 0.9.4
> > > */
> > > public function get itemsHorizontalAlign():String
> > >
> > > and
> > >
> > > /**
> > > * Distribute all items vertically
> > > * Possible values are:
> > > * - itemsSameHeight
> > > * - itemsCenter
> > > * - itemsTop
> > > * - itemsBottom
> > > *
> > > * @langversion 3.0
> > > * @playerversion Flash 10.2
> > > * @playerversion AIR 2.6
> > > * @productversion Royale 0.9.4
> > > */
> > > public function get itemsVerticalAlign():String
> > >
> > > also
> > >
> > > /**
> > > * A boolean flag to activate "itemsExpand" effect selector.
> > > * Make items resize to the fill all container space
> > > *
> > > * @langversion 3.0
> > > * @playerversion Flash 10.2
> > > * @playerversion AIR 2.6
> > > * @productversion Royale 0.9.4
> > > */
> > > public function get itemsExpand():Boolean
> > >
> > > El vie., 11 sept. 2020 a las 18:28, Hugo Ferreira (<
> > hferreira...@gmail.com
> > > >)
> > > escribió:
> > >
> > > > I really don'' know what is the better name for this:
> > > > RightBead
> > > > PositionBead with a right property
> > > >
> > > > I have components that are inside a Group and I position the
> > components x
> > > > pixels from the right, so, they use a right style.
> > > >
> > > > This could be a bead that can work on any component.
> > > > Makes sense what I'm saying ?
> > > > Or this already exists in some form ?
> > > >
> > >
> > >
> > > --
> > > Carlos Rovira
> > > http://about.me/carlosrovira
> > >
> >
>
>
> --
> Carlos Rovira
> http://about.me/carlosrovira
>


Re: Sort Jewel DataGrid by column click

2020-09-11 Thread Hugo Ferreira
OK, I saw.
Thank you.

I have one question:
Why did you changed "private function mouseClickHandler" to "protected
function mouseClickHandler" ?

Carlos Rovira  escreveu no dia sexta, 11/09/2020
à(s) 18:26:

> Hi Hugo,
> I committed some changes that would like you to check:
>
> * docs
> * imports (DataGrid and Event imports was missed so jewel was not
> compiling)
>
> also about this lines I was exposing in review comments:
>
> dg.dataProvider = null;
> dg.dataProvider = collection;
>
> I was thinking in do instead this:
>
> dg.model.dispatchEvent(new Event("dataProviderChanged"));
>
> But this is not working since "ArrayListSelectionModel.dataProvider" for
> each column List has:
>
> if (value == _dataProvider) return;
>
> and since the dataProvider is the same (although order changed) it returns
> without refreshing it
> for that reason you need to do a null and then reassign the provider.
>
> I'll see what we can do in that kind of cases.
>
> @Greg Dove  , what do you think about this? looking
> at
> IArrayListView API talks about calling just refresh() in the collection
> should update the view, but we are not doing this, so making things
> more complicated when using the API.
>
>
>
> El vie., 11 sept. 2020 a las 19:14, Carlos Rovira (<
> carlosrov...@apache.org>)
> escribió:
>
> > Hi Hugo,
> >
> > it's less difficult than you could think. For example in Jewel List:
> > dataProvider, selectedIndex, selectedItem, labelField are probably the
> real
> > needs always. But other than that will be used in some cases and not in
> > others, so that probably means carry that code to a bead.
> >
> > For example, I left things in that case like rowHeight that I should
> > remove, since now presentation models are working fine, and people always
> > can change rowHeight (or other things in PM) setting the bead. I'll be
> > proposing this soon to be coherent with the rest of the implementations.
> >
> > El vie., 11 sept. 2020 a las 18:22, Hugo Ferreira (<
> hferreira...@gmail.com>)
> > escribió:
> >
> >> Hi Carlos,
> >>
> >> Great news :)
> >>
> >> Makes sense what you say.
> >> The difficult part is to decide what is used all the time to be part of
> >> the
> >> component and what is accessory to be built as a bead.
> >>
> >>
> >> In that case I don't think we need to add that API in front of DataGrid,
> >> since the dataProvider is something managed internally. We can always
> add
> >> a
> >> bead (like the one you did) to do something similar. In Fact, it is part
> >> of
> >> what you did in this concrete bead, so that shows that adding that king
> of
> >> APIs is not what we try to do. That was one of the Flex problems, that
> the
> >> components was very bloated with code for many side cases.
> >> APIs in components should have what's really important and always used
> and
> >> then left other things that "could be used" for beads.
> >> Being said that, I don't try to be PAYG in a "nonsense way", and always
> >> try
> >> to ponder if the APIs will be used a lot or just sporadically.
> >>
> >>
> >>
> >> Carlos Rovira  escreveu no dia sexta,
> 11/09/2020
> >> à(s) 16:57:
> >>
> >> > Hi Hugo,
> >> >
> >> > just merged the PR :)
> >> >
> >> > going to try and see if what I had in mind made sense.
> >> > About refreshing: In Royale PAYG is what rules all the framework and
> we
> >> try
> >> > to keep things as simple as possible.
> >> > In that case I don't think we need to add that API in front of
> DataGrid,
> >> > since the dataProvider is something managed internally. We can always
> >> add a
> >> > bead (like the one you did) to do something similar. In Fact, it is
> >> part of
> >> > what you did in this concrete bead, so that shows that adding that
> king
> >> of
> >> > APIs is not what we try to do. That was one of the Flex problems, that
> >> the
> >> > components was very bloated with code for many side cases.
> >> > APIs in components should have what's really important and always used
> >> and
> >> > then left other things that "could be used" for beads.
> >> > Being said that, I don't try to be PAYG in a "nonsense way", and
> always
> >> try
> >> > to ponder if the APIs will be used a lot or just sporadically.
> >> >
> >> > Thanks
> >> >
> >> > El vie., 11 sept. 2020 a las 10:54, Hugo Ferreira (<
> >> hferreira...@gmail.com
> >> > >)
> >> > escribió:
> >> >
> >> > > Hi Carlos,
> >> > >
> >> > > In Royale and DataGrid Jewel world (and you know much better than
> >> me), to
> >> > > refresh the DataGrid one needs to set the dataProvider to null and
> >> then
> >> > > reassign the dataProvider.
> >> > > I know that because I already saw before somewhere in the framework
> >> so I
> >> > > predict that is currently the "normal" behaviour.
> >> > >
> >> > > Thinking about that, I think that it should be nice that the
> DataGrid
> >> > has a
> >> > > refresh method that internally sets the dataProvider to a variable,
> >> > > dataProvider to null and assign the dataProvider from the variable.
> >> > > If 

Re: Font bead and color

2020-09-11 Thread Carlos Rovira
Ok, I thought you were talking about font-face and so on.
You have SizeControl and TextAlign beads, but I must say I want to update
Sizecontrol a bit since sizes have changed a bit and that need to be
adjusted.

El vie., 11 sept. 2020 a las 20:02, Hugo Ferreira ()
escribió:

> Usually, the application has a default style defined globally thus css, etc
> ... but sometimes there are particular use cases where you need a bold,
> italic or even different font size.
> A bead should not be an opition ?
>
> Carlos Rovira  escreveu no dia sexta, 11/09/2020
> à(s) 18:31:
>
> > No. that is usually done vía CSS or in AS3/MXML vía style property or
> > fx:Style tag.
> >
> >
> > El vie., 11 sept. 2020 a las 18:29, Hugo Ferreira (<
> hferreira...@gmail.com
> > >)
> > escribió:
> >
> > > There is already a bead for color, font size and font style ?
> > >
> >
> >
> > --
> > Carlos Rovira
> > http://about.me/carlosrovira
> >
>


-- 
Carlos Rovira
http://about.me/carlosrovira


Re: RightBead or PositionBead or something else

2020-09-11 Thread Carlos Rovira
Can you post a snippet of code to understand what you mean?

El vie., 11 sept. 2020 a las 20:00, Hugo Ferreira ()
escribió:

> But if you have a Group and set the right style in a component, then this
> component is right aligned with a space.
> It works.
> I have a property for that, so I thought that a bead could make sense.
>
> Carlos Rovira  escreveu no dia sexta, 11/09/2020
> à(s) 18:29:
>
> > Hi Hugo,
> >
> > Group does not have that APIs, since they are all positioned absolutely.
> > Instead HGroup and VGroup has what you want, since "all items" can be
> > aligned left, center, right horizontally and top, center, bottom
> > vertically:
> >
> >  /**
> > * Distribute all items horizontally
> > * Possible values are:
> > * - itemsLeft
> > * - itemsCenter
> > * - itemsRight
> > * - itemsSpaceBetween
> > * - itemsSpaceAround
> > *
> > * @langversion 3.0
> > * @playerversion Flash 10.2
> > * @playerversion AIR 2.6
> > * @productversion Royale 0.9.4
> > */
> > public function get itemsHorizontalAlign():String
> >
> > and
> >
> > /**
> > * Distribute all items vertically
> > * Possible values are:
> > * - itemsSameHeight
> > * - itemsCenter
> > * - itemsTop
> > * - itemsBottom
> > *
> > * @langversion 3.0
> > * @playerversion Flash 10.2
> > * @playerversion AIR 2.6
> > * @productversion Royale 0.9.4
> > */
> > public function get itemsVerticalAlign():String
> >
> > also
> >
> > /**
> > * A boolean flag to activate "itemsExpand" effect selector.
> > * Make items resize to the fill all container space
> > *
> > * @langversion 3.0
> > * @playerversion Flash 10.2
> > * @playerversion AIR 2.6
> > * @productversion Royale 0.9.4
> > */
> > public function get itemsExpand():Boolean
> >
> > El vie., 11 sept. 2020 a las 18:28, Hugo Ferreira (<
> hferreira...@gmail.com
> > >)
> > escribió:
> >
> > > I really don'' know what is the better name for this:
> > > RightBead
> > > PositionBead with a right property
> > >
> > > I have components that are inside a Group and I position the
> components x
> > > pixels from the right, so, they use a right style.
> > >
> > > This could be a bead that can work on any component.
> > > Makes sense what I'm saying ?
> > > Or this already exists in some form ?
> > >
> >
> >
> > --
> > Carlos Rovira
> > http://about.me/carlosrovira
> >
>


-- 
Carlos Rovira
http://about.me/carlosrovira


Re: Font bead and color

2020-09-11 Thread Hugo Ferreira
Usually, the application has a default style defined globally thus css, etc
... but sometimes there are particular use cases where you need a bold,
italic or even different font size.
A bead should not be an opition ?

Carlos Rovira  escreveu no dia sexta, 11/09/2020
à(s) 18:31:

> No. that is usually done vía CSS or in AS3/MXML vía style property or
> fx:Style tag.
>
>
> El vie., 11 sept. 2020 a las 18:29, Hugo Ferreira ( >)
> escribió:
>
> > There is already a bead for color, font size and font style ?
> >
>
>
> --
> Carlos Rovira
> http://about.me/carlosrovira
>


Re: RightBead or PositionBead or something else

2020-09-11 Thread Hugo Ferreira
But if you have a Group and set the right style in a component, then this
component is right aligned with a space.
It works.
I have a property for that, so I thought that a bead could make sense.

Carlos Rovira  escreveu no dia sexta, 11/09/2020
à(s) 18:29:

> Hi Hugo,
>
> Group does not have that APIs, since they are all positioned absolutely.
> Instead HGroup and VGroup has what you want, since "all items" can be
> aligned left, center, right horizontally and top, center, bottom
> vertically:
>
>  /**
> * Distribute all items horizontally
> * Possible values are:
> * - itemsLeft
> * - itemsCenter
> * - itemsRight
> * - itemsSpaceBetween
> * - itemsSpaceAround
> *
> * @langversion 3.0
> * @playerversion Flash 10.2
> * @playerversion AIR 2.6
> * @productversion Royale 0.9.4
> */
> public function get itemsHorizontalAlign():String
>
> and
>
> /**
> * Distribute all items vertically
> * Possible values are:
> * - itemsSameHeight
> * - itemsCenter
> * - itemsTop
> * - itemsBottom
> *
> * @langversion 3.0
> * @playerversion Flash 10.2
> * @playerversion AIR 2.6
> * @productversion Royale 0.9.4
> */
> public function get itemsVerticalAlign():String
>
> also
>
> /**
> * A boolean flag to activate "itemsExpand" effect selector.
> * Make items resize to the fill all container space
> *
> * @langversion 3.0
> * @playerversion Flash 10.2
> * @playerversion AIR 2.6
> * @productversion Royale 0.9.4
> */
> public function get itemsExpand():Boolean
>
> El vie., 11 sept. 2020 a las 18:28, Hugo Ferreira ( >)
> escribió:
>
> > I really don'' know what is the better name for this:
> > RightBead
> > PositionBead with a right property
> >
> > I have components that are inside a Group and I position the components x
> > pixels from the right, so, they use a right style.
> >
> > This could be a bead that can work on any component.
> > Makes sense what I'm saying ?
> > Or this already exists in some form ?
> >
>
>
> --
> Carlos Rovira
> http://about.me/carlosrovira
>


Re: Font bead and color

2020-09-11 Thread Carlos Rovira
No. that is usually done vía CSS or in AS3/MXML vía style property or
fx:Style tag.


El vie., 11 sept. 2020 a las 18:29, Hugo Ferreira ()
escribió:

> There is already a bead for color, font size and font style ?
>


-- 
Carlos Rovira
http://about.me/carlosrovira


Re: RightBead or PositionBead or something else

2020-09-11 Thread Carlos Rovira
Hi Hugo,

Group does not have that APIs, since they are all positioned absolutely.
Instead HGroup and VGroup has what you want, since "all items" can be
aligned left, center, right horizontally and top, center, bottom vertically:

 /**
* Distribute all items horizontally
* Possible values are:
* - itemsLeft
* - itemsCenter
* - itemsRight
* - itemsSpaceBetween
* - itemsSpaceAround
*
* @langversion 3.0
* @playerversion Flash 10.2
* @playerversion AIR 2.6
* @productversion Royale 0.9.4
*/
public function get itemsHorizontalAlign():String

and

/**
* Distribute all items vertically
* Possible values are:
* - itemsSameHeight
* - itemsCenter
* - itemsTop
* - itemsBottom
*
* @langversion 3.0
* @playerversion Flash 10.2
* @playerversion AIR 2.6
* @productversion Royale 0.9.4
*/
public function get itemsVerticalAlign():String

also

/**
* A boolean flag to activate "itemsExpand" effect selector.
* Make items resize to the fill all container space
*
* @langversion 3.0
* @playerversion Flash 10.2
* @playerversion AIR 2.6
* @productversion Royale 0.9.4
*/
public function get itemsExpand():Boolean

El vie., 11 sept. 2020 a las 18:28, Hugo Ferreira ()
escribió:

> I really don'' know what is the better name for this:
> RightBead
> PositionBead with a right property
>
> I have components that are inside a Group and I position the components x
> pixels from the right, so, they use a right style.
>
> This could be a bead that can work on any component.
> Makes sense what I'm saying ?
> Or this already exists in some form ?
>


-- 
Carlos Rovira
http://about.me/carlosrovira


Re: Sort Jewel DataGrid by column click

2020-09-11 Thread Carlos Rovira
Hi Hugo,
I committed some changes that would like you to check:

* docs
* imports (DataGrid and Event imports was missed so jewel was not compiling)

also about this lines I was exposing in review comments:

dg.dataProvider = null;
dg.dataProvider = collection;

I was thinking in do instead this:

dg.model.dispatchEvent(new Event("dataProviderChanged"));

But this is not working since "ArrayListSelectionModel.dataProvider" for
each column List has:

if (value == _dataProvider) return;

and since the dataProvider is the same (although order changed) it returns
without refreshing it
for that reason you need to do a null and then reassign the provider.

I'll see what we can do in that kind of cases.

@Greg Dove  , what do you think about this? looking at
IArrayListView API talks about calling just refresh() in the collection
should update the view, but we are not doing this, so making things
more complicated when using the API.



El vie., 11 sept. 2020 a las 19:14, Carlos Rovira ()
escribió:

> Hi Hugo,
>
> it's less difficult than you could think. For example in Jewel List:
> dataProvider, selectedIndex, selectedItem, labelField are probably the real
> needs always. But other than that will be used in some cases and not in
> others, so that probably means carry that code to a bead.
>
> For example, I left things in that case like rowHeight that I should
> remove, since now presentation models are working fine, and people always
> can change rowHeight (or other things in PM) setting the bead. I'll be
> proposing this soon to be coherent with the rest of the implementations.
>
> El vie., 11 sept. 2020 a las 18:22, Hugo Ferreira ()
> escribió:
>
>> Hi Carlos,
>>
>> Great news :)
>>
>> Makes sense what you say.
>> The difficult part is to decide what is used all the time to be part of
>> the
>> component and what is accessory to be built as a bead.
>>
>>
>> In that case I don't think we need to add that API in front of DataGrid,
>> since the dataProvider is something managed internally. We can always add
>> a
>> bead (like the one you did) to do something similar. In Fact, it is part
>> of
>> what you did in this concrete bead, so that shows that adding that king of
>> APIs is not what we try to do. That was one of the Flex problems, that the
>> components was very bloated with code for many side cases.
>> APIs in components should have what's really important and always used and
>> then left other things that "could be used" for beads.
>> Being said that, I don't try to be PAYG in a "nonsense way", and always
>> try
>> to ponder if the APIs will be used a lot or just sporadically.
>>
>>
>>
>> Carlos Rovira  escreveu no dia sexta, 11/09/2020
>> à(s) 16:57:
>>
>> > Hi Hugo,
>> >
>> > just merged the PR :)
>> >
>> > going to try and see if what I had in mind made sense.
>> > About refreshing: In Royale PAYG is what rules all the framework and we
>> try
>> > to keep things as simple as possible.
>> > In that case I don't think we need to add that API in front of DataGrid,
>> > since the dataProvider is something managed internally. We can always
>> add a
>> > bead (like the one you did) to do something similar. In Fact, it is
>> part of
>> > what you did in this concrete bead, so that shows that adding that king
>> of
>> > APIs is not what we try to do. That was one of the Flex problems, that
>> the
>> > components was very bloated with code for many side cases.
>> > APIs in components should have what's really important and always used
>> and
>> > then left other things that "could be used" for beads.
>> > Being said that, I don't try to be PAYG in a "nonsense way", and always
>> try
>> > to ponder if the APIs will be used a lot or just sporadically.
>> >
>> > Thanks
>> >
>> > El vie., 11 sept. 2020 a las 10:54, Hugo Ferreira (<
>> hferreira...@gmail.com
>> > >)
>> > escribió:
>> >
>> > > Hi Carlos,
>> > >
>> > > In Royale and DataGrid Jewel world (and you know much better than
>> me), to
>> > > refresh the DataGrid one needs to set the dataProvider to null and
>> then
>> > > reassign the dataProvider.
>> > > I know that because I already saw before somewhere in the framework
>> so I
>> > > predict that is currently the "normal" behaviour.
>> > >
>> > > Thinking about that, I think that it should be nice that the DataGrid
>> > has a
>> > > refresh method that internally sets the dataProvider to a variable,
>> > > dataProvider to null and assign the dataProvider from the variable.
>> > > If we find a better solution we just need to change one place.
>> > >
>> > > When I need to refresh the DataGrid, I just need to call
>> > > myDataGrid.refresh() without knowing what's the current
>> implementation of
>> > > it.
>> > >
>> > >
>> > > Carlos Rovira  escreveu no dia sexta,
>> > 11/09/2020
>> > > à(s) 09:45:
>> > >
>> > > > Hi Hugo,
>> > > >
>> > > > about your PR, I was trying to ask you about these lines of code and
>> > what
>> > > > reason made you choose to code it that way.
>> > > > I can merge it as is and see 

Re: Sort Jewel DataGrid by column click

2020-09-11 Thread Carlos Rovira
Hi Hugo,

it's less difficult than you could think. For example in Jewel List:
dataProvider, selectedIndex, selectedItem, labelField are probably the real
needs always. But other than that will be used in some cases and not in
others, so that probably means carry that code to a bead.

For example, I left things in that case like rowHeight that I should
remove, since now presentation models are working fine, and people always
can change rowHeight (or other things in PM) setting the bead. I'll be
proposing this soon to be coherent with the rest of the implementations.

El vie., 11 sept. 2020 a las 18:22, Hugo Ferreira ()
escribió:

> Hi Carlos,
>
> Great news :)
>
> Makes sense what you say.
> The difficult part is to decide what is used all the time to be part of the
> component and what is accessory to be built as a bead.
>
>
> In that case I don't think we need to add that API in front of DataGrid,
> since the dataProvider is something managed internally. We can always add a
> bead (like the one you did) to do something similar. In Fact, it is part of
> what you did in this concrete bead, so that shows that adding that king of
> APIs is not what we try to do. That was one of the Flex problems, that the
> components was very bloated with code for many side cases.
> APIs in components should have what's really important and always used and
> then left other things that "could be used" for beads.
> Being said that, I don't try to be PAYG in a "nonsense way", and always try
> to ponder if the APIs will be used a lot or just sporadically.
>
>
>
> Carlos Rovira  escreveu no dia sexta, 11/09/2020
> à(s) 16:57:
>
> > Hi Hugo,
> >
> > just merged the PR :)
> >
> > going to try and see if what I had in mind made sense.
> > About refreshing: In Royale PAYG is what rules all the framework and we
> try
> > to keep things as simple as possible.
> > In that case I don't think we need to add that API in front of DataGrid,
> > since the dataProvider is something managed internally. We can always
> add a
> > bead (like the one you did) to do something similar. In Fact, it is part
> of
> > what you did in this concrete bead, so that shows that adding that king
> of
> > APIs is not what we try to do. That was one of the Flex problems, that
> the
> > components was very bloated with code for many side cases.
> > APIs in components should have what's really important and always used
> and
> > then left other things that "could be used" for beads.
> > Being said that, I don't try to be PAYG in a "nonsense way", and always
> try
> > to ponder if the APIs will be used a lot or just sporadically.
> >
> > Thanks
> >
> > El vie., 11 sept. 2020 a las 10:54, Hugo Ferreira (<
> hferreira...@gmail.com
> > >)
> > escribió:
> >
> > > Hi Carlos,
> > >
> > > In Royale and DataGrid Jewel world (and you know much better than me),
> to
> > > refresh the DataGrid one needs to set the dataProvider to null and then
> > > reassign the dataProvider.
> > > I know that because I already saw before somewhere in the framework so
> I
> > > predict that is currently the "normal" behaviour.
> > >
> > > Thinking about that, I think that it should be nice that the DataGrid
> > has a
> > > refresh method that internally sets the dataProvider to a variable,
> > > dataProvider to null and assign the dataProvider from the variable.
> > > If we find a better solution we just need to change one place.
> > >
> > > When I need to refresh the DataGrid, I just need to call
> > > myDataGrid.refresh() without knowing what's the current implementation
> of
> > > it.
> > >
> > >
> > > Carlos Rovira  escreveu no dia sexta,
> > 11/09/2020
> > > à(s) 09:45:
> > >
> > > > Hi Hugo,
> > > >
> > > > about your PR, I was trying to ask you about these lines of code and
> > what
> > > > reason made you choose to code it that way.
> > > > I can merge it as is and see if I can improve that refresh and
> > > dataprovider
> > > > reassign, but the objective is that you see if you can improve
> and/or I
> > > > understand if there's some issue in the underlying infrastructure,
> and
> > > help
> > > > you to improve your knowledge.
> > > >
> > > >
> > > > El jue., 10 sept. 2020 a las 17:35, Hugo Ferreira (<
> > > hferreira...@gmail.com
> > > > >)
> > > > escribió:
> > > >
> > > > > Hi Carlos,
> > > > >
> > > > > I don't see your comment in PR !
> > > > >
> > > > > Carlos Rovira  escreveu no dia quinta,
> > > > 10/09/2020
> > > > > à(s) 16:24:
> > > > >
> > > > > > Hi Hugo,
> > > > > >
> > > > > > maybe you didn't notice but I commented in your PR :)
> > > > > >
> > > > > > https://github.com/apache/royale-asjs/pull/908
> > > > > >
> > > > > >
> > > > > > El jue., 10 sept. 2020 a las 13:26, Hugo Ferreira (<
> > > > > hferreira...@gmail.com
> > > > > > >)
> > > > > > escribió:
> > > > > >
> > > > > > > Thank you.
> > > > > > > As I progress on my development and face other missing pices
> > that I
> > > > > need
> > > > > > I
> > > > > > > will do the same, now that I know who works a 

Font bead and color

2020-09-11 Thread Hugo Ferreira
There is already a bead for color, font size and font style ?


RightBead or PositionBead or something else

2020-09-11 Thread Hugo Ferreira
I really don'' know what is the better name for this:
RightBead
PositionBead with a right property

I have components that are inside a Group and I position the components x
pixels from the right, so, they use a right style.

This could be a bead that can work on any component.
Makes sense what I'm saying ?
Or this already exists in some form ?


Re: Sort Jewel DataGrid by column click

2020-09-11 Thread Hugo Ferreira
Hi Carlos,

Great news :)

Makes sense what you say.
The difficult part is to decide what is used all the time to be part of the
component and what is accessory to be built as a bead.


In that case I don't think we need to add that API in front of DataGrid,
since the dataProvider is something managed internally. We can always add a
bead (like the one you did) to do something similar. In Fact, it is part of
what you did in this concrete bead, so that shows that adding that king of
APIs is not what we try to do. That was one of the Flex problems, that the
components was very bloated with code for many side cases.
APIs in components should have what's really important and always used and
then left other things that "could be used" for beads.
Being said that, I don't try to be PAYG in a "nonsense way", and always try
to ponder if the APIs will be used a lot or just sporadically.



Carlos Rovira  escreveu no dia sexta, 11/09/2020
à(s) 16:57:

> Hi Hugo,
>
> just merged the PR :)
>
> going to try and see if what I had in mind made sense.
> About refreshing: In Royale PAYG is what rules all the framework and we try
> to keep things as simple as possible.
> In that case I don't think we need to add that API in front of DataGrid,
> since the dataProvider is something managed internally. We can always add a
> bead (like the one you did) to do something similar. In Fact, it is part of
> what you did in this concrete bead, so that shows that adding that king of
> APIs is not what we try to do. That was one of the Flex problems, that the
> components was very bloated with code for many side cases.
> APIs in components should have what's really important and always used and
> then left other things that "could be used" for beads.
> Being said that, I don't try to be PAYG in a "nonsense way", and always try
> to ponder if the APIs will be used a lot or just sporadically.
>
> Thanks
>
> El vie., 11 sept. 2020 a las 10:54, Hugo Ferreira ( >)
> escribió:
>
> > Hi Carlos,
> >
> > In Royale and DataGrid Jewel world (and you know much better than me), to
> > refresh the DataGrid one needs to set the dataProvider to null and then
> > reassign the dataProvider.
> > I know that because I already saw before somewhere in the framework so I
> > predict that is currently the "normal" behaviour.
> >
> > Thinking about that, I think that it should be nice that the DataGrid
> has a
> > refresh method that internally sets the dataProvider to a variable,
> > dataProvider to null and assign the dataProvider from the variable.
> > If we find a better solution we just need to change one place.
> >
> > When I need to refresh the DataGrid, I just need to call
> > myDataGrid.refresh() without knowing what's the current implementation of
> > it.
> >
> >
> > Carlos Rovira  escreveu no dia sexta,
> 11/09/2020
> > à(s) 09:45:
> >
> > > Hi Hugo,
> > >
> > > about your PR, I was trying to ask you about these lines of code and
> what
> > > reason made you choose to code it that way.
> > > I can merge it as is and see if I can improve that refresh and
> > dataprovider
> > > reassign, but the objective is that you see if you can improve and/or I
> > > understand if there's some issue in the underlying infrastructure, and
> > help
> > > you to improve your knowledge.
> > >
> > >
> > > El jue., 10 sept. 2020 a las 17:35, Hugo Ferreira (<
> > hferreira...@gmail.com
> > > >)
> > > escribió:
> > >
> > > > Hi Carlos,
> > > >
> > > > I don't see your comment in PR !
> > > >
> > > > Carlos Rovira  escreveu no dia quinta,
> > > 10/09/2020
> > > > à(s) 16:24:
> > > >
> > > > > Hi Hugo,
> > > > >
> > > > > maybe you didn't notice but I commented in your PR :)
> > > > >
> > > > > https://github.com/apache/royale-asjs/pull/908
> > > > >
> > > > >
> > > > > El jue., 10 sept. 2020 a las 13:26, Hugo Ferreira (<
> > > > hferreira...@gmail.com
> > > > > >)
> > > > > escribió:
> > > > >
> > > > > > Thank you.
> > > > > > As I progress on my development and face other missing pices
> that I
> > > > need
> > > > > I
> > > > > > will do the same, now that I know who works a bead and how to
> build
> > > > one.
> > > > > >
> > > > > > Carlos Rovira  escreveu no dia quinta,
> > > > > 10/09/2020
> > > > > > à(s) 11:47:
> > > > > >
> > > > > > > Thanks for the PR Hugo. Good one for your first! :)
> > > > > > > I started a review and commented on some things there.
> > > > > > > We also have a rule to wait 24h at least for others to review
> and
> > > for
> > > > > any
> > > > > > > comment or issue we can notice
> > > > > > > thanks
> > > > > > >
> > > > > > > El jue., 10 sept. 2020 a las 11:18, Hugo Ferreira (<
> > > > > > hferreira...@gmail.com
> > > > > > > >)
> > > > > > > escribió:
> > > > > > >
> > > > > > > > Hi Carlos,
> > > > > > > >
> > > > > > > > Done.
> > > > > > > >
> > > > > > > > Carlos Rovira  escreveu no dia
> > quinta,
> > > > > > > 10/09/2020
> > > > > > > > à(s) 08:58:
> > > > > > > >
> > > > > > > > > Hi Hugo,
> > > > > > > > >
> > > > > > > > > could 

Re: Sort Jewel DataGrid by column click

2020-09-11 Thread Carlos Rovira
Hi Hugo,

just merged the PR :)

going to try and see if what I had in mind made sense.
About refreshing: In Royale PAYG is what rules all the framework and we try
to keep things as simple as possible.
In that case I don't think we need to add that API in front of DataGrid,
since the dataProvider is something managed internally. We can always add a
bead (like the one you did) to do something similar. In Fact, it is part of
what you did in this concrete bead, so that shows that adding that king of
APIs is not what we try to do. That was one of the Flex problems, that the
components was very bloated with code for many side cases.
APIs in components should have what's really important and always used and
then left other things that "could be used" for beads.
Being said that, I don't try to be PAYG in a "nonsense way", and always try
to ponder if the APIs will be used a lot or just sporadically.

Thanks

El vie., 11 sept. 2020 a las 10:54, Hugo Ferreira ()
escribió:

> Hi Carlos,
>
> In Royale and DataGrid Jewel world (and you know much better than me), to
> refresh the DataGrid one needs to set the dataProvider to null and then
> reassign the dataProvider.
> I know that because I already saw before somewhere in the framework so I
> predict that is currently the "normal" behaviour.
>
> Thinking about that, I think that it should be nice that the DataGrid has a
> refresh method that internally sets the dataProvider to a variable,
> dataProvider to null and assign the dataProvider from the variable.
> If we find a better solution we just need to change one place.
>
> When I need to refresh the DataGrid, I just need to call
> myDataGrid.refresh() without knowing what's the current implementation of
> it.
>
>
> Carlos Rovira  escreveu no dia sexta, 11/09/2020
> à(s) 09:45:
>
> > Hi Hugo,
> >
> > about your PR, I was trying to ask you about these lines of code and what
> > reason made you choose to code it that way.
> > I can merge it as is and see if I can improve that refresh and
> dataprovider
> > reassign, but the objective is that you see if you can improve and/or I
> > understand if there's some issue in the underlying infrastructure, and
> help
> > you to improve your knowledge.
> >
> >
> > El jue., 10 sept. 2020 a las 17:35, Hugo Ferreira (<
> hferreira...@gmail.com
> > >)
> > escribió:
> >
> > > Hi Carlos,
> > >
> > > I don't see your comment in PR !
> > >
> > > Carlos Rovira  escreveu no dia quinta,
> > 10/09/2020
> > > à(s) 16:24:
> > >
> > > > Hi Hugo,
> > > >
> > > > maybe you didn't notice but I commented in your PR :)
> > > >
> > > > https://github.com/apache/royale-asjs/pull/908
> > > >
> > > >
> > > > El jue., 10 sept. 2020 a las 13:26, Hugo Ferreira (<
> > > hferreira...@gmail.com
> > > > >)
> > > > escribió:
> > > >
> > > > > Thank you.
> > > > > As I progress on my development and face other missing pices that I
> > > need
> > > > I
> > > > > will do the same, now that I know who works a bead and how to build
> > > one.
> > > > >
> > > > > Carlos Rovira  escreveu no dia quinta,
> > > > 10/09/2020
> > > > > à(s) 11:47:
> > > > >
> > > > > > Thanks for the PR Hugo. Good one for your first! :)
> > > > > > I started a review and commented on some things there.
> > > > > > We also have a rule to wait 24h at least for others to review and
> > for
> > > > any
> > > > > > comment or issue we can notice
> > > > > > thanks
> > > > > >
> > > > > > El jue., 10 sept. 2020 a las 11:18, Hugo Ferreira (<
> > > > > hferreira...@gmail.com
> > > > > > >)
> > > > > > escribió:
> > > > > >
> > > > > > > Hi Carlos,
> > > > > > >
> > > > > > > Done.
> > > > > > >
> > > > > > > Carlos Rovira  escreveu no dia
> quinta,
> > > > > > 10/09/2020
> > > > > > > à(s) 08:58:
> > > > > > >
> > > > > > > > Hi Hugo,
> > > > > > > >
> > > > > > > > could you please create a PR (Pull Request)?
> > > > > > > > That way we get better with how Apache works and you get
> > credits
> > > > for
> > > > > > your
> > > > > > > > work, Royale gets better collaboration numbers and the
> process
> > is
> > > > in
> > > > > > > > general better to track if you continue contributing in the
> > > future
> > > > > > (what
> > > > > > > I
> > > > > > > > expect). Also, doing good contributions, having a good
> > knowledge
> > > of
> > > > > > > Royale
> > > > > > > > and aligning with community guidelines of respect and
> teamwork
> > > > could
> > > > > > make
> > > > > > > > you eligible to be a committer in the future and add this
> > > directly.
> > > > > > > >
> > > > > > > > Thanks!
> > > > > > > >
> > > > > > > >
> > > > > > > > El jue., 10 sept. 2020 a las 1:01, Hugo Ferreira (<
> > > > > > > hferreira...@gmail.com
> > > > > > > > >)
> > > > > > > > escribió:
> > > > > > > >
> > > > > > > > > Hi Carlos,
> > > > > > > > >
> > > > > > > > > Here the full class source code.
> > > > > > > > > Tested and working.
> > > > > > > > > You can add to Royale source code tree.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > 

Re: Open ByteArray as file

2020-09-11 Thread Hugo Ferreira
Hi Maria,

Of course.
At the moment I can download a ByteArray that came from the server, without
violating any of the browser rules.
If I could open the file, it would be great.

Maria Jose Esteve  escreveu no dia sexta, 11/09/2020
à(s) 14:45:

> Hello Hugo,
> I don't know if this will help you ...
>
> I could send you an example of "image opening" with from FileReference and
> its transfer to the backend as ByteArray by AMF3 ... Would it be useful?
>
> Hiedra
>
> -Mensaje original-
> De: Hugo Ferreira 
> Enviado el: jueves, 10 de septiembre de 2020 13:32
> Para: Apache Royale Development 
> Asunto: Re: Open ByteArray as file
>
> On my case I have a ByteArray returned from a AMF call to the server, so
> it's not UI/MXML.
> On my Flex/AIR application I convert this ByteArray on a temporary file
> and open it.
> Here I want to do the same (if I can avoid to create a temporary file on
> the middle, would be a better way).
> A AS util function that I can reuse and encapsulates the JS code, perhaps
> the best approach ?
>
> Carlos Rovira  escreveu no dia quinta, 10/09/2020
> à(s) 11:12:
>
> > Hi,
> >
> > Since Royale is about encapsulating code that works through platforms
> > (and in JS cross browser), I think it would be good to have a bead for
> > that at Core or Basic level.
> >
> > just my 2...
> >
> > El jue., 10 sept. 2020 a las 11:45, Harbs ()
> > escribió:
> >
> > > There is also a FileReference implementation in the mx package.
> > > mx has a DownloadButton which does what you want.
> > >
> > > You also might want to know about URLUtils.
> > >
> > > HTH,
> > > Harbs
> > >
> > > > On Sep 10, 2020, at 12:33 PM, Hugo Ferreira
> > > > 
> > > wrote:
> > > >
> > > > Sometimes it easy to forget that Royale at the end of the day IS
> > > > JS :)
> > > >
> > > > Piotr Zarzycki  escreveu no dia quinta,
> > > > 10/09/2020 à(s) 05:53:
> > > >
> > > >> Hi Hugo,
> > > >>
> > > >> I will just shot you with the tip - How would you do that in pure
> JS ?
> > > - I
> > > >> think this maybe your answer ;)
> > > >>
> > > >> Thanks,
> > > >> Piotr
> > > >>
> > > >> czw., 10 wrz 2020 o 01:59 Hugo Ferreira 
> > > >> napisał(a):
> > > >>
> > > >>> I have a ByteArray to comes from the server side.
> > > >>> I would like to open now the file.
> > > >>> With Flex (AIR), I use FileStream.
> > > >>> What's the equivalent here.
> > > >>> I would like to open the file.
> > > >>> If not possible (for security reasons since we are on web
> > > >>> space), at
> > > >> least
> > > >>> download the file, so the user can click on it.
> > > >>>
> > > >>> What is the Royale approach/code, for that ?
> > > >>>
> > > >>
> > > >>
> > > >> --
> > > >>
> > > >> Piotr Zarzycki
> > > >>
> > >
> > >
> >
> > --
> > Carlos Rovira
> > http://about.me/carlosrovira
> >
>


RE: Open ByteArray as file

2020-09-11 Thread Maria Jose Esteve
Hello Hugo,
I don't know if this will help you ...

I could send you an example of "image opening" with from FileReference and its 
transfer to the backend as ByteArray by AMF3 ... Would it be useful?

Hiedra

-Mensaje original-
De: Hugo Ferreira  
Enviado el: jueves, 10 de septiembre de 2020 13:32
Para: Apache Royale Development 
Asunto: Re: Open ByteArray as file

On my case I have a ByteArray returned from a AMF call to the server, so it's 
not UI/MXML.
On my Flex/AIR application I convert this ByteArray on a temporary file and 
open it.
Here I want to do the same (if I can avoid to create a temporary file on the 
middle, would be a better way).
A AS util function that I can reuse and encapsulates the JS code, perhaps the 
best approach ?

Carlos Rovira  escreveu no dia quinta, 10/09/2020
à(s) 11:12:

> Hi,
>
> Since Royale is about encapsulating code that works through platforms 
> (and in JS cross browser), I think it would be good to have a bead for 
> that at Core or Basic level.
>
> just my 2...
>
> El jue., 10 sept. 2020 a las 11:45, Harbs ()
> escribió:
>
> > There is also a FileReference implementation in the mx package.
> > mx has a DownloadButton which does what you want.
> >
> > You also might want to know about URLUtils.
> >
> > HTH,
> > Harbs
> >
> > > On Sep 10, 2020, at 12:33 PM, Hugo Ferreira 
> > > 
> > wrote:
> > >
> > > Sometimes it easy to forget that Royale at the end of the day IS 
> > > JS :)
> > >
> > > Piotr Zarzycki  escreveu no dia quinta,
> > > 10/09/2020 à(s) 05:53:
> > >
> > >> Hi Hugo,
> > >>
> > >> I will just shot you with the tip - How would you do that in pure JS ?
> > - I
> > >> think this maybe your answer ;)
> > >>
> > >> Thanks,
> > >> Piotr
> > >>
> > >> czw., 10 wrz 2020 o 01:59 Hugo Ferreira 
> > >> napisał(a):
> > >>
> > >>> I have a ByteArray to comes from the server side.
> > >>> I would like to open now the file.
> > >>> With Flex (AIR), I use FileStream.
> > >>> What's the equivalent here.
> > >>> I would like to open the file.
> > >>> If not possible (for security reasons since we are on web 
> > >>> space), at
> > >> least
> > >>> download the file, so the user can click on it.
> > >>>
> > >>> What is the Royale approach/code, for that ?
> > >>>
> > >>
> > >>
> > >> --
> > >>
> > >> Piotr Zarzycki
> > >>
> >
> >
>
> --
> Carlos Rovira
> http://about.me/carlosrovira
>


Re: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Christofer Dutz
Hi Hiedra,

I sometimes have emails from others go to the spam directory. So perhaps your 
email client/service is doing it the same way?

Sometimes I even have to get my own emails from the spam, which is sort of 
embarrassing ;-)

Chris



Am 11.09.20, 15:19 schrieb "Maria Jose Esteve" :

I definitely don't get all the emails on the list ... Chris's email didn't 
reach me, I've read it with Alina's :(

> > El vie., 11 sept. 2020 a las 13:09, Christofer Dutz (<
> > christofer.d...@c-ware.de>) escribió:
> >
> > > Hi Hiedra,
> > >
> > > Your little ECharts example might find its way into my 
> > > Home-Automation presentation ;-)
> > >
> > > Chris

Great Chis, what do you need? How do i pass it on to you
The current Project [1] ... seems to have some problem compiling. It 
compiles well for me, javeiga too, but neither does Alina and taromae [2]. I 
don't know if it would work for you.
Well, tell me what you need and I'll get on with it.

[1] https://github.com/mjesteve/Royale-ECharts/tree/develop
[2] https://github.com/mjesteve/Royale-ECharts/issues/1

I don't know why all the emails don't reach me ... you can send me an 
answer to mjest...@iest.com

Thanks Chris.


-Mensaje original-
De: Alina Kazi  
Enviado el: viernes, 11 de septiembre de 2020 13:59
Para: dev@royale.apache.org
Asunto: Re: ApacheCon @Home Tracks for Royale published

Hi Carlos,

I am not good at presenting. I told him 'Andrew' that. He said he can 
present it for me or with me.

Ok, i will prepare the slides and send him for Review.

Thanks for your reply.

Regards
Alina


On Fri, 11 Sep 2020, 4:50 pm Piotr Zarzycki, 
wrote:

> Hi Carlos,
>
> Thanks for proposition, but I won't have time to prepare anything and 
> definitely I'm not good at presenting anything.
>
> Piotr
>
> pt., 11 wrz 2020 o 13:47 Carlos Rovira 
> napisał(a):
>
> > Thanks all for the updates! :)
> >
> > As I see, if Andrew does the first talk himself, and Alina does the 
> > Flex migration one (great Alina for take over it! :)) I think we 
> > just need to clear the last talk about "Royale Masterclass".
> > Anyone? (Harbs? Piotr? Yishay,...)
> >
> > Alina about your Flex to Royale track: Since Andrew could be busy 
> > and
> with
> > limited time I think you should prepare the slides yourself and then 
> > send for review to Andrew. I think you have enough experience to 
> > know what
> could
> > be interesting and what not. Also here [1] you have some talks from 
> > pass Apache Cons so you can get inspiration:
> >
> > [1]
> >
> https://www.youtube.com/results?search_query=apache+royale+flex+migrat
> ion
> >
> > For example I'm using a standard Google Presentation for my talks, 
> > so you can start with something similar or whatever you feel 
comfortable with.
> >
> > El vie., 11 sept. 2020 a las 13:09, Christofer Dutz (<
> > christofer.d...@c-ware.de>) escribió:
> >
> > > Hi Hiedra,
> > >
> > > Your little ECharts example might find its way into my 
> > > Home-Automation presentation ;-)
> > >
> > > Chris
> > >
> > > Am 11.09.20, 12:21 schrieb "Maria Jose Esteve" :
> > >
> > > Sure Carlos, I understand, without any problem.
> > >
> > > As I see that Andrew HAS NO JOB, let's see if he 
> > > can
> ...
> > > hahahaha
> > >
> > > Don't worry, we don't present it. For my part, all the work 
> > > that I have done and that I will continue to do has helped me to 
learn.
> > >
> > > I think ECharts is great and I'm going to continue the project.
> > >
> > > Maybe ApacheCon 2021 
> > >
> > >
> > >
> > > THX
> > >
> > > Hiedra
> > >
> > >
> > >
> > > -Mensaje original-
> > > De: Christofer Dutz 
> > > Enviado el: viernes, 11 de septiembre de 2020 11:00
> > > Para: dev@royale.apache.org
> > > Asunto: Re: ApacheCon @Home Tracks for Royale published
> > >
> > >
> > >
> > > Hi Carlos,
> > >
> > >
> > >
> > > in the schedule the names are printed:
> > >
> > >
> > >
> > > - Hello, Royale! -> Andrew Wetmore
> > >
> > > - Apache Royale - moving a Flex app to Royale ->. Andrew 
> > > Wetmore
> > >
> > > - Apache Royale - starting from a blank file -> Andrew 
> > > Wetmore,
> > Carlos
> > > Rovira
> > >
> > > - Apache Royale: Tour de Jewel -> Andrew Wetmore, Carlos 
> > > Rovira
> > >
> > > - Apache Royale Masterclass -> Andrew Wetmore
> > >
> > >
> > >
> > > Ok ... I see .. so either Andrew is the unstoppable talking 
> > > machine ... or he is 

RE: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Maria Jose Esteve
I definitely don't get all the emails on the list ... Chris's email didn't 
reach me, I've read it with Alina's :(

> > El vie., 11 sept. 2020 a las 13:09, Christofer Dutz (<
> > christofer.d...@c-ware.de>) escribió:
> >
> > > Hi Hiedra,
> > >
> > > Your little ECharts example might find its way into my 
> > > Home-Automation presentation ;-)
> > >
> > > Chris

Great Chis, what do you need? How do i pass it on to you
The current Project [1] ... seems to have some problem compiling. It compiles 
well for me, javeiga too, but neither does Alina and taromae [2]. I don't know 
if it would work for you.
Well, tell me what you need and I'll get on with it.

[1] https://github.com/mjesteve/Royale-ECharts/tree/develop
[2] https://github.com/mjesteve/Royale-ECharts/issues/1

I don't know why all the emails don't reach me ... you can send me an answer to 
mjest...@iest.com

Thanks Chris.


-Mensaje original-
De: Alina Kazi  
Enviado el: viernes, 11 de septiembre de 2020 13:59
Para: dev@royale.apache.org
Asunto: Re: ApacheCon @Home Tracks for Royale published

Hi Carlos,

I am not good at presenting. I told him 'Andrew' that. He said he can present 
it for me or with me.

Ok, i will prepare the slides and send him for Review.

Thanks for your reply.

Regards
Alina


On Fri, 11 Sep 2020, 4:50 pm Piotr Zarzycki, 
wrote:

> Hi Carlos,
>
> Thanks for proposition, but I won't have time to prepare anything and 
> definitely I'm not good at presenting anything.
>
> Piotr
>
> pt., 11 wrz 2020 o 13:47 Carlos Rovira 
> napisał(a):
>
> > Thanks all for the updates! :)
> >
> > As I see, if Andrew does the first talk himself, and Alina does the 
> > Flex migration one (great Alina for take over it! :)) I think we 
> > just need to clear the last talk about "Royale Masterclass".
> > Anyone? (Harbs? Piotr? Yishay,...)
> >
> > Alina about your Flex to Royale track: Since Andrew could be busy 
> > and
> with
> > limited time I think you should prepare the slides yourself and then 
> > send for review to Andrew. I think you have enough experience to 
> > know what
> could
> > be interesting and what not. Also here [1] you have some talks from 
> > pass Apache Cons so you can get inspiration:
> >
> > [1]
> >
> https://www.youtube.com/results?search_query=apache+royale+flex+migrat
> ion
> >
> > For example I'm using a standard Google Presentation for my talks, 
> > so you can start with something similar or whatever you feel comfortable 
> > with.
> >
> > El vie., 11 sept. 2020 a las 13:09, Christofer Dutz (<
> > christofer.d...@c-ware.de>) escribió:
> >
> > > Hi Hiedra,
> > >
> > > Your little ECharts example might find its way into my 
> > > Home-Automation presentation ;-)
> > >
> > > Chris
> > >
> > > Am 11.09.20, 12:21 schrieb "Maria Jose Esteve" :
> > >
> > > Sure Carlos, I understand, without any problem.
> > >
> > > As I see that Andrew HAS NO JOB, let's see if he 
> > > can
> ...
> > > hahahaha
> > >
> > > Don't worry, we don't present it. For my part, all the work 
> > > that I have done and that I will continue to do has helped me to learn.
> > >
> > > I think ECharts is great and I'm going to continue the project.
> > >
> > > Maybe ApacheCon 2021 
> > >
> > >
> > >
> > > THX
> > >
> > > Hiedra
> > >
> > >
> > >
> > > -Mensaje original-
> > > De: Christofer Dutz 
> > > Enviado el: viernes, 11 de septiembre de 2020 11:00
> > > Para: dev@royale.apache.org
> > > Asunto: Re: ApacheCon @Home Tracks for Royale published
> > >
> > >
> > >
> > > Hi Carlos,
> > >
> > >
> > >
> > > in the schedule the names are printed:
> > >
> > >
> > >
> > > - Hello, Royale! -> Andrew Wetmore
> > >
> > > - Apache Royale - moving a Flex app to Royale ->. Andrew 
> > > Wetmore
> > >
> > > - Apache Royale - starting from a blank file -> Andrew 
> > > Wetmore,
> > Carlos
> > > Rovira
> > >
> > > - Apache Royale: Tour de Jewel -> Andrew Wetmore, Carlos 
> > > Rovira
> > >
> > > - Apache Royale Masterclass -> Andrew Wetmore
> > >
> > >
> > >
> > > Ok ... I see .. so either Andrew is the unstoppable talking 
> > > machine ... or he is acting as a placeholder for some talks ...
> > >
> > > Well this should really be sorted out soon, as Rich recently
> > announced
> > > to stop accepting change requests to the schedule soon.
> > >
> > >
> > >
> > > Chris
> > >
> > >
> > >
> > >
> > >
> > > Am 11.09.20, 10:39 schrieb "Carlos Rovira" <
> carlosrov...@apache.org
> > > >:
> > >
> > >
> > >
> > > Hi
> > >
> > >
> > >
> > > @Maria Jose, my presentations are already planned (one for
> > TodoMVC
> > > and
> > >
> > > other for TDJ) and I'm trying to shrink since there's many
> things
> > > to cover
> > >
> > > already. I think Echarts could be part of the other three 
> > > depending on how
> > >
> > > those talks are already planned or not.
> > >
> > >
> > >
> > > 

Re: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Alina Kazi
Hi Carlos,

I am not good at presenting. I told him 'Andrew' that. He said he can
present it for me or with me.

Ok, i will prepare the slides and send him for Review.

Thanks for your reply.

Regards
Alina


On Fri, 11 Sep 2020, 4:50 pm Piotr Zarzycki, 
wrote:

> Hi Carlos,
>
> Thanks for proposition, but I won't have time to prepare anything and
> definitely I'm not good at presenting anything.
>
> Piotr
>
> pt., 11 wrz 2020 o 13:47 Carlos Rovira 
> napisał(a):
>
> > Thanks all for the updates! :)
> >
> > As I see, if Andrew does the first talk himself, and Alina does the Flex
> > migration one (great Alina for take over it! :))
> > I think we just need to clear the last talk about "Royale Masterclass".
> > Anyone? (Harbs? Piotr? Yishay,...)
> >
> > Alina about your Flex to Royale track: Since Andrew could be busy and
> with
> > limited time I think you should prepare the slides yourself and then send
> > for review to Andrew. I think you have enough experience to know what
> could
> > be interesting and what not. Also here [1] you have some talks from pass
> > Apache Cons so you can get inspiration:
> >
> > [1]
> >
> https://www.youtube.com/results?search_query=apache+royale+flex+migration
> >
> > For example I'm using a standard Google Presentation for my talks, so you
> > can start with something similar or whatever you feel comfortable with.
> >
> > El vie., 11 sept. 2020 a las 13:09, Christofer Dutz (<
> > christofer.d...@c-ware.de>) escribió:
> >
> > > Hi Hiedra,
> > >
> > > Your little ECharts example might find its way into my Home-Automation
> > > presentation ;-)
> > >
> > > Chris
> > >
> > > Am 11.09.20, 12:21 schrieb "Maria Jose Esteve" :
> > >
> > > Sure Carlos, I understand, without any problem.
> > >
> > > As I see that Andrew HAS NO JOB, let's see if he can
> ...
> > > hahahaha
> > >
> > > Don't worry, we don't present it. For my part, all the work that I
> > > have done and that I will continue to do has helped me to learn.
> > >
> > > I think ECharts is great and I'm going to continue the project.
> > >
> > > Maybe ApacheCon 2021 
> > >
> > >
> > >
> > > THX
> > >
> > > Hiedra
> > >
> > >
> > >
> > > -Mensaje original-
> > > De: Christofer Dutz 
> > > Enviado el: viernes, 11 de septiembre de 2020 11:00
> > > Para: dev@royale.apache.org
> > > Asunto: Re: ApacheCon @Home Tracks for Royale published
> > >
> > >
> > >
> > > Hi Carlos,
> > >
> > >
> > >
> > > in the schedule the names are printed:
> > >
> > >
> > >
> > > - Hello, Royale! -> Andrew Wetmore
> > >
> > > - Apache Royale - moving a Flex app to Royale ->. Andrew Wetmore
> > >
> > > - Apache Royale - starting from a blank file -> Andrew Wetmore,
> > Carlos
> > > Rovira
> > >
> > > - Apache Royale: Tour de Jewel -> Andrew Wetmore, Carlos Rovira
> > >
> > > - Apache Royale Masterclass -> Andrew Wetmore
> > >
> > >
> > >
> > > Ok ... I see .. so either Andrew is the unstoppable talking machine
> > > ... or he is acting as a placeholder for some talks ...
> > >
> > > Well this should really be sorted out soon, as Rich recently
> > announced
> > > to stop accepting change requests to the schedule soon.
> > >
> > >
> > >
> > > Chris
> > >
> > >
> > >
> > >
> > >
> > > Am 11.09.20, 10:39 schrieb "Carlos Rovira" <
> carlosrov...@apache.org
> > > >:
> > >
> > >
> > >
> > > Hi
> > >
> > >
> > >
> > > @Maria Jose, my presentations are already planned (one for
> > TodoMVC
> > > and
> > >
> > > other for TDJ) and I'm trying to shrink since there's many
> things
> > > to cover
> > >
> > > already. I think Echarts could be part of the other three
> > > depending on how
> > >
> > > those talks are already planned or not.
> > >
> > >
> > >
> > > @Chris, yes, I know that. What I was asking is about WHO is
> going
> > > to
> > >
> > > present the other 3 talks. I don't know if we have presenters
> for
> > > the rest
> > >
> > > of the talks. I was proposing to share it on social media to
> let
> > > people
> > >
> > > know, but I can't do it if I don't know anything about it, even
> > > how it's
> > >
> > > presenting.
> > >
> > >
> > >
> > > Thanks!
> > >
> > >
> > >
> > >
> > >
> > > El vie., 11 sept. 2020 a las 9:30, Christofer Dutz (<
> > >
> > > christofer.d...@c-ware.de>)
> > > escribió:
> > >
> > >
> > >
> > > > @Carlos,
> > >
> > > >
> > >
> > > > if you want to see the other Royale talks:
> > >
> > > >
> > >
> > > > https://www.apachecon.com/acah2020/tracks/royale.html
> > >
> > > >
> > >
> > > > ... And there's my talk on home automation with Apache, which
> > > will also
> > >
> > > > touch Royale ;-)
> > >
> > > >
> > >
> > > > Chris
> > >
> > > >
> > >
> > > > Am 

Re: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Piotr Zarzycki
Hi Carlos,

Thanks for proposition, but I won't have time to prepare anything and
definitely I'm not good at presenting anything.

Piotr

pt., 11 wrz 2020 o 13:47 Carlos Rovira  napisał(a):

> Thanks all for the updates! :)
>
> As I see, if Andrew does the first talk himself, and Alina does the Flex
> migration one (great Alina for take over it! :))
> I think we just need to clear the last talk about "Royale Masterclass".
> Anyone? (Harbs? Piotr? Yishay,...)
>
> Alina about your Flex to Royale track: Since Andrew could be busy and with
> limited time I think you should prepare the slides yourself and then send
> for review to Andrew. I think you have enough experience to know what could
> be interesting and what not. Also here [1] you have some talks from pass
> Apache Cons so you can get inspiration:
>
> [1]
> https://www.youtube.com/results?search_query=apache+royale+flex+migration
>
> For example I'm using a standard Google Presentation for my talks, so you
> can start with something similar or whatever you feel comfortable with.
>
> El vie., 11 sept. 2020 a las 13:09, Christofer Dutz (<
> christofer.d...@c-ware.de>) escribió:
>
> > Hi Hiedra,
> >
> > Your little ECharts example might find its way into my Home-Automation
> > presentation ;-)
> >
> > Chris
> >
> > Am 11.09.20, 12:21 schrieb "Maria Jose Esteve" :
> >
> > Sure Carlos, I understand, without any problem.
> >
> > As I see that Andrew HAS NO JOB, let's see if he can ...
> > hahahaha
> >
> > Don't worry, we don't present it. For my part, all the work that I
> > have done and that I will continue to do has helped me to learn.
> >
> > I think ECharts is great and I'm going to continue the project.
> >
> > Maybe ApacheCon 2021 
> >
> >
> >
> > THX
> >
> > Hiedra
> >
> >
> >
> > -Mensaje original-
> > De: Christofer Dutz 
> > Enviado el: viernes, 11 de septiembre de 2020 11:00
> > Para: dev@royale.apache.org
> > Asunto: Re: ApacheCon @Home Tracks for Royale published
> >
> >
> >
> > Hi Carlos,
> >
> >
> >
> > in the schedule the names are printed:
> >
> >
> >
> > - Hello, Royale! -> Andrew Wetmore
> >
> > - Apache Royale - moving a Flex app to Royale ->. Andrew Wetmore
> >
> > - Apache Royale - starting from a blank file -> Andrew Wetmore,
> Carlos
> > Rovira
> >
> > - Apache Royale: Tour de Jewel -> Andrew Wetmore, Carlos Rovira
> >
> > - Apache Royale Masterclass -> Andrew Wetmore
> >
> >
> >
> > Ok ... I see .. so either Andrew is the unstoppable talking machine
> > ... or he is acting as a placeholder for some talks ...
> >
> > Well this should really be sorted out soon, as Rich recently
> announced
> > to stop accepting change requests to the schedule soon.
> >
> >
> >
> > Chris
> >
> >
> >
> >
> >
> > Am 11.09.20, 10:39 schrieb "Carlos Rovira"  > >:
> >
> >
> >
> > Hi
> >
> >
> >
> > @Maria Jose, my presentations are already planned (one for
> TodoMVC
> > and
> >
> > other for TDJ) and I'm trying to shrink since there's many things
> > to cover
> >
> > already. I think Echarts could be part of the other three
> > depending on how
> >
> > those talks are already planned or not.
> >
> >
> >
> > @Chris, yes, I know that. What I was asking is about WHO is going
> > to
> >
> > present the other 3 talks. I don't know if we have presenters for
> > the rest
> >
> > of the talks. I was proposing to share it on social media to let
> > people
> >
> > know, but I can't do it if I don't know anything about it, even
> > how it's
> >
> > presenting.
> >
> >
> >
> > Thanks!
> >
> >
> >
> >
> >
> > El vie., 11 sept. 2020 a las 9:30, Christofer Dutz (<
> >
> > christofer.d...@c-ware.de>)
> > escribió:
> >
> >
> >
> > > @Carlos,
> >
> > >
> >
> > > if you want to see the other Royale talks:
> >
> > >
> >
> > > https://www.apachecon.com/acah2020/tracks/royale.html
> >
> > >
> >
> > > ... And there's my talk on home automation with Apache, which
> > will also
> >
> > > touch Royale ;-)
> >
> > >
> >
> > > Chris
> >
> > >
> >
> > > Am 11.09.20, 01:05 schrieb "Maria Jose Esteve" <
> > mjest...@iest.com>:
> >
> > >
> >
> > > Hello
> >
> > >
> >
> > > I do not know if we will get to do much more, than there is
> > currently,
> >
> > > in the example of integration with Apache Echarts, in a week,
> > maybe the
> >
> > > application of creating and manipulating Themes...
> >
> > >
> >
> > > Do you think it would be nice to show part of the sample
> > project in
> >
> > > one of YOUR presentations?  (I couldn't do it)
> >
> >>
> >
> > > Hiedra.
> >
> > >
> >
> 

Re: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Carlos Rovira
Thanks all for the updates! :)

As I see, if Andrew does the first talk himself, and Alina does the Flex
migration one (great Alina for take over it! :))
I think we just need to clear the last talk about "Royale Masterclass".
Anyone? (Harbs? Piotr? Yishay,...)

Alina about your Flex to Royale track: Since Andrew could be busy and with
limited time I think you should prepare the slides yourself and then send
for review to Andrew. I think you have enough experience to know what could
be interesting and what not. Also here [1] you have some talks from pass
Apache Cons so you can get inspiration:

[1]
https://www.youtube.com/results?search_query=apache+royale+flex+migration

For example I'm using a standard Google Presentation for my talks, so you
can start with something similar or whatever you feel comfortable with.

El vie., 11 sept. 2020 a las 13:09, Christofer Dutz (<
christofer.d...@c-ware.de>) escribió:

> Hi Hiedra,
>
> Your little ECharts example might find its way into my Home-Automation
> presentation ;-)
>
> Chris
>
> Am 11.09.20, 12:21 schrieb "Maria Jose Esteve" :
>
> Sure Carlos, I understand, without any problem.
>
> As I see that Andrew HAS NO JOB, let's see if he can ...
> hahahaha
>
> Don't worry, we don't present it. For my part, all the work that I
> have done and that I will continue to do has helped me to learn.
>
> I think ECharts is great and I'm going to continue the project.
>
> Maybe ApacheCon 2021 
>
>
>
> THX
>
> Hiedra
>
>
>
> -Mensaje original-
> De: Christofer Dutz 
> Enviado el: viernes, 11 de septiembre de 2020 11:00
> Para: dev@royale.apache.org
> Asunto: Re: ApacheCon @Home Tracks for Royale published
>
>
>
> Hi Carlos,
>
>
>
> in the schedule the names are printed:
>
>
>
> - Hello, Royale! -> Andrew Wetmore
>
> - Apache Royale - moving a Flex app to Royale ->. Andrew Wetmore
>
> - Apache Royale - starting from a blank file -> Andrew Wetmore, Carlos
> Rovira
>
> - Apache Royale: Tour de Jewel -> Andrew Wetmore, Carlos Rovira
>
> - Apache Royale Masterclass -> Andrew Wetmore
>
>
>
> Ok ... I see .. so either Andrew is the unstoppable talking machine
> ... or he is acting as a placeholder for some talks ...
>
> Well this should really be sorted out soon, as Rich recently announced
> to stop accepting change requests to the schedule soon.
>
>
>
> Chris
>
>
>
>
>
> Am 11.09.20, 10:39 schrieb "Carlos Rovira"  >:
>
>
>
> Hi
>
>
>
> @Maria Jose, my presentations are already planned (one for TodoMVC
> and
>
> other for TDJ) and I'm trying to shrink since there's many things
> to cover
>
> already. I think Echarts could be part of the other three
> depending on how
>
> those talks are already planned or not.
>
>
>
> @Chris, yes, I know that. What I was asking is about WHO is going
> to
>
> present the other 3 talks. I don't know if we have presenters for
> the rest
>
> of the talks. I was proposing to share it on social media to let
> people
>
> know, but I can't do it if I don't know anything about it, even
> how it's
>
> presenting.
>
>
>
> Thanks!
>
>
>
>
>
> El vie., 11 sept. 2020 a las 9:30, Christofer Dutz (<
>
> christofer.d...@c-ware.de>)
> escribió:
>
>
>
> > @Carlos,
>
> >
>
> > if you want to see the other Royale talks:
>
> >
>
> > https://www.apachecon.com/acah2020/tracks/royale.html
>
> >
>
> > ... And there's my talk on home automation with Apache, which
> will also
>
> > touch Royale ;-)
>
> >
>
> > Chris
>
> >
>
> > Am 11.09.20, 01:05 schrieb "Maria Jose Esteve" <
> mjest...@iest.com>:
>
> >
>
> > Hello
>
> >
>
> > I do not know if we will get to do much more, than there is
> currently,
>
> > in the example of integration with Apache Echarts, in a week,
> maybe the
>
> > application of creating and manipulating Themes...
>
> >
>
> > Do you think it would be nice to show part of the sample
> project in
>
> > one of YOUR presentations?  (I couldn't do it)
>
>>
>
> > Hiedra.
>
> >
>
> > -Mensaje original-
>
> > De: Carlos Rovira  carlosrov...@apache.org>>
>
> > Enviado el: jueves, 10 de septiembre de 2020 16:06
>
> > Para: Apache Royale Development  >
>
> > Asunto: Re: ApacheCon @Home Tracks for Royale published
>
> >
>
> > Hi all,
>
> >
>
> > as I'm preparing the slides of my 2 talks, I still don't
> have clear
>
> > information about the other 3 ones.
>
> > Who are the folks going to prepare and present 

Re: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Christofer Dutz
Hi Hiedra,

Your little ECharts example might find its way into my Home-Automation 
presentation ;-)

Chris

Am 11.09.20, 12:21 schrieb "Maria Jose Esteve" :

Sure Carlos, I understand, without any problem.

As I see that Andrew HAS NO JOB, let's see if he can ... 
hahahaha

Don't worry, we don't present it. For my part, all the work that I have 
done and that I will continue to do has helped me to learn.

I think ECharts is great and I'm going to continue the project.

Maybe ApacheCon 2021 



THX

Hiedra



-Mensaje original-
De: Christofer Dutz 
Enviado el: viernes, 11 de septiembre de 2020 11:00
Para: dev@royale.apache.org
Asunto: Re: ApacheCon @Home Tracks for Royale published



Hi Carlos,



in the schedule the names are printed:



- Hello, Royale! -> Andrew Wetmore

- Apache Royale - moving a Flex app to Royale ->. Andrew Wetmore

- Apache Royale - starting from a blank file -> Andrew Wetmore, Carlos 
Rovira

- Apache Royale: Tour de Jewel -> Andrew Wetmore, Carlos Rovira

- Apache Royale Masterclass -> Andrew Wetmore



Ok ... I see .. so either Andrew is the unstoppable talking machine ... or 
he is acting as a placeholder for some talks ...

Well this should really be sorted out soon, as Rich recently announced to 
stop accepting change requests to the schedule soon.



Chris





Am 11.09.20, 10:39 schrieb "Carlos Rovira" 
mailto:carlosrov...@apache.org>>:



Hi



@Maria Jose, my presentations are already planned (one for TodoMVC and

other for TDJ) and I'm trying to shrink since there's many things to 
cover

already. I think Echarts could be part of the other three depending on 
how

those talks are already planned or not.



@Chris, yes, I know that. What I was asking is about WHO is going to

present the other 3 talks. I don't know if we have presenters for the 
rest

of the talks. I was proposing to share it on social media to let people

know, but I can't do it if I don't know anything about it, even how it's

presenting.



Thanks!





El vie., 11 sept. 2020 a las 9:30, Christofer Dutz (<

christofer.d...@c-ware.de>) escribió:



> @Carlos,

>

> if you want to see the other Royale talks:

>

> https://www.apachecon.com/acah2020/tracks/royale.html

>

> ... And there's my talk on home automation with Apache, which will 
also

> touch Royale ;-)

>

> Chris

>

> Am 11.09.20, 01:05 schrieb "Maria Jose Esteve" 
mailto:mjest...@iest.com>>:

>

> Hello

>

> I do not know if we will get to do much more, than there is 
currently,

> in the example of integration with Apache Echarts, in a week, maybe 
the

> application of creating and manipulating Themes...

>

> Do you think it would be nice to show part of the sample project 
in

> one of YOUR presentations?  (I couldn't do it)

   >

> Hiedra.

>

> -Mensaje original-

> De: Carlos Rovira 
mailto:carlosrov...@apache.org>>

> Enviado el: jueves, 10 de septiembre de 2020 16:06

> Para: Apache Royale Development 
mailto:dev@royale.apache.org>>

> Asunto: Re: ApacheCon @Home Tracks for Royale published

>

> Hi all,

>

> as I'm preparing the slides of my 2 talks, I still don't have 
clear

> information about the other 3 ones.

> Who are the folks going to prepare and present it? Also, I can 
tweet

> about it too... as I know more about it.

>

> thanks

>

> El vie., 14 ago. 2020 a las 15:27, Andrew Wetmore (<

> cottag...@gmail.com>)

> escribió:

>

> > That's excellent. We can refer to that talk from the 
Royale-track

> talks.

> >

> > <

> >

> https://www.avast.com/sig-email?utm_medium=email_source=link_c

> > ampaign=sig-email_content=webmail

> > >

> > Virus-free.

> > www.avast.com

> > <

> >

> https://www.avast.com/sig-email?utm_medium=email_source=link_c

> > ampaign=sig-email_content=webmail

> > >

> > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

> >

> > On Fri, Aug 14, 2020 at 5:14 AM Christofer Dutz

> >  > >

> > wrote:

> >

> > > Hi folks,

> > >

> > > And there's one rouge talk in the IoT track also featuring 
Royale:

> > > My 

Re: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Alina Kazi
Hi,

I have contacted Andrew on 13th of July to participate in ApacheCon. I
wanted to share our experience of porting large flex application porting to
Apache Royale and data/code samples/screenshots of screen that we have
ported.
On the same day he replied and he was ok with it. He said he will prepare
presentation and leave blank for me to fill the information. He also sent
me further details.
I donot have any update after that.
I have contacted him 'Andrew' several times after that.
As ApacheCon is near. I am still hopeful to get this opportunity of
participation.
Andrew , I am waiting for your reply.

Regards
Alina Kazi


On Fri, 11 Sep 2020, 2:00 pm Christofer Dutz, 
wrote:

> Hi Carlos,
>
> in the schedule the names are printed:
>
> - Hello, Royale! -> Andrew Wetmore
> - Apache Royale - moving a Flex app to Royale ->. Andrew Wetmore
> - Apache Royale - starting from a blank file -> Andrew Wetmore, Carlos
> Rovira
> - Apache Royale: Tour de Jewel -> Andrew Wetmore, Carlos Rovira
> - Apache Royale Masterclass -> Andrew Wetmore
>
> Ok ... I see .. so either Andrew is the unstoppable talking machine ... or
> he is acting as a placeholder for some talks ...
> Well this should really be sorted out soon, as Rich recently announced to
> stop accepting change requests to the schedule soon.
>
> Chris
>
>
> Am 11.09.20, 10:39 schrieb "Carlos Rovira" :
>
> Hi
>
> @Maria Jose, my presentations are already planned (one for TodoMVC and
> other for TDJ) and I'm trying to shrink since there's many things to
> cover
> already. I think Echarts could be part of the other three depending on
> how
> those talks are already planned or not.
>
> @Chris, yes, I know that. What I was asking is about WHO is going to
> present the other 3 talks. I don't know if we have presenters for the
> rest
> of the talks. I was proposing to share it on social media to let people
> know, but I can't do it if I don't know anything about it, even how
> it's
> presenting.
>
> Thanks!
>
>
> El vie., 11 sept. 2020 a las 9:30, Christofer Dutz (<
> christofer.d...@c-ware.de>) escribió:
>
> > @Carlos,
> >
> > if you want to see the other Royale talks:
> >
> > https://www.apachecon.com/acah2020/tracks/royale.html
> >
> > ... And there's my talk on home automation with Apache, which will
> also
> > touch Royale ;-)
> >
> > Chris
> >
> > Am 11.09.20, 01:05 schrieb "Maria Jose Esteve" :
> >
> > Hello
> >
> > I do not know if we will get to do much more, than there is
> currently,
> > in the example of integration with Apache Echarts, in a week, maybe
> the
> > application of creating and manipulating Themes...
> >
> > Do you think it would be nice to show part of the sample project
> in
> > one of YOUR presentations?  (I couldn't do it)
> >
> > Hiedra.
> >
> > -Mensaje original-
> > De: Carlos Rovira 
> > Enviado el: jueves, 10 de septiembre de 2020 16:06
> > Para: Apache Royale Development 
> > Asunto: Re: ApacheCon @Home Tracks for Royale published
> >
> > Hi all,
> >
> > as I'm preparing the slides of my 2 talks, I still don't have
> clear
> > information about the other 3 ones.
> > Who are the folks going to prepare and present it? Also, I can
> tweet
> > about it too... as I know more about it.
> >
> > thanks
> >
> > El vie., 14 ago. 2020 a las 15:27, Andrew Wetmore (<
> > cottag...@gmail.com>)
> > escribió:
> >
> > > That's excellent. We can refer to that talk from the
> Royale-track
> > talks.
> > >
> > > <
> > >
> >
> https://www.avast.com/sig-email?utm_medium=email_source=link_c
> > > ampaign=sig-email_content=webmail
> > > >
> > > Virus-free.
> > > www.avast.com
> > > <
> > >
> >
> https://www.avast.com/sig-email?utm_medium=email_source=link_c
> > > ampaign=sig-email_content=webmail
> > > >
> > > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> > >
> > > On Fri, Aug 14, 2020 at 5:14 AM Christofer Dutz
> > >  > > >
> > > wrote:
> > >
> > > > Hi folks,
> > > >
> > > > And there's one rouge talk in the IoT track also featuring
> Royale:
> > > > My "Home automation with Apache" talk will be based on a
> frontend
> > > > built with Royale.
> > > >
> > > > Chris
> > > >
> > > >
> > > > Am 14.08.20, 09:46 schrieb "Carlos Rovira" <
> > carlosrov...@apache.org>:
> > > >
> > > > Hi,
> > > >
> > > > just saw that ApacheCon tracks for Royale are setup.
> Check
> > this:
> > > >
> > > > https://www.apachecon.com/acah2020/tracks/royale.html
> > > >
> > 

RE: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Maria Jose Esteve
Sure Carlos, I understand, without any problem.

As I see that Andrew HAS NO JOB, let's see if he can ... hahahaha

Don't worry, we don't present it. For my part, all the work that I have done 
and that I will continue to do has helped me to learn.

I think ECharts is great and I'm going to continue the project.

Maybe ApacheCon 2021 



THX

Hiedra



-Mensaje original-
De: Christofer Dutz 
Enviado el: viernes, 11 de septiembre de 2020 11:00
Para: dev@royale.apache.org
Asunto: Re: ApacheCon @Home Tracks for Royale published



Hi Carlos,



in the schedule the names are printed:



- Hello, Royale! -> Andrew Wetmore

- Apache Royale - moving a Flex app to Royale ->. Andrew Wetmore

- Apache Royale - starting from a blank file -> Andrew Wetmore, Carlos Rovira

- Apache Royale: Tour de Jewel -> Andrew Wetmore, Carlos Rovira

- Apache Royale Masterclass -> Andrew Wetmore



Ok ... I see .. so either Andrew is the unstoppable talking machine ... or he 
is acting as a placeholder for some talks ...

Well this should really be sorted out soon, as Rich recently announced to stop 
accepting change requests to the schedule soon.



Chris





Am 11.09.20, 10:39 schrieb "Carlos Rovira" 
mailto:carlosrov...@apache.org>>:



Hi



@Maria Jose, my presentations are already planned (one for TodoMVC and

other for TDJ) and I'm trying to shrink since there's many things to cover

already. I think Echarts could be part of the other three depending on how

those talks are already planned or not.



@Chris, yes, I know that. What I was asking is about WHO is going to

present the other 3 talks. I don't know if we have presenters for the rest

of the talks. I was proposing to share it on social media to let people

know, but I can't do it if I don't know anything about it, even how it's

presenting.



Thanks!





El vie., 11 sept. 2020 a las 9:30, Christofer Dutz (<

christofer.d...@c-ware.de>) escribió:



> @Carlos,

>

> if you want to see the other Royale talks:

>

> https://www.apachecon.com/acah2020/tracks/royale.html

>

> ... And there's my talk on home automation with Apache, which will also

> touch Royale ;-)

>

> Chris

>

> Am 11.09.20, 01:05 schrieb "Maria Jose Esteve" 
mailto:mjest...@iest.com>>:

>

> Hello

>

> I do not know if we will get to do much more, than there is currently,

> in the example of integration with Apache Echarts, in a week, maybe the

> application of creating and manipulating Themes...

>

> Do you think it would be nice to show part of the sample project in

> one of YOUR presentations?  (I couldn't do it)

   >

> Hiedra.

>

> -Mensaje original-

> De: Carlos Rovira 
mailto:carlosrov...@apache.org>>

> Enviado el: jueves, 10 de septiembre de 2020 16:06

> Para: Apache Royale Development 
mailto:dev@royale.apache.org>>

> Asunto: Re: ApacheCon @Home Tracks for Royale published

>

> Hi all,

>

> as I'm preparing the slides of my 2 talks, I still don't have clear

> information about the other 3 ones.

> Who are the folks going to prepare and present it? Also, I can tweet

> about it too... as I know more about it.

>

> thanks

>

> El vie., 14 ago. 2020 a las 15:27, Andrew Wetmore (<

> cottag...@gmail.com>)

> escribió:

>

> > That's excellent. We can refer to that talk from the Royale-track

> talks.

> >

> > <

> >

> https://www.avast.com/sig-email?utm_medium=email_source=link_c

> > ampaign=sig-email_content=webmail

> > >

> > Virus-free.

> > www.avast.com

> > <

> >

> https://www.avast.com/sig-email?utm_medium=email_source=link_c

> > ampaign=sig-email_content=webmail

> > >

> > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

> >

> > On Fri, Aug 14, 2020 at 5:14 AM Christofer Dutz

> >  > >

> > wrote:

> >

> > > Hi folks,

> > >

> > > And there's one rouge talk in the IoT track also featuring Royale:

> > > My "Home automation with Apache" talk will be based on a frontend

> > > built with Royale.

> > >

> > > Chris

> > >

> > >

> > > Am 14.08.20, 09:46 schrieb "Carlos Rovira" <

> carlosrov...@apache.org>:

> > >

> > > Hi,

> > >

> > > just saw that ApacheCon tracks for Royale are setup. Check

> this:

> > >

> > > https://www.apachecon.com/acah2020/tracks/royale.html

> > >

> > >

> > > --

> > > 

Re: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Christofer Dutz
Hi Carlos,

in the schedule the names are printed:

- Hello, Royale! -> Andrew Wetmore
- Apache Royale - moving a Flex app to Royale ->. Andrew Wetmore
- Apache Royale - starting from a blank file -> Andrew Wetmore, Carlos Rovira
- Apache Royale: Tour de Jewel -> Andrew Wetmore, Carlos Rovira
- Apache Royale Masterclass -> Andrew Wetmore

Ok ... I see .. so either Andrew is the unstoppable talking machine ... or he 
is acting as a placeholder for some talks ... 
Well this should really be sorted out soon, as Rich recently announced to stop 
accepting change requests to the schedule soon.

Chris


Am 11.09.20, 10:39 schrieb "Carlos Rovira" :

Hi

@Maria Jose, my presentations are already planned (one for TodoMVC and
other for TDJ) and I'm trying to shrink since there's many things to cover
already. I think Echarts could be part of the other three depending on how
those talks are already planned or not.

@Chris, yes, I know that. What I was asking is about WHO is going to
present the other 3 talks. I don't know if we have presenters for the rest
of the talks. I was proposing to share it on social media to let people
know, but I can't do it if I don't know anything about it, even how it's
presenting.

Thanks!


El vie., 11 sept. 2020 a las 9:30, Christofer Dutz (<
christofer.d...@c-ware.de>) escribió:

> @Carlos,
>
> if you want to see the other Royale talks:
>
> https://www.apachecon.com/acah2020/tracks/royale.html
>
> ... And there's my talk on home automation with Apache, which will also
> touch Royale ;-)
>
> Chris
>
> Am 11.09.20, 01:05 schrieb "Maria Jose Esteve" :
>
> Hello
>
> I do not know if we will get to do much more, than there is currently,
> in the example of integration with Apache Echarts, in a week, maybe the
> application of creating and manipulating Themes...
>
> Do you think it would be nice to show part of the sample project in
> one of YOUR presentations?  (I couldn't do it)
>
> Hiedra.
>
> -Mensaje original-
> De: Carlos Rovira 
> Enviado el: jueves, 10 de septiembre de 2020 16:06
> Para: Apache Royale Development 
> Asunto: Re: ApacheCon @Home Tracks for Royale published
>
> Hi all,
>
> as I'm preparing the slides of my 2 talks, I still don't have clear
> information about the other 3 ones.
> Who are the folks going to prepare and present it? Also, I can tweet
> about it too... as I know more about it.
>
> thanks
>
> El vie., 14 ago. 2020 a las 15:27, Andrew Wetmore (<
> cottag...@gmail.com>)
> escribió:
>
> > That's excellent. We can refer to that talk from the Royale-track
> talks.
> >
> > <
> >
> https://www.avast.com/sig-email?utm_medium=email_source=link_c
> > ampaign=sig-email_content=webmail
> > >
> > Virus-free.
> > www.avast.com
> > <
> >
> https://www.avast.com/sig-email?utm_medium=email_source=link_c
> > ampaign=sig-email_content=webmail
> > >
> > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> >
> > On Fri, Aug 14, 2020 at 5:14 AM Christofer Dutz
> >  > >
> > wrote:
> >
> > > Hi folks,
> > >
> > > And there's one rouge talk in the IoT track also featuring Royale:
> > > My "Home automation with Apache" talk will be based on a frontend
> > > built with Royale.
> > >
> > > Chris
> > >
> > >
> > > Am 14.08.20, 09:46 schrieb "Carlos Rovira" <
> carlosrov...@apache.org>:
> > >
> > > Hi,
> > >
> > > just saw that ApacheCon tracks for Royale are setup. Check
> this:
> > >
> > > https://www.apachecon.com/acah2020/tracks/royale.html
> > >
> > >
> > > --
> > > Carlos Rovira
> > > http://about.me/carlosrovira
> > >
> > >
> >
> > --
> > Andrew Wetmore
> >
> > http://cottage14.blogspot.com/
> >
>
>
> --
> Carlos Rovira
> http://about.me/carlosrovira
>
>

-- 
Carlos Rovira
http://about.me/carlosrovira



Re: Sort Jewel DataGrid by column click

2020-09-11 Thread Hugo Ferreira
Hi Carlos,

In Royale and DataGrid Jewel world (and you know much better than me), to
refresh the DataGrid one needs to set the dataProvider to null and then
reassign the dataProvider.
I know that because I already saw before somewhere in the framework so I
predict that is currently the "normal" behaviour.

Thinking about that, I think that it should be nice that the DataGrid has a
refresh method that internally sets the dataProvider to a variable,
dataProvider to null and assign the dataProvider from the variable.
If we find a better solution we just need to change one place.

When I need to refresh the DataGrid, I just need to call
myDataGrid.refresh() without knowing what's the current implementation of
it.


Carlos Rovira  escreveu no dia sexta, 11/09/2020
à(s) 09:45:

> Hi Hugo,
>
> about your PR, I was trying to ask you about these lines of code and what
> reason made you choose to code it that way.
> I can merge it as is and see if I can improve that refresh and dataprovider
> reassign, but the objective is that you see if you can improve and/or I
> understand if there's some issue in the underlying infrastructure, and help
> you to improve your knowledge.
>
>
> El jue., 10 sept. 2020 a las 17:35, Hugo Ferreira ( >)
> escribió:
>
> > Hi Carlos,
> >
> > I don't see your comment in PR !
> >
> > Carlos Rovira  escreveu no dia quinta,
> 10/09/2020
> > à(s) 16:24:
> >
> > > Hi Hugo,
> > >
> > > maybe you didn't notice but I commented in your PR :)
> > >
> > > https://github.com/apache/royale-asjs/pull/908
> > >
> > >
> > > El jue., 10 sept. 2020 a las 13:26, Hugo Ferreira (<
> > hferreira...@gmail.com
> > > >)
> > > escribió:
> > >
> > > > Thank you.
> > > > As I progress on my development and face other missing pices that I
> > need
> > > I
> > > > will do the same, now that I know who works a bead and how to build
> > one.
> > > >
> > > > Carlos Rovira  escreveu no dia quinta,
> > > 10/09/2020
> > > > à(s) 11:47:
> > > >
> > > > > Thanks for the PR Hugo. Good one for your first! :)
> > > > > I started a review and commented on some things there.
> > > > > We also have a rule to wait 24h at least for others to review and
> for
> > > any
> > > > > comment or issue we can notice
> > > > > thanks
> > > > >
> > > > > El jue., 10 sept. 2020 a las 11:18, Hugo Ferreira (<
> > > > hferreira...@gmail.com
> > > > > >)
> > > > > escribió:
> > > > >
> > > > > > Hi Carlos,
> > > > > >
> > > > > > Done.
> > > > > >
> > > > > > Carlos Rovira  escreveu no dia quinta,
> > > > > 10/09/2020
> > > > > > à(s) 08:58:
> > > > > >
> > > > > > > Hi Hugo,
> > > > > > >
> > > > > > > could you please create a PR (Pull Request)?
> > > > > > > That way we get better with how Apache works and you get
> credits
> > > for
> > > > > your
> > > > > > > work, Royale gets better collaboration numbers and the process
> is
> > > in
> > > > > > > general better to track if you continue contributing in the
> > future
> > > > > (what
> > > > > > I
> > > > > > > expect). Also, doing good contributions, having a good
> knowledge
> > of
> > > > > > Royale
> > > > > > > and aligning with community guidelines of respect and teamwork
> > > could
> > > > > make
> > > > > > > you eligible to be a committer in the future and add this
> > directly.
> > > > > > >
> > > > > > > Thanks!
> > > > > > >
> > > > > > >
> > > > > > > El jue., 10 sept. 2020 a las 1:01, Hugo Ferreira (<
> > > > > > hferreira...@gmail.com
> > > > > > > >)
> > > > > > > escribió:
> > > > > > >
> > > > > > > > Hi Carlos,
> > > > > > > >
> > > > > > > > Here the full class source code.
> > > > > > > > Tested and working.
> > > > > > > > You can add to Royale source code tree.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> 
> > > > > > > > //
> > > > > > > > // Licensed to the Apache Software Foundation (ASF) under one
> > or
> > > > more
> > > > > > > > // contributor license agreements. See the NOTICE file
> > > distributed
> > > > > with
> > > > > > > > // this work for additional information regarding copyright
> > > > > ownership.
> > > > > > > > // The ASF licenses this file to You under the Apache
> License,
> > > > > Version
> > > > > > > 2.0
> > > > > > > > // (the "License"); you may not use this file except in
> > > compliance
> > > > > with
> > > > > > > > // the License. You may obtain a copy of the License at
> > > > > > > > //
> > > > > > > > // http://www.apache.org/licenses/LICENSE-2.0
> > > > > > > > //
> > > > > > > > // Unless required by applicable law or agreed to in writing,
> > > > > software
> > > > > > > > // distributed under the License is distributed on an "AS IS"
> > > > BASIS,
> > > > > > > > // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
> express
> > > or
> > > > > > > implied.
> > > > > > > > // See the License for the specific language governing
> > > permissions
> > > > > and
> > > > > > > > // limitations 

Re: Sort Jewel DataGrid by column click

2020-09-11 Thread Carlos Rovira
Hi Hugo,

about your PR, I was trying to ask you about these lines of code and what
reason made you choose to code it that way.
I can merge it as is and see if I can improve that refresh and dataprovider
reassign, but the objective is that you see if you can improve and/or I
understand if there's some issue in the underlying infrastructure, and help
you to improve your knowledge.


El jue., 10 sept. 2020 a las 17:35, Hugo Ferreira ()
escribió:

> Hi Carlos,
>
> I don't see your comment in PR !
>
> Carlos Rovira  escreveu no dia quinta, 10/09/2020
> à(s) 16:24:
>
> > Hi Hugo,
> >
> > maybe you didn't notice but I commented in your PR :)
> >
> > https://github.com/apache/royale-asjs/pull/908
> >
> >
> > El jue., 10 sept. 2020 a las 13:26, Hugo Ferreira (<
> hferreira...@gmail.com
> > >)
> > escribió:
> >
> > > Thank you.
> > > As I progress on my development and face other missing pices that I
> need
> > I
> > > will do the same, now that I know who works a bead and how to build
> one.
> > >
> > > Carlos Rovira  escreveu no dia quinta,
> > 10/09/2020
> > > à(s) 11:47:
> > >
> > > > Thanks for the PR Hugo. Good one for your first! :)
> > > > I started a review and commented on some things there.
> > > > We also have a rule to wait 24h at least for others to review and for
> > any
> > > > comment or issue we can notice
> > > > thanks
> > > >
> > > > El jue., 10 sept. 2020 a las 11:18, Hugo Ferreira (<
> > > hferreira...@gmail.com
> > > > >)
> > > > escribió:
> > > >
> > > > > Hi Carlos,
> > > > >
> > > > > Done.
> > > > >
> > > > > Carlos Rovira  escreveu no dia quinta,
> > > > 10/09/2020
> > > > > à(s) 08:58:
> > > > >
> > > > > > Hi Hugo,
> > > > > >
> > > > > > could you please create a PR (Pull Request)?
> > > > > > That way we get better with how Apache works and you get credits
> > for
> > > > your
> > > > > > work, Royale gets better collaboration numbers and the process is
> > in
> > > > > > general better to track if you continue contributing in the
> future
> > > > (what
> > > > > I
> > > > > > expect). Also, doing good contributions, having a good knowledge
> of
> > > > > Royale
> > > > > > and aligning with community guidelines of respect and teamwork
> > could
> > > > make
> > > > > > you eligible to be a committer in the future and add this
> directly.
> > > > > >
> > > > > > Thanks!
> > > > > >
> > > > > >
> > > > > > El jue., 10 sept. 2020 a las 1:01, Hugo Ferreira (<
> > > > > hferreira...@gmail.com
> > > > > > >)
> > > > > > escribió:
> > > > > >
> > > > > > > Hi Carlos,
> > > > > > >
> > > > > > > Here the full class source code.
> > > > > > > Tested and working.
> > > > > > > You can add to Royale source code tree.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> 
> > > > > > > //
> > > > > > > // Licensed to the Apache Software Foundation (ASF) under one
> or
> > > more
> > > > > > > // contributor license agreements. See the NOTICE file
> > distributed
> > > > with
> > > > > > > // this work for additional information regarding copyright
> > > > ownership.
> > > > > > > // The ASF licenses this file to You under the Apache License,
> > > > Version
> > > > > > 2.0
> > > > > > > // (the "License"); you may not use this file except in
> > compliance
> > > > with
> > > > > > > // the License. You may obtain a copy of the License at
> > > > > > > //
> > > > > > > // http://www.apache.org/licenses/LICENSE-2.0
> > > > > > > //
> > > > > > > // Unless required by applicable law or agreed to in writing,
> > > > software
> > > > > > > // distributed under the License is distributed on an "AS IS"
> > > BASIS,
> > > > > > > // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
> > or
> > > > > > implied.
> > > > > > > // See the License for the specific language governing
> > permissions
> > > > and
> > > > > > > // limitations under the License.
> > > > > > > //
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> 
> > > > > > > package org.apache.royale.jewel.beads.controls.datagrid
> > > > > > > {
> > > > > > > import org.apache.royale.core.IBead;
> > > > > > > import org.apache.royale.jewel.DataGrid;
> > > > > > > import org.apache.royale.core.IStrand;
> > > > > > > import org.apache.royale.jewel.beads.views.DataGridView;
> > > > > > > import org.apache.royale.events.MouseEvent;
> > > > > > > import
> > > > > org.apache.royale.jewel.supportClasses.datagrid.DataGridButtonBar;
> > > > > > > import org.apache.royale.collections.Sort;
> > > > > > > import org.apache.royale.collections.SortField;
> > > > > > > import org.apache.royale.collections.IArrayListView;
> > > > > > > import
> > > > org.apache.royale.jewel.supportClasses.datagrid.DataGridColumn;
> > > > > > >
> > > > > > > public class DataGridSortBead implements IBead
> > > > > > > {
> > > > > > > public function 

Re: Open ByteArray as file

2020-09-11 Thread Carlos Rovira
Great Hugo, more PRs are very welcome! :)

El vie., 11 sept. 2020 a las 10:34, Hugo Ferreira ()
escribió:

> Thank you.
> Yesterday, I checked several approaches along the time to solve this issue.
>
> I see an unfinished file reference save and an effort to emulate 100% the
> Flex/Flash behaviour.
>
> Before go to sleep, I put filereference working on my side.
> I will do a PR as soon I can but my intention is not to 100% emulate Flash
> behaviour. About files, I don't think that is the way to go and many
> already tryed it.
>
> Alex Harui  escreveu no dia sexta, 11/09/2020
> à(s) 06:42:
>
> > This Github issue may be helpful.
> > https://github.com/apache/royale-asjs/issues/838
> >
> > HTH,
> > -Alex
> >
> > On 9/10/20, 5:10 AM, "Harbs"  wrote:
> >
> > Agreed. I’m not sure when I’m going top have the time for that
> though.
> >
> > > On Sep 10, 2020, at 1:11 PM, Carlos Rovira <
> carlosrov...@apache.org>
> > wrote:
> > >
> > > Hi,
> > >
> > > Since Royale is about encapsulating code that works through
> > platforms (and
> > > in JS cross browser), I think it would be good to have a bead for
> > that at
> > > Core or Basic level.
> > >
> > > just my 2...
> > >
> > > El jue., 10 sept. 2020 a las 11:45, Harbs ( >)
> > > escribió:
> > >
> > >> There is also a FileReference implementation in the mx package.
> > >> mx has a DownloadButton which does what you want.
> > >>
> > >> You also might want to know about URLUtils.
> > >>
> > >> HTH,
> > >> Harbs
> > >>
> > >>> On Sep 10, 2020, at 12:33 PM, Hugo Ferreira <
> > hferreira...@gmail.com>
> > >> wrote:
> > >>>
> > >>> Sometimes it easy to forget that Royale at the end of the day IS
> > JS :)
> > >>>
> > >>> Piotr Zarzycki  escreveu no dia
> quinta,
> > >>> 10/09/2020 à(s) 05:53:
> > >>>
> >  Hi Hugo,
> > 
> >  I will just shot you with the tip - How would you do that in
> pure
> > JS ?
> > >> - I
> >  think this maybe your answer ;)
> > 
> >  Thanks,
> >  Piotr
> > 
> >  czw., 10 wrz 2020 o 01:59 Hugo Ferreira  >
> >  napisał(a):
> > 
> > > I have a ByteArray to comes from the server side.
> > > I would like to open now the file.
> > > With Flex (AIR), I use FileStream.
> > > What's the equivalent here.
> > > I would like to open the file.
> > > If not possible (for security reasons since we are on web
> > space), at
> >  least
> > > download the file, so the user can click on it.
> > >
> > > What is the Royale approach/code, for that ?
> > >
> > 
> > 
> >  --
> > 
> >  Piotr Zarzycki
> > 
> > >>
> > >>
> > >
> > > --
> > > Carlos Rovira
> > >
> >
> https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fabout.me%2Fcarlosroviradata=02%7C01%7Caharui%40adobe.com%7C8be5f3298e014f69e40708d855827aab%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637353366181662817sdata=wkqL7PEbVzcTI%2BqVWKCzTzxFj6vPLO6BDXt5CkmHqkE%3Dreserved=0
> >
> >
> >
>


-- 
Carlos Rovira
http://about.me/carlosrovira


Re: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Carlos Rovira
Hi

@Maria Jose, my presentations are already planned (one for TodoMVC and
other for TDJ) and I'm trying to shrink since there's many things to cover
already. I think Echarts could be part of the other three depending on how
those talks are already planned or not.

@Chris, yes, I know that. What I was asking is about WHO is going to
present the other 3 talks. I don't know if we have presenters for the rest
of the talks. I was proposing to share it on social media to let people
know, but I can't do it if I don't know anything about it, even how it's
presenting.

Thanks!


El vie., 11 sept. 2020 a las 9:30, Christofer Dutz (<
christofer.d...@c-ware.de>) escribió:

> @Carlos,
>
> if you want to see the other Royale talks:
>
> https://www.apachecon.com/acah2020/tracks/royale.html
>
> ... And there's my talk on home automation with Apache, which will also
> touch Royale ;-)
>
> Chris
>
> Am 11.09.20, 01:05 schrieb "Maria Jose Esteve" :
>
> Hello
>
> I do not know if we will get to do much more, than there is currently,
> in the example of integration with Apache Echarts, in a week, maybe the
> application of creating and manipulating Themes...
>
> Do you think it would be nice to show part of the sample project in
> one of YOUR presentations?  (I couldn't do it)
>
> Hiedra.
>
> -Mensaje original-
> De: Carlos Rovira 
> Enviado el: jueves, 10 de septiembre de 2020 16:06
> Para: Apache Royale Development 
> Asunto: Re: ApacheCon @Home Tracks for Royale published
>
> Hi all,
>
> as I'm preparing the slides of my 2 talks, I still don't have clear
> information about the other 3 ones.
> Who are the folks going to prepare and present it? Also, I can tweet
> about it too... as I know more about it.
>
> thanks
>
> El vie., 14 ago. 2020 a las 15:27, Andrew Wetmore (<
> cottag...@gmail.com>)
> escribió:
>
> > That's excellent. We can refer to that talk from the Royale-track
> talks.
> >
> > <
> >
> https://www.avast.com/sig-email?utm_medium=email_source=link_c
> > ampaign=sig-email_content=webmail
> > >
> > Virus-free.
> > www.avast.com
> > <
> >
> https://www.avast.com/sig-email?utm_medium=email_source=link_c
> > ampaign=sig-email_content=webmail
> > >
> > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> >
> > On Fri, Aug 14, 2020 at 5:14 AM Christofer Dutz
> >  > >
> > wrote:
> >
> > > Hi folks,
> > >
> > > And there's one rouge talk in the IoT track also featuring Royale:
> > > My "Home automation with Apache" talk will be based on a frontend
> > > built with Royale.
> > >
> > > Chris
> > >
> > >
> > > Am 14.08.20, 09:46 schrieb "Carlos Rovira" <
> carlosrov...@apache.org>:
> > >
> > > Hi,
> > >
> > > just saw that ApacheCon tracks for Royale are setup. Check
> this:
> > >
> > > https://www.apachecon.com/acah2020/tracks/royale.html
> > >
> > >
> > > --
> > > Carlos Rovira
> > > http://about.me/carlosrovira
> > >
> > >
> >
> > --
> > Andrew Wetmore
> >
> > http://cottage14.blogspot.com/
> >
>
>
> --
> Carlos Rovira
> http://about.me/carlosrovira
>
>

-- 
Carlos Rovira
http://about.me/carlosrovira


Re: Open ByteArray as file

2020-09-11 Thread Hugo Ferreira
Thank you.
Yesterday, I checked several approaches along the time to solve this issue.

I see an unfinished file reference save and an effort to emulate 100% the
Flex/Flash behaviour.

Before go to sleep, I put filereference working on my side.
I will do a PR as soon I can but my intention is not to 100% emulate Flash
behaviour. About files, I don't think that is the way to go and many
already tryed it.

Alex Harui  escreveu no dia sexta, 11/09/2020
à(s) 06:42:

> This Github issue may be helpful.
> https://github.com/apache/royale-asjs/issues/838
>
> HTH,
> -Alex
>
> On 9/10/20, 5:10 AM, "Harbs"  wrote:
>
> Agreed. I’m not sure when I’m going top have the time for that though.
>
> > On Sep 10, 2020, at 1:11 PM, Carlos Rovira 
> wrote:
> >
> > Hi,
> >
> > Since Royale is about encapsulating code that works through
> platforms (and
> > in JS cross browser), I think it would be good to have a bead for
> that at
> > Core or Basic level.
> >
> > just my 2...
> >
> > El jue., 10 sept. 2020 a las 11:45, Harbs ()
> > escribió:
> >
> >> There is also a FileReference implementation in the mx package.
> >> mx has a DownloadButton which does what you want.
> >>
> >> You also might want to know about URLUtils.
> >>
> >> HTH,
> >> Harbs
> >>
> >>> On Sep 10, 2020, at 12:33 PM, Hugo Ferreira <
> hferreira...@gmail.com>
> >> wrote:
> >>>
> >>> Sometimes it easy to forget that Royale at the end of the day IS
> JS :)
> >>>
> >>> Piotr Zarzycki  escreveu no dia quinta,
> >>> 10/09/2020 à(s) 05:53:
> >>>
>  Hi Hugo,
> 
>  I will just shot you with the tip - How would you do that in pure
> JS ?
> >> - I
>  think this maybe your answer ;)
> 
>  Thanks,
>  Piotr
> 
>  czw., 10 wrz 2020 o 01:59 Hugo Ferreira 
>  napisał(a):
> 
> > I have a ByteArray to comes from the server side.
> > I would like to open now the file.
> > With Flex (AIR), I use FileStream.
> > What's the equivalent here.
> > I would like to open the file.
> > If not possible (for security reasons since we are on web
> space), at
>  least
> > download the file, so the user can click on it.
> >
> > What is the Royale approach/code, for that ?
> >
> 
> 
>  --
> 
>  Piotr Zarzycki
> 
> >>
> >>
> >
> > --
> > Carlos Rovira
> >
> https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fabout.me%2Fcarlosroviradata=02%7C01%7Caharui%40adobe.com%7C8be5f3298e014f69e40708d855827aab%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637353366181662817sdata=wkqL7PEbVzcTI%2BqVWKCzTzxFj6vPLO6BDXt5CkmHqkE%3Dreserved=0
>
>
>


Re: ApacheCon @Home Tracks for Royale published

2020-09-11 Thread Christofer Dutz
@Carlos,

if you want to see the other Royale talks:

https://www.apachecon.com/acah2020/tracks/royale.html

... And there's my talk on home automation with Apache, which will also touch 
Royale ;-)

Chris

Am 11.09.20, 01:05 schrieb "Maria Jose Esteve" :

Hello

I do not know if we will get to do much more, than there is currently, in 
the example of integration with Apache Echarts, in a week, maybe the 
application of creating and manipulating Themes...

Do you think it would be nice to show part of the sample project in one of 
YOUR presentations?  (I couldn't do it)

Hiedra.

-Mensaje original-
De: Carlos Rovira  
Enviado el: jueves, 10 de septiembre de 2020 16:06
Para: Apache Royale Development 
Asunto: Re: ApacheCon @Home Tracks for Royale published

Hi all,

as I'm preparing the slides of my 2 talks, I still don't have clear 
information about the other 3 ones.
Who are the folks going to prepare and present it? Also, I can tweet about 
it too... as I know more about it.

thanks

El vie., 14 ago. 2020 a las 15:27, Andrew Wetmore ()
escribió:

> That's excellent. We can refer to that talk from the Royale-track talks.
>
> <
> https://www.avast.com/sig-email?utm_medium=email_source=link_c
> ampaign=sig-email_content=webmail
> >
> Virus-free.
> www.avast.com
> <
> https://www.avast.com/sig-email?utm_medium=email_source=link_c
> ampaign=sig-email_content=webmail
> >
> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
> On Fri, Aug 14, 2020 at 5:14 AM Christofer Dutz 
>  >
> wrote:
>
> > Hi folks,
> >
> > And there's one rouge talk in the IoT track also featuring Royale:
> > My "Home automation with Apache" talk will be based on a frontend 
> > built with Royale.
> >
> > Chris
> >
> >
> > Am 14.08.20, 09:46 schrieb "Carlos Rovira" :
> >
> > Hi,
> >
> > just saw that ApacheCon tracks for Royale are setup. Check this:
> >
> > https://www.apachecon.com/acah2020/tracks/royale.html
> >
> >
> > --
> > Carlos Rovira
> > http://about.me/carlosrovira
> >
> >
>
> --
> Andrew Wetmore
>
> http://cottage14.blogspot.com/
>


--
Carlos Rovira
http://about.me/carlosrovira