Re: Cairngorm

2024-04-25 Thread Greg Dove
; > Mark, > > We can connect and see what is happening in the next few days. Meanwhile > try Development version of Moonshine and I will try add that swc into my > Hello world project. I saw link for download somewhere in this email chain. > > Thanks, > Piotr > > wt.,

Re: Cairngorm

2024-04-22 Thread Greg Dove
h your IDE for referencing the library, but Piotr knows more about that for Moonshine. I mostly do my builds with maven or ant from my IDE, so not much help I'm afraid. Regards, Greg On Tue, Apr 23, 2024 at 1:10 PM Greg Dove wrote: > Hi Mark, I've definitely used cairngorm 2 (what this is) in

Re: Cairngorm

2024-04-22 Thread Greg Dove
> crux or puremvc. > > Thanks > Mark > > On 04/22/2024 2:02 AM EDT Greg Dove wrote: > > > > replying to: > "Greg, > I looked at the Cairngorm source in git and it appears to be in spanish? > I attached an example. " > > Hi Mark, yes, the project code

Re: Cairngorm

2024-04-22 Thread Greg Dove
replying to: "Greg, I looked at the Cairngorm source in git and it appears to be in spanish? I attached an example. " Hi Mark, yes, the project code is in Spanish in that repo - the app that uses the Cairngorm swc has some Spanish coding, not the Cairngorm library swc itself. If you look in that

Re: Cairngorm

2024-04-21 Thread Greg Dove
p > Mark Hartnett > > On 04/21/2024 4:15 PM EDT Greg Dove wrote: > > > > Hi Mark, > > I seem to remember reading about why Adobe chose Cairngorm as the name for > that in the past, there was 'a reason' I think, but I can't remember it > now! > > Generall

Re: Cairngorm

2024-04-21 Thread Greg Dove
Hi Mark, I seem to remember reading about why Adobe chose Cairngorm as the name for that in the past, there was 'a reason' I think, but I can't remember it now! Generally, in porting work from Flex to Royale, the easiest route is to minimise changes to anything related to the business logic of

Re: UIComponent and transformation matrix

2022-10-02 Thread Greg Dove
Assuming the angle is in radians, you might be able to simply use: this.rotation = Math.round(angle * 180/Math.PI); otherwise you could try setting this.element.style.transform to a matrix string, something like: this.element.style.transform

Re: reading bytearray from php into actionscript

2022-06-06 Thread Greg Dove
I don't really understand what you mean by : "PHP won't print it after I return AMF3 encoded binary." However on the client (Royale) side, the toString method is the same as reading UTF encoded string from the BinaryData instance. The current version of mx.utils.ByteArray is not 'really' any

Re: [Non-DoD Source] Quick check on Linting tools for Apache Royale

2022-05-19 Thread Greg Dove
Mark, would you mind sharing what version of SonarQube you are using? Our experience is that a recent version (needed for java 17) does not seem to work for actionscript files, so we'd be keen to hear what version you are using. Thanks, Greg On Thu, May 19, 2022 at 8:18 AM Greg Dove wrote

Re: [Non-DoD Source] Quick check on Linting tools for Apache Royale

2022-05-18 Thread Greg Dove
on code and > rely on controllers/VO/utility in pure AS files to give you the most > benefit from it. > > -Mark K > > -----Original Message- > From: Greg Dove > Sent: Wednesday, May 18, 2022 00:51 > To: users@royale.apache.org > Cc: Apache Royale Development &g

Quick check on Linting tools for Apache Royale

2022-05-17 Thread Greg Dove
Hi everyone, It's been a while since I used any code quality tools with Apache Royale. I'm keen for some updated suggestions if you have any... to be clear: this is about the actionscript/css/mxml, not about the generated javascript. I worked on a project some years ago (when it was still

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

2022-01-12 Thread Greg Dove
Sounds great Alex! I will try to check it out early next week. I especially like this: "Another difference is that the new compiler strategy doesn’t use custom overrides of Closure Compiler passes which was fragile and will make it easier to upgrade to newer versions of Closure Compiler." I

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

2022-01-04 Thread Greg Dove
Alex, this is probably more a topic for dev list (and we can definitely continue it there if need be, I would have done so, but could not figure out how to link to *this* thread properly in the archives). When you originally worked on this, did you eliminate using the GCC approach to creating

Re: Release compilation does not work: maven modules and crux

2021-12-30 Thread Greg Dove
ocated in the modules [1] > of my library, are loaded correctly (crux) > > > > [1] I don't use modules like Roman, I use Maven modules and, like you, I > have a hierarchy of pom's > > > > Hiedra > > > > *De:* Greg Dove > *Enviado el:* jueves, 30 de d

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

2021-12-30 Thread Greg Dove
Sorry I have not been following these threads in detail because I have been (and am currently still) on vacation. AFAIK royale modules are not reliable in release mode. I don't know anyone who has had experience otherwise. I did try testing them some time ago and that was my experience, and I

Re: Gett started with Royale with Intellij

2021-12-10 Thread Greg Dove
Makes sense, Andrew, thanks! On Sat, Dec 11, 2021 at 11:20 AM Andrew Wetmore wrote: > Thanks. At the very least I want to change the page from "coming soon" to > an explanation that it is not as easy as, say, working with Moonshine. > > On Fri, Dec 10, 2021 at 5:

Re: Gett started with Royale with Intellij

2021-12-10 Thread Greg Dove
, but it will involve learning something 'new' because I am not familiar with Intellij plugin development. On Sat, Dec 11, 2021 at 2:43 AM Andrew Wetmore wrote: > @Greg Dove can I adapt what you wrote here for the > page on IntelliJ in the help docs? > > On Fri, Dec 10, 2021 at 1:22 AM Greg

Re: Gett started with Royale with Intellij

2021-12-09 Thread Greg Dove
Intellij does not officially support Royale at this point. Hopefully someone will get a chance to address that in time. But I do use it. You can get code completion and intellisense etc if you build with maven, but only if you include the FlexMojos dependency in your pom.xml. This is the way I

Re: Global data transfer objects in a crux app

2021-12-01 Thread Greg Dove
It is fair to say that Crux has not been tested with modules. But also current modules support is not yet reliable and needs additional work (community contributors are definitely welcome) - they might work for debug builds, but they are not currently a working solution for release builds. On

Re: [EXTERNAL] Configuring rpc end points in royale

2021-11-25 Thread Greg Dove
Slightly off topic (not nginx-related): I understand that you want this specific solution with nginx for the setup that you have, and maybe you don't need anything more than that. But I tend to work on lots of different client projects, and use a more general approach that works in all cases, just

Re: Crux - ItemRenderer

2021-11-20 Thread Greg Dove
I can't say for certain Maria, because it's been some time since I used Crux. Are your renderers in the main app, or are they in a popup? Crux may not work inside a popup, without some tweaking and tuning for JSStageEvents, iirc. Beyond that I think Crux is not particularly suitable for

Re: Apache royale update.

2021-10-11 Thread Greg Dove
Hi Mandeep. What do you mean by updates? I think royale-asjs (royale framework) has had around 1700 commits since May last year, and maybe about 270 commits in the compiler over the same timeframe. If you mean releases, then it is definitely true that there were not many releases during this

Re: Errors building stand alone actionscript library

2021-09-02 Thread Greg Dove
It does look like the dependencies are added, based on the earlier screenshot. But I think it makes sense to check with the latest release or snapshot as Piotr suggested. @yishay my guess is you are thinking about the -compiler.mxml.imports directive which is useful to configure in maven, and

Re: Uncaught TypeError: Cannot convert [object Object] to IBead

2021-08-12 Thread Greg Dove
I have also seen this in the past, where a bead did not implement IBead. A check was added to verify that in the addBead method but the error alone is not particularly helpful because of stringification. It could be that you are encountering a bead that was not updated to explicitly implement

Re: CRUX event not found

2021-03-12 Thread Greg Dove
Hi David, Is it working in debug build, but perhaps not in release? You might need to include a concrete reference to the class. If event.common.CommonEvent is not actually present in the build, then the reflective access to the class will fail. you may need to force a reference to the class in

Re: Jewel Label - Newline/Linebreak

2021-02-11 Thread Greg Dove
I don't know for sure, but there is a multiline property on Jewel Label, which is false by default. Did you try setting that true? On Fri, Feb 12, 2021 at 9:54 AM Bilbosax wrote: > I have a label that I need to put a linebreak in. I cant figure out how to > get a newline in my Jewel Label.

Re: How to minify mxroyale\HelloWorld .js file

2020-10-20 Thread Greg Dove
Hi Piotr, Emulation will always have more weight because, in addition to a reasonably 'heavy' (but very capable) framework, in js there is also emulation of certain flash player features that were not part of the flex framework itself but are not present in the browser. (such as emulation of

Re: [EXTERNAL] Re: How do I convert complex JSON to an ArrayList?

2020-09-29 Thread Greg Dove
Normally for ArrayList, all you have to do is var myArrayList:ArrayList = new ArrayList(mySourceArray); if daveservice.json.PROGRAMS is an Array, then presumably you could use that. But with untyped objects, you may have issues in release build with renaming if you also try to access the fields

Re: Height of mx panel title bar and headerHeight of AdvancedDataGrid

2020-09-29 Thread Greg Dove
For the Panel header/TitleBar, You might try overriding that in your local application css. I am not sure if it will always work, as some things in MXRoyale may be fixed (but I can't remember what all of them are) For mx, assuming: @namespace "library://ns.apache.org/royale/mx"; you could try

Re: Christofer Dutz added to Royale committers list

2020-09-04 Thread Greg Dove
Hey Chris, congratulations, it's really great to see you 'back' in an official capacity with Royale. I look forward to your ongoing contribution and to possible future collaborations. Cheers, Greg On Fri, Sep 4, 2020 at 9:42 PM Carlos Rovira wrote: > Hi all, > > just let you know that Chris

Re: HTTPService and POST

2020-07-29 Thread Greg Dove
gt; > El mié., 29 jul. 2020 a las 1:01, Greg Dove () > escribió: > >> >> >> The 'WARNING' is just a warning. It will not appear in a release build. >> It appears in this case of the HTTPService class because >> js-default-initializers is off by default in the framew

Re: HTTPService and POST

2020-07-28 Thread Greg Dove
E_CONSTANT' as a constant during the Crux reflection checks for a class that did not have js-default-initializers=true when it was compiled. That seems quite rare, so we could perhaps remove this warning. What does everyone think? On Wed, Jul 29, 2020 at 8:02 AM Carlos Rovira wrote: > Hi Harbs, >

Re: Embedded image class implementation

2020-07-01 Thread Greg Dove
Whenever I have ported embedded image data like this in the past, I always swapped the Class type to String type and used that value as an external runtime source for the image (i.e. it loads the image source via url instead of as embedded data). I am not sure what your question is related to,

Re: Is there a emulation available for flash.display.DisplayObject

2020-06-29 Thread Greg Dove
Re: > On another area, that I could not find documentation on is > Flash.utils.getQualifiedClassName. Is there an equivalent in royale > emulation You should find what you need in the Reflection library, under org.apache.royale.reflection.getQualifiedClassName Note that the describeType

Re: Emulation for flash.ui.ContextMenu and flash.ui.ContextMenuItem

2020-06-26 Thread Greg Dove
This is not yet done. I have intention to work on this at some point, but I cannot give a fixed timeframe yet. Of course we also welcome contributions from others who may be interested to help if you, or anyone else, are interested in contributing. If so please start a discussion on the dev

Re: Is there an equivalent Royale method or Package for "mx.graphics.ImageSnapshot;"

2020-06-25 Thread Greg Dove
Not emulation of that yet, as far as I know. At some level this requires the ability to draw DOM elements to a canvas element. There are some (at least one) native js libraries that do this, so it might be a case of having to wrap the API of one of those. From what I recall it is quite a bit more

Re: Cairngorm framework emulation

2020-06-25 Thread Greg Dove
I already ported this, but I have not yet released it on github or anywhere. You can download the ported Cairngorm code or the swcs from here; https://www.dropbox.com/sh/xk8aui9ghy30mid/x0LUpfjXEQWC221zAjTza?dl=0 On Fri, Jun 26, 2020 at 2:04 PM Aniket Chopade wrote: > Hi, > > Is

Re: hscroll bar for adg hides the content

2020-06-10 Thread Greg Dove
Just a quick note. I think that should probably be: overflow:hidden; instead of 'none' 'none' is an option for display, but I don't think for overflow. 'hidden' is sort of close to clipContent=true, I think the other options are scroll, auto and visible iirc On Wed, Jun 10, 2020 at 5:27 PM

Re: Reminder !

2020-05-27 Thread Greg Dove
Fyi I have made a start on this, and parts are working already locally. I think I can have something complete working by early next week. It is zero weight if never used (dead code elimination) On Thu, 28 May 2020, 04:17 Alex Harui, wrote: > I think it is a callback instead of an event. See

Re: Binding question/issue

2020-05-18 Thread Greg Dove
ublic class Ecran1Class extends View { public static const MAX_CHARS_NOM:int = 25; public function Ecran1Class() { super(); } } } Hope that helps. On Mon, May 18, 2020 at 6:22 PM Greg Dove wrote: > > I will try to look at this in the next few hours.

Re: Binding question/issue

2020-05-18 Thread Greg Dove
> > > > And the error stack disappears when I remove the [Bindable] but it doesn't > solve my issue as the > still shows an undefined value > > > > Nicolas > > > > Le lun. 18 mai 2020 à 07:32, Alex Harui a écrit : > > Interesting. I wonder if @Greg Dove

Re: About the label on button

2020-04-29 Thread Greg Dove
Please ignore that last email. I see you already created an issue - thanks! On Thu, Apr 30, 2020 at 4:22 PM Greg Dove wrote: > > Hi Serkan, > > For: > label="Select Filter" click="createAndShow();"/> > > The above doesn't seem right to me - whet

Re: About the label on button

2020-04-29 Thread Greg Dove
Hi Serkan, For: The above doesn't seem right to me - whether the label is from a plain text or from a resource string. Why? width is set in pixels. But statuFilterButton.label.length is simply the number of chars in the String. So for the value 'Select Filter' it is assigning a width of 13px

Re: TypeError: Error #1088: The markup in the document following the root element must be well-formed.

2020-04-28 Thread Greg Dove
You might see this sort of error during first use of XML in some browsers via the debug console. Royale's XML class uses some native parsing support in the browser, but because different browsers report parsing errors in different ways, an initial parsing test is done with a known error to

Re: XML construction from resource throws exception : TypeError: Cannot read property 'setAttribute' of undefined

2020-04-28 Thread Greg Dove
in royale-compiler. On Tue, Apr 28, 2020 at 8:34 PM serkan wrote: > Hi Greg, > > It is just same as as in flex. > > Do you advise me to convert to XMLList ? > > Thanks, > Serkan > > 28.04.2020 08:56 tarihinde Greg Dove yazdı: > > > if it is XML, then it i

Re: XML construction from resource throws exception : TypeError: Cannot read property 'setAttribute' of undefined

2020-04-27 Thread Greg Dove
if it is XML, then it index [1] should not work. Only index [0] is valid for an XML instance; when you access [0] on an XML instance it returns the same instance. var xml:XML = trace(xml[1])//undefined trace(xml[0])//same as xml.toString() If it is an XMLList then it can have index values

Re: RTMFP with Apache Royale

2020-04-03 Thread Greg Dove
Do you want to write server code for RTMP ? or client code? The NodeJS lib looks like bindings to a native C++ codebase, but that codebase has been superseded by this one : https://github.com/MonaSolutions/MonaServer If it works in NodeJS it should be able to be supported as is via some sort of

Re: Cairngorm problem add remote object MXML.

2020-02-10 Thread Greg Dove
thoroughly and I will probably push to a git repo this coming weekend along with a working example, after I solved the issue with the ADDED and REMOVED events in the view helper support. On Mon, Feb 10, 2020 at 8:16 PM Greg Dove wrote: > > "I will try to make the full source of what I hav

Re: Cairngorm problem add remote object MXML.

2020-02-09 Thread Greg Dove
eed to use this myself for a client. On Sun, Feb 9, 2020 at 7:30 PM Greg Dove wrote: > > There is a css clash between Jewel and MXRoyale, and there might be more > issues at the child element level with different required base classes etc, > but I am not sure because I

Re: Cairngorm problem add remote object MXML.

2020-02-09 Thread Greg Dove
ree,... and if you thing > something is missing, talk so we can know there's a concrete need. > > > > Thanks > > > > Carlos > > > > > > El dom., 9 feb. 2020 a las 7:30, Greg Dove () > escribió: > > > There is a css clash between Jewel and MXR

Re: Cairngorm problem add remote object MXML.

2020-02-08 Thread Greg Dove
est in the project, but I see >> that they are not running the tests of the package "royale-compiler \ >> compiler-jx \ src \ test \ java \ org \ apache \ royale \ compiler \ >> internal \ codegen \ mxml \ ...", do you know why? >> >> >> >> Thanks. &

Re: Cairngorm problem add remote object MXML.

2020-02-06 Thread Greg Dove
, Feb 7, 2020 at 6:23 PM Greg Dove wrote: > > Alex, I tested this change today. There is more to it than that, it seems. > I will discuss details in dev list. > > > On Fri, Feb 7, 2020 at 8:40 AM Alex Harui wrote: > >> royale-compiler >> >> >> >&

Re: Cairngorm problem add remote object MXML.

2020-02-06 Thread Greg Dove
efficient and increase options. For people creating new > apps, for me there's no doubt, for people migrating, should contemplate the > Crux option if they continue evolving the app with new features... > > > > just my 2 :) > > > > Carlos > > > > > >

Re: Cairngorm problem add remote object MXML.

2020-02-05 Thread Greg Dove
plenty of time of emulation work. > > 2020年2月6日(木) 12:33 Greg Dove : > >> >> There does not appear to be a default property, like an array to put the >> 'children' in. I think it just creates the children as instances and makes >> sure they have id properties on the mxml-gener

Re: Cairngorm problem add remote object MXML.

2020-02-05 Thread Greg Dove
There does not appear to be a default property, like an array to put the 'children' in. I think it just creates the children as instances and makes sure they have id properties on the mxml-generated subclass that the instances are assigned to. The services are then identified and categorised by

Re: com.google.code.flexiframe

2019-12-17 Thread Greg Dove
gt;> browser.addEventListener("locationChanged",locationChanged); >>> (browser.element as HTMLIFrameElement).sandbox = >>> "allow-top-navigation allow-forms allow-scripts allow-same-origin"; >>> >>> If you need more extensive

Re: com.google.code.flexiframe

2019-12-16 Thread Greg Dove
' to the iframe, so it should be relatively easy. On Tue, Dec 17, 2019 at 4:06 PM Takeshita Shoichiro wrote: > Greg, thanks for a good news. Will try. > > 2019年12月17日(火) 12:04 Greg Dove : > >> That should be quite easy. >> >> Either it should be easy to do it direct

Re: com.google.code.flexiframe

2019-12-16 Thread Greg Dove
That should be quite easy. Either it should be easy to do it directly, or it looks like you could use: org.apache.royale.html.WebBrowser from Basic lib. I did not use this yet, but it seems like it should be what you need. On Tue, Dec 17, 2019 at 4:00 PM Takeshita Shoichiro wrote: > Hi, > >

Re: HTTPService call and result synchronization conflict

2019-11-09 Thread Greg Dove
e.body and it is not empty. The value I was > expecting from event.result is stored in body. > > Can we say that royale is behaves different from flex implementation ? > > Should I switch to body rather than result to get the data ? > > Thanks, > Serkan > > 9.11.2019 21:

Re: dropdownlist selectedItem.id to VO property

2019-11-08 Thread Greg Dove
reliability, I added coercion for the destination type into the VariableDefinition and AccessorDefinition setValue calls. That should provide the same behavior on both targets and things should start working now. On Sat, Nov 9, 2019 at 7:35 AM Greg Dove wrote: > > I'm just running a daily sdk bui

Re: dropdownlist selectedItem.id to VO property

2019-11-08 Thread Greg Dove
gt; So I wouldn’t be surprised if we have some code that should be using === > that isn’t and we’re going down the wrong code path for an empty string. > > > > -Alex > > > > *From: *Greg Dove > *Date: *Friday, November 8, 2019 at 9:55 AM > *To: *Alex Harui

Re: dropdownlist selectedItem.id to VO property

2019-11-08 Thread Greg Dove
)? It's a long shot, but it would be good to rule out something unusual like that. On Sat, Nov 9, 2019 at 6:11 AM Greg Dove wrote: > > I can't really be too sure about how things are working without seeing the > code, but I am assuming the following: a DDL (also called 'a

Re: dropdownlist selectedItem.id to VO property

2019-11-08 Thread Greg Dove
ization time. > > > > -Alex > > > > *From: *Greg Dove > *Date: *Friday, November 8, 2019 at 7:48 AM > *To: *Alex Harui > *Cc: *Apache Royale Development , " > users@royale.apache.org" > *Subject: *Re: dropdownlist selectedItem.id to VO property > > &g

Re: dropdownlist selectedItem.id to VO property

2019-11-08 Thread Greg Dove
? On Fri, 8 Nov 2019, 21:41 Alex Harui, wrote: > @Greg Dove Is there a test that an int with the value 0 is properly > serialized by AMF as 0 and not 0.0? > > -Alex > > On 11/7/19, 11:21 PM, "Alina Kazi" wrote: > > Hi Alex, > > Launch : > Module

Re: WARNING

2019-11-01 Thread Greg Dove
Yeah, I have also seen things like that, although not specifically with ResourceManager, I recall seeing it with instances of custom classes. To keep things as close as possible to the original code, the way I have addressed this in the past it is to convert the static const into a static getter,

Re: Cairngorm to Crux

2019-10-31 Thread Greg Dove
public var callBack:Function; > ^ > > c:\Workspace\CairngormToCrux\Porting\src\main\royale\jp\co\tak\event\LoginSignInEvent.as(11): > col: 3 隴ヲ蜻・: public var may not work in minified JS output. Use > getter/setter instead. > > public var vo:UserLoginVO

Re: Cairngorm to Crux

2019-10-31 Thread Greg Dove
col: 15 繧ィ繝ゥ繝シ : 縲桂p.co.tak.control.LoginController縲阪→縺・≧蜷榊 > 燕繧呈戟縺、縲∝、夜Κ縺九i陦ィ遉コ蜿ッ閭ス縺ェ螳夂セゥ縺御コ域悄縺帙★隕九▽縺九j縺セ縺励◆縲・ > > public class LoginController extends CommandMap > ^ > > 1.7805689 seconds > The terminal process terminated with exit code: 3 > > Term

Re: Cairngorm to Crux

2019-10-30 Thread Greg Dove
me tonight. > > 2019年10月31日(木) 8:41 Greg Dove : > >> >> Just another quick update, Takeshita. Please re-download the same zip >> from dropbox, which has been updated >> >> ' Using Visual Studio Code with ActionScript & MXML and Chrome Debugger >> exte

Re: Cairngorm to Crux

2019-10-30 Thread Greg Dove
re are some random values in those, but I expect you can substitute those with more realistic contents. On Thu, Oct 31, 2019 at 11:39 AM Greg Dove wrote: > > I was just investigating this also. The main MVC setup does not change, > and version 3 is more about enhancing general approaches

Re: Cairngorm to Crux

2019-10-30 Thread Greg Dove
see the result >> quickly. Using Visual Studio Code with ActionScript & MXML and Chrome >> Debugger extension is desirable. However, if it takes time, Maven is fine >> but I want to build one application. >> >> >> >> Appreciate your help. >> &

Re: Welcome Greg Dove to Apache Royale's PMC

2019-10-29 Thread Greg Dove
t 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 >> (On behalf of Apache Royale PMC) > >

Re: Cairngorm to Crux

2019-10-29 Thread Greg Dove
Hi Takeshita, My work day has just started. Sure, I will take a look at that later today and let you know. On Wed, 30 Oct 2019, 00:58 Takeshita Shoichiro, wrote: > > Royale.zip > > Greg, I'm providing a

Re: Printing current date/time header

2019-10-20 Thread Greg Dove
Alex, I'm guessing it is DateFormatter. I think that just returns empty string, or at least it did a few weeks ago when I tried to use it. On Mon, Oct 21, 2019 at 11:41 AM Alex Harui wrote: > I’d be interested to know why the Flex version did not work in Royale. > Did you debug into it? > >

Re: Cairngorm framework

2019-10-16 Thread Greg Dove
Fwiw I did also look at Cairngorm before I ended up using Crux. iirc I think there might be some ADDED and REMOVED events for the views support that probably need to be addressed if you are using the views support. Crux has a stage events emulator that does that for addedToStage/removedFromStage,

Re: Cairngorm framework

2019-10-13 Thread Greg Dove
that could be a viable option if you prefer). In most cases it's probably easier to switch to injection for the models and services. 1. https://swizframework.jira.com/wiki/spaces/SWIZ/pages/8126506/Support+for+the+Command+pattern On Sun, Oct 13, 2019 at 8:06 AM Greg Dove wrote: > &

Re: Cairngorm framework

2019-10-12 Thread Greg Dove
> 2. Is like ServiceLocator mxml required for Crux also? > 3. When sending/receiving to/from application server using RemoteObject, > how it is coded in Crux? > 4. Is there any short introduction to migrate from Cairngorm to Crux? > > Thanks. > > > > > > On Sa

Re: Cairngorm framework

2019-10-12 Thread Greg Dove
Fyi I recently ported a Cairngorm app to Royale replacing cairngorm with Apache Royale Crux (based on Swiz). That part was quite easy. That's another option to consider. On Sat, 12 Oct 2019, 19:38 Alex Harui, wrote: > It should be possible to emulate Cairngorm similar to how the MXRoyale and >

Re: Errors while compiling genereated js files

2019-08-31 Thread Greg Dove
kan > > 30.08.2019 19:00 tarihinde Greg Dove yazdı: > > Hi Serkan, > > Thanks for reporting that. > I just checked the source code for those. I think I can see what is > causing the issue after a recent change I made that fixed use of specific > namespaces. I will fix th

Re: Errors while compiling genereated js files

2019-08-30 Thread Greg Dove
, 03:43 Alex Harui, wrote: > That seems to be an XML/E4X issue. Harbs and Greg Dove might have a > better idea of what the right code should be. > > > > -Alex > > > > *From: *Serkan Taş > *Reply-To: *"users@royale.apache.org" > *Date: *Fri

Re: Migrate to Royale Apache

2019-08-06 Thread Greg Dove
It is inspired from the Java version of OSGi. > > I think that Apache Royale will put an end to the Javascript Fatigue > syndrome that everyone is suffering from. Just Google Javascript Fatigue > and why Electron is a bad choice. You will find plenty of real case > stories. > >

Re: Migrate to Royale Apache

2019-08-06 Thread Greg Dove
to make the desktop builds. I think this is quite common as an option. On Wed, Aug 7, 2019 at 10:18 AM Ramazan Ergüder Bekrek wrote: > I would never recommend Electron to anybody please be carefull lol. > > 22:07, August 6, 2019, Greg Dove : > > > Hi Isabelle. > > I

Re: Migrate to Royale Apache

2019-08-06 Thread Greg Dove
Hi Isabelle. I think the mentions about Android were correct but they may not answer your original question which is focused on desktop (Windows and Mac) builds. 'I need to convert my adobe air application (using Flex 4.6.0.) into 64 bit desktop application (Mac OS and Windows). ' 'Is it

Re: TourDeJewel on IE11

2019-04-05 Thread Greg Dove
I just pushed some fixes which should help for the next build of Tour de Jewel (I tested on IE11 locally and it looks good to me). I did a quick scan through the various examples, and I think Wizard navigation was the only thing that seemed obvious as needing a bit more attention. Carlos will

Re: BlazeDS ChanelSet login convert to Royale

2019-01-18 Thread Greg Dove
I pushed updates a short while ago. Note the caveats I mentioned earlier about ArrayCollection and ArrayList. Please let me know any feedback or issues. cheers Greg On Fri, Jan 18, 2019 at 5:56 PM Greg Dove wrote: > > fyi I will aim to get something in tomorrow. I'm short of time

Re: BlazeDS ChanelSet login convert to Royale

2019-01-17 Thread Greg Dove
ial > user to test something, check in what you have and make it general later. > > > > My 2 cents, > > -Alex > > > > *From: *Greg Dove > *Reply-To: *"users@royale.apache.org" > *Date: *Thursday, January 17, 2019 at 11:06 AM > *To: *"users@

Re: BlazeDS ChanelSet login convert to Royale

2019-01-17 Thread Greg Dove
Hi Alex, I can answer that. It's not customer approval. The changes are for AMFBinaryData mainly. But I put in a bunch of custom stuff - which represent an incomplete and custom IExternalizable support that only targets ArrayCollection/ArrayList for now. I need to remove that, and re-implement

Re: Work on Emulation

2018-11-22 Thread Greg Dove
Hi Serkan, I had some problems with this type of thing last month when I first set things up again on my latest machine. When I added in the JAVA_TOOL_OPTIONS it fixed things for me. Like Carlos, I have a 'daily build' script that I have in the parent folder of the royale repos. It is a windows