[Flashcoders] Platform Game with Motor2?
Does anyone have an example of a platform game made with motor2? The only thing I see on his page are demos, I would really like to see a real implementation. http://lab.polygonal.de/ Thanks, Elia ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
[Flashcoders] flash 9 resize hardware acceleration
hm there's a hardware acceleration for resize in flash 9, isn't it?is it just for video ?? What is the code ?? thank you L sorry I'm minimal out of battery.thx ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] component skinning issue
this was the function I modified (setSize values)... Must be similar in the component you are using... for a strange reason those params values are hard coded... really bad! override protected function configUI():void { super.configUI(); thumb = new BaseButton(); thumb.setSize(14, 20); thumb.autoRepeat = false; addChild(thumb); thumb.addEventListener(MouseEvent.MOUSE_DOWN,thumbPressHandler,false, 0,true); track = new BaseButton(); track.move(0, 0); track.setSize(80, 2); track.autoRepeat = false; track.useHandCursor = false; track.addEventListener(MouseEvent.CLICK,onTrackClick,false,0,true); addChildAt(track,0); } On Apr 11, 2008, at 8:55 AM, Allandt Bik-Elliott (Receptacle) wrote: hi - just a quickie here if i change the size of a button in a component skin in my library (UIScrollBar in this case) and then test the movie, the button is stretched back to it's original size - can someone tell me what i should be looking at to correct this please? thanks guys a ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] component skinning issue
wow - that's quite a wierd decision for adobe thanks for the response - that's really helpful best a On 11 Apr 2008, at 16:01, Andres Garcia wrote: this was the function I modified (setSize values)... Must be similar in the component you are using... for a strange reason those params values are hard coded... really bad! override protected function configUI():void { super.configUI(); thumb = new BaseButton(); thumb.setSize(14, 20); thumb.autoRepeat = false; addChild(thumb); thumb.addEventListener (MouseEvent.MOUSE_DOWN,thumbPressHandler,false,0,true); track = new BaseButton(); track.move(0, 0); track.setSize(80, 2); track.autoRepeat = false; track.useHandCursor = false; track.addEventListener(MouseEvent.CLICK,onTrackClick,false,0,true); addChildAt(track,0); } On Apr 11, 2008, at 8:55 AM, Allandt Bik-Elliott (Receptacle) wrote: hi - just a quickie here if i change the size of a button in a component skin in my library (UIScrollBar in this case) and then test the movie, the button is stretched back to it's original size - can someone tell me what i should be looking at to correct this please? thanks guys a ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] component skinning issue
Well you can subclass components rather than hacking them... Allandt Bik-Elliott (Receptacle) wrote: wow - that's quite a wierd decision for adobe thanks for the response - that's really helpful best a On 11 Apr 2008, at 16:01, Andres Garcia wrote: this was the function I modified (setSize values)... Must be similar in the component you are using... for a strange reason those params values are hard coded... really bad! override protected function configUI():void { super.configUI(); thumb = new BaseButton(); thumb.setSize(14, 20); thumb.autoRepeat = false; addChild(thumb); thumb.addEventListener(MouseEvent.MOUSE_DOWN,thumbPressHandler,false,0,true); track = new BaseButton(); track.move(0, 0); track.setSize(80, 2); track.autoRepeat = false; track.useHandCursor = false; track.addEventListener(MouseEvent.CLICK,onTrackClick,false,0,true); addChildAt(track,0); } On Apr 11, 2008, at 8:55 AM, Allandt Bik-Elliott (Receptacle) wrote: hi - just a quickie here if i change the size of a button in a component skin in my library (UIScrollBar in this case) and then test the movie, the button is stretched back to it's original size - can someone tell me what i should be looking at to correct this please? thanks guys a ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders -- Glen Pike 01326 218440 www.glenpike.co.uk http://www.glenpike.co.uk ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
RE: [Flashcoders] FP9 security update
Thanks... Is there a resource that explains all the possible tags that can be placed in a crossdomain.xml file? gregb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Muzak Sent: Thursday, April 10, 2008 4:27 PM To: Flash Coders List Subject: [Flashcoders] FP9 security update There's an FP update: 9,0,124,0 With some changes to: - allowScriptAccess - getURL(javascript:...) - cross domain policy files Read the article: http://www.adobe.com/devnet/flashplayer/articles/flash_player9_security_ update.html regards, Muzak ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] FP9 security update
http://www.crossdomainxml.org/ :P Gregory Boudreaux wrote: Thanks... Is there a resource that explains all the possible tags that can be placed in a crossdomain.xml file? gregb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Muzak Sent: Thursday, April 10, 2008 4:27 PM To: Flash Coders List Subject: [Flashcoders] FP9 security update There's an FP update: 9,0,124,0 With some changes to: - allowScriptAccess - getURL(javascript:...) - cross domain policy files Read the article: http://www.adobe.com/devnet/flashplayer/articles/flash_player9_security_ update.html regards, Muzak ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] component skinning issue
Yeap.. that's right... You can extend the component... but you need to rewrite the entire function... However the best option for me was to fix the component once so it gets the size from the skin sprite... and works for all my projects without extend each time and hard code the setSize in the override function: package com.hoorray { import fl.controls.Slider; public class SliderExtend extends Slider { public function SliderExtend() { super(); } protected override function configUI():void{ //... } } } On Apr 11, 2008, at 10:36 AM, Glen Pike wrote: Well you can subclass components rather than hacking them... Allandt Bik-Elliott (Receptacle) wrote: wow - that's quite a wierd decision for adobe thanks for the response - that's really helpful best a On 11 Apr 2008, at 16:01, Andres Garcia wrote: this was the function I modified (setSize values)... Must be similar in the component you are using... for a strange reason those params values are hard coded... really bad! override protected function configUI():void { super.configUI(); thumb = new BaseButton(); thumb.setSize(14, 20); thumb.autoRepeat = false; addChild(thumb); thumb .addEventListener(MouseEvent.MOUSE_DOWN,thumbPressHandler,false, 0,true); track = new BaseButton(); track.move(0, 0); track.setSize(80, 2); track.autoRepeat = false; track.useHandCursor = false; track.addEventListener(MouseEvent.CLICK,onTrackClick,false,0,true); addChildAt(track,0); } On Apr 11, 2008, at 8:55 AM, Allandt Bik-Elliott (Receptacle) wrote: hi - just a quickie here if i change the size of a button in a component skin in my library (UIScrollBar in this case) and then test the movie, the button is stretched back to it's original size - can someone tell me what i should be looking at to correct this please? thanks guys a ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders -- Glen Pike 01326 218440 www.glenpike.co.uk http://www.glenpike.co.uk ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] FP9 security update
Nothing beats a well chosen domain name ;) Actually, everything you are allowed to do will be specified in here: http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd On Fri, Apr 11, 2008 at 1:39 PM, Zeh Fernando [EMAIL PROTECTED] wrote: http://www.crossdomainxml.org/ :P Gregory Boudreaux wrote: Thanks... Is there a resource that explains all the possible tags that can be placed in a crossdomain.xml file? gregb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Muzak Sent: Thursday, April 10, 2008 4:27 PM To: Flash Coders List Subject: [Flashcoders] FP9 security update There's an FP update: 9,0,124,0 With some changes to: - allowScriptAccess - getURL(javascript:...) - cross domain policy files Read the article: http://www.adobe.com/devnet/flashplayer/articles/flash_player9_security_ update.html regards, Muzak ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
RE: [Flashcoders] FP9 security update
Thanks! I just updated my flash player and everything still works with my LMS... but I use a pretty basic xml file. I want to make sure I understand everything in case I run into some issues in the future. gregb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wagner Amaral Sent: Friday, April 11, 2008 12:29 PM To: Flash Coders List Subject: Re: [Flashcoders] FP9 security update Nothing beats a well chosen domain name ;) Actually, everything you are allowed to do will be specified in here: http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd On Fri, Apr 11, 2008 at 1:39 PM, Zeh Fernando [EMAIL PROTECTED] wrote: http://www.crossdomainxml.org/ :P Gregory Boudreaux wrote: Thanks... Is there a resource that explains all the possible tags that can be placed in a crossdomain.xml file? gregb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Muzak Sent: Thursday, April 10, 2008 4:27 PM To: Flash Coders List Subject: [Flashcoders] FP9 security update There's an FP update: 9,0,124,0 With some changes to: - allowScriptAccess - getURL(javascript:...) - cross domain policy files Read the article: http://www.adobe.com/devnet/flashplayer/articles/flash_player9_security_ update.html regards, Muzak ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
[Flashcoders] A question about localConnection
I would like to place a SWF in a web page on a server, and have localConnection work with a SWF on the desktop (localhost). The following 2 classes work fine when run locally, and fine when run both online. Is there a trick I can use, or do I need to use XMLSocket somehow for this? *SENDER (to be in a webpage)* package net.ericd.utils { import flash.display.Sprite; import flash.net.LocalConnection; import flash.events.StatusEvent; import flash.utils.Timer; import flash.events.TimerEvent; /** * This SWF will reside in a web page. */ public class LocalConnectionSender extends Sprite { private var conn:LocalConnection; private var myTimer:Timer; private var circle:Sprite; public function LocalConnectionSender() { conn = new LocalConnection(); conn.allowDomain( *, localhost ); conn.addEventListener( StatusEvent.STATUS, onStatus ); myTimer = new Timer( 500, 0 ); myTimer.addEventListener( TimerEvent.TIMER, ping ); circle = new Sprite(); circle.graphics.beginFill( 0xFF6600, 1 ); circle.graphics.drawCircle( 50, 50, 10 ); circle.graphics.endFill(); circle.alpha = 0; addChild( circle ); myTimer.start(); } private function onStatus( event:StatusEvent ):void { switch( event.level ) { case status: circle.alpha = 1; break; case error: circle.alpha = 0.3; break; } } private function ping( event:TimerEvent ):void { conn.send( lifeConnection, lcHandler, hello ); } } } *RECEIVER (to be local on desktop):* package net.ericd.utils { import flash.display.Sprite; import flash.net.LocalConnection; public class LocalConnectionReceiver extends Sprite { private var conn:LocalConnection; /** * This SWF will reside on the desktop, local. */ public function LocalConnectionReceiver() { conn = new LocalConnection(); conn.allowDomain( *, localhost ); conn.client = this; try { conn.connect( lifeConnection ); } catch ( error:ArgumentError ) { trace( Can't connect, name already in use. ); } } public function lcHandler( msg:String ):void { trace( received data: + msg ); } } } Any ideas appreciated. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] A question about localConnection
Eric, could the problem be that you're not preceding the connection names with underscores? Rich http://www.LearningActionScript3.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
[Flashcoders] PureMVC vs Cairngorm // who's better?
whats the verdict for using one over the other -- for a Flex+AMFphp RIA. thanks -- *artur :.*** ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
RE: [Flashcoders] PureMVC vs Cairngorm // who's better?
whats the verdict for using one over the other Not one over the other - MVC is a pattern, Cairngorm is a framework which uses several design patterns, one of them being MVC. Try Cairngorm. Try both. Depends on how big your app is - for a small app, Cairngorm is overkill, and for a really small app, even MVC may be overkill. For a medium to large app, Cairngorm will greatly help. Jason Merrill Bank of America GTO and Risk LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community Are you a Bank of America associate interested in innovative learning ideas and technologies? Check out our internal GTO Innovative Learning Blog subscribe. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
[Flashcoders] Embedded font shifting and when is the TextField really ready?
I just uploaded an example of my situation right now. The top row of TextFields has embedFonts set to false and the bottom row has embedFonts set to true. When set to true the TextField border becomes very small and the displayed text is shifted up and left aligned to the center of the original TextField. The TextField textWidth properties are also skewed as you can see the alignment of the TextFields is off in the lower example. http://img440.imageshack.us/img440/4902/embeddedfontweirdnesslt2.jpg Using a bandaid delay function that waits for 2 seconds between setting the embedFont to true and the defaultTextFormat before arranging them on stage seems to improve the issue slightly. In timeline development I could insert an extra frame, to wait a frame for some TextField properties to be set but I don't know how I can achieve the same effect in straight actionscript. keywords for search: Using Flash CS3 (Flash 9) Actionscript 3.0 (as3) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] A question about localConnection
Rich, That was it. I totally missed that in the online docs. Hanging my head in shame here, thanks for pointing that out though! On Fri, Apr 11, 2008 at 3:06 PM, Rich Shupe [EMAIL PROTECTED] wrote: Eric, could the problem be that you're not preceding the connection names with underscores? Rich http://www.LearningActionScript3.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
RE: [Flashcoders] PureMVC vs Cairngorm // who's better?
Good timing - I just posted this last night: http://www.robsondesign.com/blog/index.php/2008/04/10/puremvc-vs-cairngorm/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of artur Sent: Friday, April 11, 2008 3:09 PM To: flashcoders Subject: [Flashcoders] PureMVC vs Cairngorm // who's better? whats the verdict for using one over the other -- for a Flex+AMFphp RIA. thanks -- *artur :.*** ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
RE: [Flashcoders] PureMVC vs Cairngorm // who's better?
Ah, ignore my post if you meant PureMVC and not pure MVC. I didn't realize until Jim's post that PureMVC was an actual framework. Jason Merrill Bank of America GTO and Risk LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community Are you a Bank of America associate interested in innovative learning ideas and technologies? Check out our internal GTO Innovative Learning Blog subscribe. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jim Robson Sent: Friday, April 11, 2008 3:32 PM To: [EMAIL PROTECTED]; 'Flash Coders List' Subject: RE: [Flashcoders] PureMVC vs Cairngorm // who's better? Good timing - I just posted this last night: http://www.robsondesign.com/blog/index.php/2008/04/10/puremvc- vs-cairngorm/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of artur Sent: Friday, April 11, 2008 3:09 PM To: flashcoders Subject: [Flashcoders] PureMVC vs Cairngorm // who's better? whats the verdict for using one over the other -- for a Flex+AMFphp RIA. thanks -- *artur :.*** ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] PureMVC vs Cairngorm // who's better?
Hello :) You can test my opensource framework too :) http://code.google.com/p/vegas/ Install it with all this extensions : http://code.google.com/p/vegas/wiki/InstallVEGASwithSVN And test it with all examples in the AS3/bin/test directory of the repository or with my other opensource project AST'r (documentary framework) based on VEGAS and who contains examples of implementation with all tools of VEGAS. The AS3 version of VEGAS is based on a IOC factory who use external data based on the eden notation :) http://code.google.com/p/astr/ See example and tutorials in Google code pages and wiki projects :) http://code.google.com/p/andromed-as/wiki/TutorialsAndromedA_IOC http://code.google.com/p/vegas/wiki/TutorialsVEGAS http://code.google.com/p/as-gard/wiki/TutorialsASGARD The tutorials are in progress ;) In VEGAS you can find an exemple of MVC, etc. implementation in SVN directory : http://svn1.cvsdude.com/osflash/vegas/AS3/trunk/bin/tutorials/andromeda/ EKA+ :) 2008/4/11, Jim Robson [EMAIL PROTECTED]: Good timing - I just posted this last night: http://www.robsondesign.com/blog/index.php/2008/04/10/puremvc-vs-cairngorm/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of artur Sent: Friday, April 11, 2008 3:09 PM To: flashcoders Subject: [Flashcoders] PureMVC vs Cairngorm // who's better? whats the verdict for using one over the other -- for a Flex+AMFphp RIA. thanks -- *artur :.*** ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
RE: [Flashcoders] PureMVC vs Cairngorm // who's better?
And if it is a small to medium size app you may want to try EasyMVC from Tom Bray (http://www.tombray.com/2007/10/16/my-easymvc-seminar-wasnt-recorded/). His presentation on 3/28/08 was recorded as an Adobe ondemand seminar and describes how to use EasyMVC and also compares it to Cairngorm. There is also easyMVC from Simeon Bateman but I haven't looked at that one. Regards, Danton Chin whats the verdict for using one over the other Not one over the other - MVC is a pattern, Cairngorm is a framework which uses several design patterns, one of them being MVC. Try Cairngorm. Try both. Depends on how big your app is - for a small app, Cairngorm is overkill, and for a really small app, even MVC may be overkill. For a medium to large app, Cairngorm will greatly help. Jason Merrill Bank of America GTO and Risk LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community Are you a Bank of America associate interested in innovative learning ideas and technologies? Check out our internal GTO Innovative Learning Blog subscribe. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] PureMVC vs Cairngorm // who's better?
On Apr 11, 2008, at 4:14 PM, [EMAIL PROTECTED] wrote: And if it is a small to medium size app you may want to try EasyMVC from Tom Bray (http://www.tombray.com/2007/10/16/my-easymvc-seminar-wasnt- recorded/). His presentation on 3/28/08 was recorded as an Adobe ondemand seminar and describes how to use EasyMVC and also compares it to Cairngorm. There is also easyMVC from Simeon Bateman but I haven't looked at that one. To add my 2 cents ... by the time a developer has gone through Easy MVC (Clockwork Objects) or something similar, they are already 50% of the way through knowing how Cairngorm works. It really isn't much of a leap. Cairngorm adds in the ServiceLocator and the events, commands, delegate chain. That said, Cairngorm does lack some things for enterprise development and large applications/teams that are pretty needed. Some of these things I've recently run into (better command chaining architecture) and am looking into various solutions for (UM Cairngorm extensions is one). just a thought. jon ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] A question about localConnection
Heh. No need, sir. I looked it up too, just because I was equally unsure! On 4/11/08 3:23 PM, eric e. dolecki wrote: That was it. I totally missed that in the online docs. Hanging my head in shame here, thanks for pointing that out though! Rich http://www.LearningActionScript3.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] A question about localConnection
Maybe you could try this example: http://blog.everythingflex.com/2008/01/11/more-fun-with-air-localconnection-source-included/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
RE: [Flashcoders] PureMVC vs Cairngorm // who's better?
I sent this to the list well over an hour ago, and it still hasn't shown up, so I'm re-sending. Forgive me if you receive it twice... -Original Message- Good timing - I just posted this last night: http://www.robsondesign.com/blog/index.php/2008/04/10/puremvc-vs-cairngorm/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of artur Sent: Friday, April 11, 2008 3:09 PM To: flashcoders Subject: [Flashcoders] PureMVC vs Cairngorm // who's better? whats the verdict for using one over the other -- for a Flex+AMFphp RIA. thanks -- *artur :.*** ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders