Re: Changes in Getting Started documentation

2018-03-11 Thread leossmith
Awesome :) The easier it is to get started, the easier we will get some new people. -- Sent from: http://apache-royale-development.20373.n8.nabble.com/

Re: Changes in Getting Started documentation

2018-03-11 Thread Piotr Zarzycki
Hi Leo, Many Thanks for report this! Shot us with anything which you come it during work with Royale! Piotr 2018-03-11 13:01 GMT+01:00 leossmith : > Awesome :) The easier it is to get started, the easier we will get some new > people. > > > > -- > Sent from: http://apache-royale-development.203

Trying to remove "style" attribute set by Royale. First let's focus on style="display:block"

2018-03-11 Thread Carlos Rovira
Hi, coming back to this topic. I think is important, and that it deserves its own thread like I said in other one covering this and other topics. Current problem: In jewel button display is set to "inline-block", but since there's a default style, this make this assignment unused (appears strike

Re: Trying to remove "style" attribute set by Royale. First let's focus on style="display:block"

2018-03-11 Thread Harbs
Display:block is almost always the right choice. It’s set in the Layout bead. I don’t agree on “clean” HTML. The only reason to use css classes is to enable restyling (i.e. skinning) of an ap with different CSS sets. Otherwise, inline CSS is probably more efficient than css files. > On Mar 11,

Re: How to inject html with a theme class

2018-03-11 Thread Carlos Rovira
Hi Alex, I was looking at this problem and finaly get library.swf to be 6k and with info about JewelThemeFontInject but JewelExample fails the same way: [-load-config=/Users/carlosrovira/Dev/Royale/Source/royale-asjs/examples/royale/JewelExample/target/compile-app-config.xml, -js-output=/Users/ca

Re: How to inject html with a theme class

2018-03-11 Thread Carlos Rovira
btw, I attach the swfdump 2018-03-11 23:12 GMT+01:00 Carlos Rovira : > Hi Alex, > > I was looking at this problem and finaly get library.swf to be 6k and with > info about JewelThemeFontInject > but JewelExample fails the same way: > > [-load-config=/Users/carlosrovira/Dev/Royale/Source/royale-as

Re: Trying to remove "style" attribute set by Royale. First let's focus on style="display:block"

2018-03-11 Thread Carlos Rovira
Hi Harbs, but you are losing one important point here: When I try to override the value with CSS I can't since style is always take before my css. So my styles in my theme are not valid due to the styles in the framework. And more over, did you see only one example out there in any well-known ui f

Re: Trying to remove "style" attribute set by Royale. First let's focus on style="display:block"

2018-03-11 Thread Harbs
If you are trying to override the values, you probably need different beads. There’s no other well known framework which builds HTML from code. At best they stick pseudo-code inside HTML. That’s a huge difference between Royale and anything else. > On Mar 12, 2018, at 12:17 AM, Carlos Rovira w