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-16 Thread Alex Harui
Yes, if you want to emulate Cairngorm, get the source and build it with Flex so you know you have all of the pieces. Then, back up the source in case you need to go back and start replacing the import flash.*.* with Royale imports. For example: Import flash.events.EventDispatcher; Would be

Re: Cairngorm framework

2019-10-16 Thread Takeshita Shoichiro
Alex, I have a question re Cairngorm emulation? I think I need to put the Cairngorm source in the Royale project src folder. Then, what should I do? Thanks for your advice. 2019年10月14日(月) 16:47 Takeshita Shoichiro : > Carlos, thanks. > > I am very glad to hear that. > > Then, no hesitation

Re: Import royale-asis/examples folder to Eclipse

2019-10-16 Thread Takeshita Shoichiro
Carlos, thanks. Got it. 2019年10月17日(木) 0:57 Carlos Rovira : > That's exactly what we did :) > > We use IntelliJ for both Java and Flex, but now we use IntelliJ for Java > and VSCode/Moonshine for Royale. The main point was not change a single > line or config in the java server side and focus

Re: Import royale-asis/examples folder to Eclipse

2019-10-16 Thread Carlos Rovira
That's exactly what we did :) We use IntelliJ for both Java and Flex, but now we use IntelliJ for Java and VSCode/Moonshine for Royale. The main point was not change a single line or config in the java server side and focus just on Royale using the exact same API for server communication through

Re: Import royale-asis/examples folder to Eclipse

2019-10-16 Thread Takeshita Shoichiro
Carlos, thanks. Our Flex application uses BlazeDS. You mean, there will be no changes at the server side with Royale? If so, we can only focus on presentation layer. Will use VS code. 2019年10月16日(水) 23:01 Carlos Rovira : > Hi, > > notice that I give you the most easy way, but that take more

Re: Import royale-asis/examples folder to Eclipse

2019-10-16 Thread Carlos Rovira
Hi, notice that I give you the most easy way, but that take more time that just compile the few projects you want doing the same in its own folders, that should be just few seconds. About creating a project in Eclipse for BlazeDS. That's just a standard java web app (a WAR) and you can do it in

Re: Import royale-asis/examples folder to Eclipse

2019-10-16 Thread Takeshita Shoichiro
Carlos, thanks. I could compile by executing maven clean install at /royale-asis/example. Took 4 min. on my MacBook Pro. It seems the compilation requires released zip structure. It seems these examples cannot be imported into Eclipse as these are. I want to create a basic Royale project in

Re: Import royale-asis/examples folder to Eclipse

2019-10-16 Thread Carlos Rovira
Hi Takeshita, most easy way is just position on examples folder and run "mvn clean install" (optional add -DskipTests to avoid building with tests). This will build all examples in that subtree folder with maven. You'll get RemoteObjectAMFTest and SampleAmfWebApp build with maven and ready to be

Re: excludeFrom vs visible & includeInLayout

2019-10-16 Thread Alex Harui
Hi Serkan, I looked at this sample. The problem appears to be that the header appears at the bottom. In debugging the code, I noticed that the StatesWithTransitionsImpl is not in sync with the SimpleStatesImpl. Yishay added support for position==”first” to SimpleStatesImpl but apparently