Re: Release version acting different to debug version

2017-11-27 Thread Harbs
> On Nov 27, 2017, at 10:39 AM, Justin Mclean wrote: > > Hi, > >> No. Same problem. The problem is with the setting of the properties. When >> you then get the properties, the properties are renamed and undefined. > > So the issue with the properties of any class

Re: Release version acting different to debug version

2017-11-26 Thread Harbs
Yes. This is something I discussed in my “migrating” talk. It’s a limitation with the Google compiler. Any untyped objects can be renamed. There are two ways to deal with this. The first is to use bracket notation on untyped objects. The second is to only use typed objects. Harbs > On Nov

Re: How do you set the default button in a set of buttons?

2017-11-26 Thread Harbs
Why do you want to set the focus? Wouldn’t different styling be more appropriate? > On Nov 27, 2017, at 2:17 AM, Justin Mclean wrote: > > Hi, > > Often when you have a set of buttons you want to make one be the default. > > Say for instance you had: > > > >

Re: converting components.

2017-11-13 Thread Harbs
, but depending on what you are doing, the native moue events might or might not be good enough. We ended up using SVG components extensively and we had to write our own MouseManager class (due to browser bugs) to calculate all mouse events using matrix math. HTH, Harbs > On Nov 14, 2017, at 6:29

Re: Using XML Docs

2018-05-06 Thread Harbs
AS3 XML and E4X are supported. Make sure do declare XML and XMLList types for compilation to work correctly. The FlexJS E4X notes apply to Royale: https://cwiki.apache.org/confluence/display/FLEX/FlexJS+FAQ#FlexJSFAQ-DoesFlexJSSupportE4X?

Re: New blog example post ready to review "Using View States to show or hide content"

2018-06-06 Thread Harbs
this: This is something which did not work well in Flex because non-visible elements still took up space. Thanks, Harbs > On Jun 6, 2018, at 3:32 PM, Carlos Rovira wrote: > > Hi Andrew, > > hope you can get some time to review this: > > https://royale.codeoscopic.com/usin

Re: Work on Emulation

2018-06-13 Thread Harbs
on-from-an-iframe <https://stackoverflow.com/questions/2161388/calling-a-parent-window-function-from-an-iframe> HTH, Harbs > in Apache Royale. > > Or Emulated Classes should be added for navigateToURL & ExternalInterface ? > > Thanks, > Alina Kazi > > From: A

Re: Work on Emulation

2018-06-13 Thread Harbs
> I don’t know of anything already wrapped. Sorry, there’s already BrowserUtils.executeJS(). I don’t think that will work very well in an iframe though... > On Jun 13, 2018, at 3:42 PM, Harbs wrote: > > >> On Jun 13, 2018, at 11:52 AM, Alina Kazi > <mailto:ali

Re: Unit testing frameworks

2018-05-03 Thread Harbs
I started work on a Testing package, but I did not get very far. It’s one of the things I really want to spend time on… Harbs > On May 3, 2018, at 7:22 PM, Carlos Rovira <carlosrov...@apache.org> wrote: > > Hi Chris, > > I think is flexunit. This is still something I mus

Re: Convert s:DateChooser to js:DateChooser

2017-10-26 Thread Harbs
The DateChooser has both months and years. Presumably, the change event should apply to the specific date selected (although the event is actually called “selectedDateChanged”), while the “month" and “year” events are display events (hence the names displayMonthChanged and displayYearChanged).

Re: Live PrintUI Demo

2017-10-26 Thread Harbs
much more work with inferior results. I was a bit nervous when we started on the journey, but I’m glad we did. :-) I’m really excited to be able to show this. It’s definitely proof-positive that Royale can be used for very complex applications. ;-) Harbs > On Oct 27, 2017, at 12:33 AM, Peter

Re: Need help with states

2017-12-26 Thread Harbs
My bad. I searched asjs and I had my settings to only search .as files… Harbs > On Dec 26, 2017, at 10:09 AM, Alex Harui <aha...@adobe.com> wrote: > > Which component list? It looks like it is in the basic-manifest in Core.swc. > > -Alex > > From: H

Re: Last few problems converting browser project to JS

2018-03-08 Thread Harbs
Just add the following to your main class: public var parameters:Object; Also: Make sure you use bracket access (i.e. this.parameters[“anything”] instead of this.parameters.anything) to the parameters var to prevent renaming problems when it’s minified. HTH, Harbs > On Mar 8, 2018, at 3

Re: Last few problems converting browser project to JS

2018-03-08 Thread Harbs
ou to use > string IDs that wouldn't be renamed. > > We want to try to package just about any solution as a bead so others > don't have to repeat the same set of steps. > > My 2 cents, > -Alex > > On 3/8/18, 1:50 AM, "Harbs" <harbs.li...@gmail.com > &

Re: Last few problems converting browser project to JS

2018-03-07 Thread Harbs
> On Mar 7, 2018, at 5:35 AM, doug777 wrote: > > I have almost finished converting my old Flex browser app to FlexJS (js > only), but I have 4 problems left that I can't find a way to convert. Can > anyone help to suggest a way to go with these items? > > 1.

Re: Static inheritance

2018-04-24 Thread Harbs
Not sure. Less boilerplate code? > On Apr 24, 2018, at 9:41 AM, Alex Harui <aha...@adobe.com> wrote: > > What are the advantages of static over the singleton pattern? > > -Alex > > From: Harbs <harbs.li...@gmail.com> > Reply-To: "users@royale.apa

Re: Static inheritance

2018-04-23 Thread Harbs
Nope. It does not work in AS3 targeting JS either because it’s a ES6-only feature. > On Apr 23, 2018, at 11:28 PM, Carlos Rovira <carlosrov...@apache.org> wrote: > > Ok, so that works in JS, but will work as well in SWF? > > 2018-04-23 20:25 GMT+02:00 Harbs &

Re: Static inheritance

2018-04-23 Thread Harbs
ES6 features. I’ve learned quite a bit about ES6 just by reading his code… ;-) Harbs > On Apr 23, 2018, at 8:25 PM, Alex Harui <aha...@adobe.com> wrote: > > Harbs, > > Can you provide a link to more info on how 'this' works in statics? MDN > makes it sound like

Re: Royale Build Issue

2018-03-27 Thread Harbs
FYI, while you are working on framework classes, you can build specific swcs. If for example, you make changes to Basic, you only need to rebuild Basic and none of the other swcs. That will drastically reduce build time while you are working on framework code. HTH, Harbs > On Mar 27, 2

Re: Royale Build Issue

2018-03-27 Thread Harbs
Yes. > On Mar 27, 2018, at 2:39 PM, Alina Kazi <alina.k...@d-bz.com> wrote: > > > If I am not wrong, any folder that contain build.xml can be rebuild > separately in framework. Right? > Thanks, > Alina > > > -Original Message- > From: Harbs

Re: How To Find mouseX/Y

2018-02-26 Thread Harbs
and calculating which element is below the mouse. Harbs > On Feb 26, 2018, at 5:41 PM, Alex Harui <aha...@adobe.com> wrote: > > Packaging up some code as a bead that listens to the mouse, remembers the > last event and can then be asked for the position in a component would be > a

Re: Why SWF support

2018-11-13 Thread Harbs
), it will be much easier to implement. 3. There are those who will want an AIR target. HTH, Harbs > On Nov 13, 2018, at 12:32 PM, hferreira wrote: > > Why Apache Royale supports compile to SWF to support target Flash/AIR ? > Whats the point ? > Sorry if this question was answer before but

Re: Evaluate Apache Royale Emulation

2018-11-13 Thread Harbs
The assignment of topLevelApplication was commented out in Application. I just added it back. Harbs > On Nov 13, 2018, at 3:29 PM, hferreira wrote: > > The bug occurs inside Alert.js > >var /** @type {mx.managers.ISystemManager} */ sm = > org.apache.royale

Re: Test of posting from an unsubscribed email account

2018-11-13 Thread Harbs
I think just me. Do you want to be added? ;-) > On Nov 13, 2018, at 7:35 PM, OmPrakash Muppirala wrote: > > > > On Mon, Nov 12, 2018, 4:38 PM Alex Harui wrote: > Yeah, I checked the subscriber list and didn’t see it, but that’s really > puzzling to me. Your email

Re: Test of posting from an unsubscribed email account

2018-11-13 Thread Harbs
OK. Now I need to find the UI for adding moderators. I saw it recently, but I can’t seem to find it now… I guess I need to ask for help. > On Nov 13, 2018, at 8:22 PM, OmPrakash Muppirala wrote: > > > > On Tue, Nov 13, 2018, 9:48 AM Harbs <mailto:harbs.li...@gmail.com

Re: Test of posting from an unsubscribed email account

2018-11-14 Thread Harbs
It looks like you’re a moderator for dev@ and private@ but not users@ https://whimsy.apache.org/roster/committee/royale I’ll ask INFRA to add you to users as well. . > On Nov 13, 2018, at 8:22 PM, OmPrakash Muppirala wrote: > > > > On Tue, Nov 13, 2018, 9:48 AM Harbs &

Re: Jewel ComboBox responsive demo

2018-09-03 Thread Harbs
Very cool! :-) Harbs > On Sep 3, 2018, at 1:36 AM, Carlos Rovira wrote: > > Hi, > > just tweet about the new Jewel ComboBox responsive capabilities: > > https://twitter.com/ApacheRoyale/status/1036380099447275525 > <https://twitter.com/ApacheRoyale/status/1036380

Re: How to use FlexGlobals.topLevelApplication.parameters? Alternatives?

2019-01-23 Thread Harbs
You don’t pass parameters into start. The parameters are inferred from the location. You can add to the parameters like this: var myApp = new App(); myApp.parameters.foo = “baz”; //etc. myApp.start(); Harbs > On Jan 23, 2019, at 8:53 PM, Carlos Rovira wrote: > > So I don't u

Re: Linkage problem for asjs compiler

2018-12-14 Thread Harbs
Are you using the remove-circulars compiler option? > On Dec 14, 2018, at 10:24 AM, Alex Harui wrote: > > OK. > > Please post a link to the entire output of the compiler including, if > possible, the command-line you used. I won’t have time to look at it right > away as I am at the end of

Re: Where is the creationComplete in jewel ?

2018-11-17 Thread Harbs
Applications have “initialize” and “applicationComplete”. Components have “initComplete”. > On Nov 17, 2018, at 1:02 PM, hferreira wrote: > > Code). > It is normal ? > > > > -- > Sent from: http://apache-royale-users.20374.n8.nabble.com/

Re: Moonshine IDE 1.15.0 Released!

2018-09-14 Thread Harbs
Cool! Keep up the great work! Harbs > On Sep 14, 2018, at 12:51 PM, Piotr Zarzycki > wrote: > > Apache Royale Community, > > Moonshine 1.15.0 arrived! > > You can download it from our website http://moonshine-ide.com/ > <http://moonshine-ide.com/> an

Re: royale-asjs can not build.

2019-02-09 Thread Harbs
;mailto:serkan....@likyateknoloji.com>> wrote: > Thanks harbs, it is really hard to decide to compile all tree repos or the > one I need :) > > Android için Outlook <https://aka.ms/ghei36>'u edinin > > > > > On Sat, Feb 9, 2019 at 9:11 PM +0300, "

Re: How to use FlexGlobals.topLevelApplication.parameters? Alternatives?

2019-01-24 Thread Harbs
os Rovira wrote: > > Thanks Alex and Harbs > > I'll try as Harbs says and will not change Jewel Application > > El mié., 23 ene. 2019 a las 20:09, Alex Harui ( <mailto:aha...@adobe.com>>) escribió: > > > Are you sure you want to hide the startup options f

Re: How to use FlexGlobals.topLevelApplication.parameters? Alternatives?

2019-01-24 Thread Harbs
I hear you, but It’s going to be exposed in the source no matter what you do. FWIW, my apps are loaded in an iframe, so it’s only in the source and not in the browser bar. HTH, Harbs > On Jan 24, 2019, at 11:56 AM, Carlos Rovira wrote: > > Hi Harbs, > > for our case, this

Re: VerifyError: Error #1053: Illegal override of objectHasSortField

2019-06-06 Thread Harbs
I’m confused. Is this a Flex question, or a Royale question? Harbs > On Jun 6, 2019, at 11:58 PM, Ramazan Ergüder Bekrek > wrote: > > Does anyone knows what is going on here ? > > > 31.05.2019, 16:52, "Ramazan Ergüder Bekrek" : > Greetings e

Re: EventDispatcher.js:73 Uncaught TypeError: cls is not a constructor

2019-10-02 Thread Harbs
should catch these errors at compile-time, but someone has to work on that… ;-) https://github.com/apache/royale-compiler/issues/96 <https://github.com/apache/royale-compiler/issues/96> HTH, Harbs > On Sep 23, 2019, at 12:27 PM, Serkan Taş > wrote: > > I tried rem

Re: Welcome Andrew Wetmore to Apache Royale's PMC

2019-10-04 Thread Harbs
Welcome! I'm thrilled with all you’ve done for Royale! :-) Harbs > On Oct 3, 2019, at 8:55 PM, OmPrakash Muppirala wrote: > > It is with great pleasure that I announce that the Apache Royale PMC members > have voted in Andrew Wetmore to the PMC. Please join us in w

Re: DataGridExample build with VS Code

2019-11-14 Thread Harbs
Why are you using main\royale at all? All your folders can reside directly in src. Harbs > On Nov 14, 2019, at 4:11 PM, Takeshita Shoichiro wrote: > > Carlos, thanks. I've already tried it. Unfortunately, not work. > > If I move assets folder under \royale, it worked. (I

Re: moonshine

2019-11-05 Thread Harbs
Piotr, FYI: There’s something odd with your email. For some reason your email responses do not come threaded with the original in my email client. Harbs > On Nov 5, 2019, at 8:13 AM, Piotr Zarzycki wrote: > > Hi Mandeep, > > Please raise an issue for that on our GitHub. We

Re: com.google.code.flexiframe

2019-12-16 Thread Harbs
low-same-origin"; If you need more extensive communication, take a look at postMessage: https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage <https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage> HTH, Harbs > On Dec 17, 2019, at 6:51 AM, Greg Dove wr

Re: com.google.code.flexiframe

2019-12-17 Thread Harbs
Try changing js:WebBrowser to j:WebBrowser. The prefix needs the namespace you used for “j”. > On Dec 17, 2019, at 2:59 PM, Takeshita Shoichiro wrote: > > Greg and Harbs, thanks. > > As I do not fully understand the Royale markup at moment. Unfortunately, the > fol

Re: com.google.code.flexiframe

2019-12-17 Thread Harbs
Sure. Why not? > On Dec 17, 2019, at 10:19 PM, Andrew Wetmore wrote: > > Harbs, can I turn this into a tutorial for the Royale blog? > > On Tue, Dec 17, 2019 at 3:58 PM Harbs <mailto:harbs.li...@gmail.com>> wrote: > Try changing js:WebBrowser to j:WebBro

Re: IDE for Royale

2019-10-15 Thread Harbs
Here is the repo for Jude’s Radii8 project: https://github.com/velara3/Radii8 He did a lot of work there. I hope there’s some way to make it worth his while to complete Royale support in it. > On Oct 15, 2019, at 8:56 AM, Alex Harui wrote: > > FWIW, past

Re: IDE for Royale

2019-10-24 Thread Harbs
Jude, that plugin is pretty cool. Harbs > On Oct 23, 2019, at 10:06 PM, QA wrote: > > Hi Paul, > > I've been attempting to solve the DV problem for while with some projects. I > designed a DV that exported to MXML and I had some success and in some areas >

Welcome Greg Dove to Apache Royale's PMC

2019-10-29 Thread Harbs
It is with great pleasure that I announce that the Apache Royale PMC members have voted in Greg Dove to the PMC. Please join us in welcoming him. This is a recognition of Greg's great work in helping out with Apache Royale's compiler and architecture among other things. Regards, Harbs

Re: Cairngorm framework

2019-10-12 Thread Harbs
Here: https://sourceforge.net/adobe/cairngorm/source/GetSourceCode/ <https://sourceforge.net/adobe/cairngorm/source/GetSourceCode/> > On Oct 12, 2019, at 9:41 PM, Harbs wrote: > > That link appears to be the documentation. > > This seems to be the actual fra

Re: Cairngorm framework

2019-10-12 Thread Harbs
That link appears to be the documentation. This seems to be the actual framework, but all links on this project seem to be broken. https://sourceforge.net/adobe/cairngorm/wiki/Downloads/ > On Oct 12, 2019, at 9:38 AM, Alex Harui wrote:

Re: Does TDJ work well for you?

2020-01-25 Thread Harbs
I missed this discussion. Sorry for the late reply. Sorry about that. I committed a fix for that. Harbs > On Jan 23, 2020, at 8:57 PM, Carlos Rovira wrote: > > Hi Harbs, > > Jewel ComboBox uses ComboBoxPopup for the popup. This is a StyleUIBase that > composes a L

Re: Public Web Site powered by Royale

2020-01-30 Thread Harbs
/accordion/ > On Jan 30, 2020, at 4:10 PM, Takeshita Shoichiro wrote: > > Piotr, thanks. PureMVC's site would be interested by existing Flex users. > Jewel's one is very interesting. > > Harbs, thanks. I've already visited this site. It's amazing. Is it > possible to s

Re: Public Web Site powered by Royale

2020-01-30 Thread Harbs
Not using MX/Spark but: https://marketinginflection.com/printui-demo.php > On Jan 30, 2020, at 3:39 PM, Takeshita Shoichiro wrote: > > Are there any public web sites using Royale? > > And these sites are preferred to use MX/Spark emulation. >

Re: Coexistence of namespaces royale/basic and mx/spark

2020-01-09 Thread Harbs
Typo there. Should have been: xmlns:js = "library://ns.apache.org/r <http://ns.apache.org/flex/mx>oyale/basic” > On Jan 9, 2020, at 10:53 AM, Harbs wrote: > > xmlns:mx = "library://ns.apache.org/r > <http://ns.apache.org/flex/mx>oyale/basic”

Re: Coexistence of namespaces royale/basic and mx/spark

2020-01-09 Thread Harbs
You can use both basic and mx. There is some issues with using some components with the same class names and styling, but that should not efffect the use of just include xmlns:mx = "library://ns.apache.org/r oyale/basic” and you should be good to go. > On Jan 9,

Re: Event, target null, currentTarget undefined

2019-12-26 Thread Harbs
The event target is set when the event is dispatched. You can’t save the target in the constructor because it does not exist yet. If you are not getting the target in an event handler, please provide some more code to show the issue. HTH, Harbs > On Dec 26, 2019, at 12:57 PM, Maria J

Re: Reminder !

2020-05-27 Thread Harbs
I just noticed this email now. Sorry for missing it! AFAIK, we never added events to XML and I don’t think it’ll work. Does Flash XML dispatch events? > On Mar 19, 2020, at 2:35 PM, Serkan Taş wrote: > > > > 18.03.2020 11:30 tarihinde Serkan Taş yazdı: >> Wh

Re: Reminder !

2020-05-27 Thread Harbs
space. > > > > But I think it might be overkill for Serkan’s scenario. > > > > -Alex > > > > From: Harbs mailto:harbs.li...@gmail.com>> > Reply-To: "users@royale.apache.org <mailto:users@royale.apache.org>" > mailto:users@roya

Re: No Event.cancel event present for org.apache.royale.Events.event

2020-06-30 Thread Harbs
flash.filters.GlowFilter to org.apache.royale.svg.DropShadowFilter should be more or a less drop-in replacement. HTH, Harbs > On Jun 30, 2020, at 12:06 AM, Anil Guntur - agun...@us.ibm.com > wrote: > > Is that something one can add to the event Class > > Also any alternative to flash.

Re: UIComponents set visible positioner.style.visibility = null not working wir IE11

2020-07-07 Thread Harbs
As soon as I get my act together… ;-) Harbs > On Jul 7, 2020, at 5:21 PM, tranquiliste wrote: > > I confirm that it is corrected in the nightly build. > > Do you know when 0.9.8 is expected to be released? > > Nicolas > > > > - > Nicolas > --

Re: First time using Apache Royale

2020-06-24 Thread Harbs
Spectrum as a model on how to do that. HTH, Harbs > On Jun 24, 2020, at 7:04 AM, Anil Guntur - agun...@us.ibm.com > wrote: > > Hello, > We have a big Flex project with action script (compiled to a SWF). Looking at > ways to convert to a JS/HTML version. Came across Apache Ro

Re: Add Beads

2020-06-15 Thread Harbs
simply add it in the class constructor after super(). HTH, Harbs > On Jun 15, 2020, at 2:40 PM, Maria Jose Esteve wrote: > > Hello, > I am extending a component and need to add a default bead to it. (This is a > jewel control but I imagine it will be similar in basic or mx

Re: Add Beads

2020-06-15 Thread Harbs
; putting a breakpoint in the “set strand” method of ComboBoxTextPrompt? > > From: Maria Jose Esteve <mailto:mjest...@iest.com> > Sent: Monday, June 15, 2020 3:04 PM > To: users@royale.apache.org <mailto:users@royale.apache.org> > Subject: RE: Add Beads > > Hi Harbs,

Re: Need Migration Help

2020-06-25 Thread Harbs
Search and replace for imports which have a direct replacement is a good way to do it. That should help get rid of a lot of errors. Harbs > On Jun 25, 2020, at 7:34 AM, Sohail Abdul Khaliq wrote: > > i have a large scale Application in Flex and i now want to migrate from Flex &g

Re: Need Migration Help

2020-06-25 Thread Harbs
Is it or ? You need to use fx:Script. > On Jun 25, 2020, at 11:13 AM, Sohail Abdul Khaliq wrote: > > Hi > I am having issue with some mx imports > > import mx.resources.IResourceManager; > import mx.resources.ResourceManager; > import mx.rpc.AsyncToken; > import mx.rpc.IResponder; > import

Re: Need Migration Help

2020-06-25 Thread Harbs
the way. We’re here to help. Harbs > On Jun 25, 2020, at 9:59 AM, Harbs wrote: > > Search and replace for imports which have a direct replacement is a good way > to do it. > > That should help get rid of a lot of errors. > > Harbs > >> On Jun 25, 2020

Re: XSLT for royal jewel libs

2020-06-25 Thread Harbs
gives the following code intelligence in VS Code: We should be using Inspectable tags more religiously and I wonder if the compiler might be able to give warnings when values other than the accepted ones are used. Harbs > On Jun 25, 2020, at 2:08 PM, Yishay Weiss wrote: > > Hi Ani

Re: Add Beads

2020-06-15 Thread Harbs
Cool. There might be beads which assume beadsAdded is only dispatched once, so Yishay’s solution is probably better. > On Jun 15, 2020, at 6:20 PM, Maria Jose Esteve wrote: > > Harbs, also works: > > > override public function ad

Re: hscroll bar for adg hides the content

2020-06-12 Thread Harbs
There is probably a scroll bead which is adding the overflow:auto. > On Jun 12, 2020, at 10:32 AM, serkan wrote: > > I added the declaration in to the main application mxml. > > > .MXAdvancedDataGridItemRenderer { > overflow:none; > } > > > > > > > >

Re: css rule @keyframes

2020-07-16 Thread Harbs
The way I work around CSS compiler bugs until they are fixed is by including a separate CSS file that I reference in the app HTML. I include the following in the template HTML: > On Jul 16, 2020, at 1:01 AM, Brian Raymes wrote: > > As a workaround, you can add any style that doesn’t’ work

Re: Charts

2020-07-28 Thread Harbs
https://royale.apache.org/using-external-javascript-libraries-in-apache-royale/ Here’s a reference for other frameworks which integrated into echarts: https://echarts.apache.org/en/download-extension.html#framework > On Jul 27, 2020, at 8:20 PM, Maria Jose Esteve wrote: > > Piotr, where

Re: CSS & JS file versioning

2021-01-12 Thread Harbs
I think the question was how to automatically insert the build number into the html (i.e.?v=12345678) > On Jan 12, 2021, at 1:41 PM, Carlos Rovira wrote: > > Hi, > > I think you need "htmlTemplate" compiler option. This is how to use in Maven: > >

Re: CSS & JS file versioning

2021-01-12 Thread Harbs
wrote: > > Indeed, it was more about whether the "html-template" supports own > placeholders and versioning per se. > > > Gesendet: Dienstag, 12. Januar 2021 um 13:14 Uhr > Von: "Harbs" > An: users@royale.apache.org > Betreff: Re: CSS &

Re: New to Royale

2020-11-07 Thread Harbs
Just CSS. All the code is in the components. > On Nov 6, 2020, at 1:37 PM, Carlos Rovira wrote: > > It's just CSS or JS too? > MDL had both > > El vie., 6 nov. 2020 a las 12:21, Harbs ( <mailto:harbs.li...@gmail.com>>) escribió: > Yup. The reason I made Spectrum

Re: New to Royale

2020-11-05 Thread Harbs
It depends on which component set you use. I think Jewel has some responsive behavior, but I’m not familiar. Spectrum has responsive behavior built into the CSS, but the components only take minimal advantage of that. https://github.com/unhurdle/spectrum-royale

Re: New to Royale

2020-11-06 Thread Harbs
Possibly, but I’m pretty sure Spectrum has components that Jewel is missing. ;-) Right now, we’re pretty much finished with a Tag Field component. We’re also working on keyboard navigation on lists and menus, etc. Just some friendly competition to keep us both on our toes… ;-p > On Nov 5,

Re: New to Royale

2020-11-06 Thread Harbs
on is already in Jewel > List, but we still don't have a Menu component. > > > > El vie., 6 nov. 2020 a las 9:44, Harbs ( <mailto:harbs.li...@gmail.com>>) escribió: > Possibly, but I’m pretty sure Spectrum has components that Jewel is missing. > ;-) > >

Re: Popup and Databinding

2021-01-17 Thread Harbs
What’s the base for your MXML file? > On Jan 17, 2021, at 11:44 PM, wkoch wrote: > > I'm sure I'm missing a bead somewhere... > > I am making a popup programatically. In that popup I have things that are > supposed to bind. I have a datagrid that is populated from a database call > and a

Re: Popup and Databinding

2021-01-18 Thread Harbs
ContainerDataBinding might be more appropriate. > On Jan 18, 2021, at 4:14 PM, wkoch wrote: > > I found the issue. Was missing the ItemRendererDataBinding bead in the popup > code. > > > > -- > Sent from: http://apache-royale-users.20374.n8.nabble.com/

Re: [EXTERNAL] CSS & JS file versioning

2021-01-23 Thread Harbs
That’s not necessary. All browsers have a checkbox to disable cache while devtools are open. HTH, Harbs > On Jan 23, 2021, at 1:58 AM, Brian Raymes wrote: > > FYI, I have expanded upon this for my debug version as well: > > This adds a timestamp to ever every js ref

Re: AS3 & MXML for VSCode and Mac M1

2021-02-10 Thread Harbs
I got an M1 machine for testing, but I have not yet tried to use VS Code for Royale with it. I’ll likely have an opportunity to do that sometime in the next week. Harbs > On Feb 10, 2021, at 11:37 AM, Isabelle LOYER wrote: > > Hi, > > Could you share your experien

Re: Strange runtime error With AMF and Moonshine

2021-04-06 Thread Harbs
What’s the bug? Was it using classes you did or didn’t import? > On Apr 6, 2021, at 12:03 PM, David Slotemaker de Bruine > wrote: > > Hi All, > > I have found the culprit. It has nothing to do with Moonshine, but seems to > be a "Feature" of the Compiler. I am not sure where I should file

Re: CSS variables error

2021-03-17 Thread Harbs
The compiler needs to understand the css in order to compile it. Any features that the compiler doesn’t understand need to be added to the compiler. Definitely add this as a Github issue. To use unsupported CSS features, you need a CSS file which is not run through the compiler. What I do is

Re: CSS variables error

2021-03-17 Thread Harbs
> It seems that the solution was to create an external css that would not go > into the compilation process but this does not work here. Wait. Missed this line. Why wouldn’t it work? > On Mar 17, 2021, at 1:08 AM, Maria Jose Esteve wrote: > > Hello, > I am trying to use "variables" in my

Re: CSS variables error

2021-03-17 Thread Harbs
Anything in here: https://www.w3.org/Style/CSS/specs.en.html > On Mar 17, 2021, at 2:34 PM, Maria Jose Esteve wrote: > > Hahahaha, Do you notice that I am learning EVERYTHING? , I'm going to find > out what “plain vanilla” is and I'll tell you. > > Thanks Harbs > H

Re: CSS variables error

2021-03-17 Thread Harbs
/1999/xhtml>"; > @namespace j "library://ns.apache.org/royale/jewel > "; > > .global { > --pricolordark: #2196F3; > --pricolorlight: #BBDEFA; > } > > .jewel.topappbar .topBarAppHeader { > background: val(--pricolordark); >

Re: WebBrowser vs IFrame

2021-02-23 Thread Harbs
uot;postMessage"]("foobaz",'*’); and myIframe.element.contentWindow.addEventListener(“message”,myOtherHandler); Although presumably, you’d be in the inner iframe code and it would just be “window”. HTH, Harbs > On Feb 22, 2021, at 9:14 PM, Bilbosax wrote: > > @Harbs, thanks for res

Re: WebBrowser vs IFrame

2021-02-22 Thread Harbs
s posted to. Messages must be content which can be serialized. You can also optionally pass a Transferable[2], but I never have actually tried that. HTH, Harbs [1]https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage [2]https://developer.mozilla.org/en-US/docs/Web/API/Transfer

Re: Royale with Material design lite

2021-09-13 Thread Harbs
https://github.com/unhurdle/spectrum-royale https://unhurdle.github.io/spectrum-royale/ > On Sep 13, 2021, at 10:22 AM, Piotr Zarzycki > wrote: > > Harbs I believe you have some links and examples - you did that > implementation - I'm just mentioning that cause it could be

Re: Royale with Material design lite

2021-09-13 Thread Harbs
It’s not built by or published to Maven. You can include a SWC in any project. > On Sep 13, 2021, at 11:41 AM, Roman Isitua wrote: > > Thanks for sharing Harbs. > This is another impressive ui library. > > > Just one observation. It appears not to have support for mave

Re: Errors building stand alone actionscript library

2021-09-03 Thread Harbs
You’re missing Collections (and likely others) from your pom. > On Sep 2, 2021, at 11:58 PM, Roman Isitua wrote: > >

Re: Royale with Material design lite

2021-09-29 Thread Harbs
Regards, > > Roman. > > On Mon, Sep 13, 2021 at 10:51 AM Roman Isitua <mailto:romanisi...@gmail.com>> wrote: > Okay. > > > On Mon, 13 Sep 2021, 10:31 Harbs, <mailto:harbs.li...@gmail.com>> wrote: > It’s not built by or published to Maven. You can

Re: Royale with Material design lite

2021-09-29 Thread Harbs
; >> On 29 Sep 2021, at 09:27, Roman Isitua > <mailto:romanisi...@gmail.com>> wrote: >> >> Interesting. Thanks for this information. I will definitely investigate >> this. >> >> >> >> On Wed, 29 Sep 2021, 08:43 Harbs, > <mailto:h

Re: Introducing asformat

2021-09-22 Thread Harbs
Totally agree! B-) > On Sep 22, 2021, at 8:54 PM, Andrew Wetmore wrote: > > totally cool. > > On Wed, Sep 22, 2021 at 2:43 PM Josh Tynjala > wrote: > Hey everyone, > > I recently created asformat, which is a formatter for ActionScript code. It > is based on

Re: Load time is very slow

2021-12-27 Thread Harbs
If you could try out the feature/ROYALE_INTERFACE_INFO branch and let me know if that helps, it would be very helpful. You need to pull that branch both for royale-compiler and royale-asjs. > On Dec 27, 2021, at 2:04 PM, Roman Isitua wrote: > > So I definitely need to figure out how to get

Re: Load time is very slow

2021-12-27 Thread Harbs
> On Dec 27, 2021, at 2:04 PM, Roman Isitua wrote: > > - compile times. With modules as I am adding new features to the app, compile > times will not be affected too much. > This is very useful for my small team. We are not using the latest > workstation with bleeding edge processors. My

Re: Load time is very slow

2021-12-27 Thread Harbs
The build instructions should be the same. checkout the branch in both royale-compiler and royale-asjs and rebuild the same way you normally do. This git command should check out the branch. git checkout feature/ROYALE_INTERFACE_INFO If it doesn’t work, details on what happens should help us

Re: Load time is very slow

2021-12-27 Thread Harbs
Yes. I made some changes which I’m hoping might help for modules. > On Dec 27, 2021, at 3:06 PM, Roman Isitua wrote: > > What feature are you referring to here ? Minification of modules ? Please > clarify. > > > On Mon, Dec 27, 2021 at 1:44 PM Harbs <mailto:harbs

Re: Load time is very slow

2021-12-27 Thread Harbs
That doesn’t sound right. Are you sure you’re compiling debug and not release? That sounds like release build times. > On Dec 27, 2021, at 3:31 PM, Roman Isitua wrote: > > Wow ! You are using a workstation with a bleeding edge processor. > > I just compiled my app now. It took 44 seconds.

Re: Load time is very slow

2021-12-27 Thread Harbs
> Compile times of debug builds should be very fast. What compile times are you > seeing? > > What I mean is that, if we develop the entire application using only one > module, as we add new functionality, compile times will continue to increase. > With the modular approach, functionality

Re: Compiling Modules (was Re: Load time is very slow)

2021-12-30 Thread Harbs
End.js:248) > at HTMLAnchorElement.iy (FrontEnd.js:125) > at HTMLAnchorElement.b (FrontEnd.js:121) > 3Overview.js:56 Uncaught TypeError: Cannot read properties of undefined > (reading 'prototype') > at P (Overview.js:56) > at SG.convert (FrontEnd.js:904) &g

Re: Load time is very slow

2021-12-28 Thread Harbs
Yes. This is one of the things I’d like to see happen in 2022. It should even be possible to automatically load changed JS files in the browser without reloading the whole page (in some cases). > On Dec 28, 2021, at 9:13 AM, Yishay Weiss wrote: > > > That said, I’d like for us to add

Re: Load time is very slow

2021-12-27 Thread Harbs
Four minutes for debug? Wow. Are you sure it’s only JS and debug? That seems insane. > On Dec 28, 2021, at 9:13 AM, Yishay Weiss wrote: > > We have a client now whose devs are seeing four minutes for each iteration, > on top of which they have other startup tasks that can take a few minutes.

  1   2   >