hi, i have 3 command (cammand1 -> command2 ->command3) that i want call at startup of the appication, and later when the application is runing i just want to...
Yes, there is. Assuming this is a sequence of commands, you are probably using the sequence facility of Cairngorm. While this does the job, it does not enable...
See also comments: - Alistair McLeod: Cairngorm Moved to Adobe Open Source http://weblogs.macromedia.com/amcleod/archives/2008/08/cairngorm_moved.html -...
Hi, I thought I would pipe in with my own two cents worth of what to do when an application loads up as I believe this to be an essential part of creating any...
I am looking for some additional insight into value objects and ModelLocators and the relationship, if any, that they have. Being relatively new to Cairngorm,...
We're using Cairngorm to build an mp3/flv media player and have a few questions about where to put some of the logic. The events/commands we have so far are...
... IMO should be in the controller not the view. Suggestion... TrackCompletedEvent (extends CairngormEvent) registered in the front controller to a...
Thank you very much. I took your advice and everything is running really well. Definitely loving Cairngorm now that I have the logic in the right place....
Hi Tia, In this respect, Value Objects can also be called Data Transfer Objects, which maybe make the indent of this object clearer? Its purpose is to transfer...
Well, there are a few ways.. It all depends on if you only need the collection for that specific command - option 1, or if you use it else where as well (say...
I seem to have something wrong with my code and I have been trying to work through on and off for three days. I have this code in my modelLocator to cache the...
1.a - use the existing data property of CairngormEvent to ferry the information somewhere: event = new CairngormEvent("MyEvent"); event.data = myCollection; ...
Alex, Thanks for the detailed help and information. One additional question to help clear up my confusion regarding these items. If I am grabbing XML data from...
Normally I'd say sorting shouldn't belong in the command. This is outside of it's scope. This is because you might want to use the same command elsewhere in...
Hi, I would like to know if it's possible to dispatch event from module for example "M1" and listen this event to call the corresponding command but in an...
Urgent requirement for both contract and full time opportunities in NJ, USA. This is an Excellent opening to work with a Fortune company. 1. Excellent...
Evan --- are you on this list ? CairngormDocs.org has expired, the site is down, and the community have noticed...anything we can do to help? Is there a...
Dear Mr. Steven Webster I hope you are doing well. Thanks for informing , but what do should I do to up www.cairgormdocs.org website, and help to community...
We're back up now. Thanks to Douglas McCarrol for a heads up this morning. ... documentation@yahoogroups.com] On Behalf Of Evan Gifford ... CairngormDocs.org...
Hello All, This was formerly posted over at FlexCoders, but thought I'd escalate up to the Cairngorm gurus as my question has more to do with using the...
although probably not of much help to you, I haven't been able to find a decent solution for this either. We handle all faults at service level as well. ...
Well, at least you've confirmed to me what I've been talking with others about... I'm putting the most robust error handling on the Services, and making the...
's funny y'know... twice in the same day, two different people have said they'd love to be a fly on the wall when it comes to best Flex coding practice from ...
... Having checked out a copy of Apprise Reader, I wouldn't necessarily call every line 'absolute best practice', but it is really useful to get a feel for...
Does the onServiceFault function get called first, before the token.fault function, when your webservice throws an error? If so, can you stop the event from...
I think the fault is raised two separate times, actually. I've tried the stop propagation going both ways. The faults aren't related (from what I can tell). ...
Your command file should be separate and you need to call your service form this command class. Also implement IResponder in this command class While calling...