[Flashcoders] Cairngorm without remoting?

2007-05-24 Thread Jon Bradley
Has anyone here approached Cairngorm development without remoting  
services?


I'm developing in Flash 8 still - no case to go to Flash 9 yet since  
the penetration is way less than the business requirements.


I've got a prototype I'm putting together and am using Delegates that  
return stub data right now to my Commands. In the end, the data will  
be loaded from a .NET application in the form of XML, not using  
Remoting objects.


What I'd like to know is if anyone has implemented other service  
types, and how, with Cairngorm in Flash (0.99 at the moment). The  
Responder framework is just not going to work, obviously, so I'd  
rather use XML calls that have their onResult and onFault events  
returned to the Delegate that is making the request.


Also, if any of the cairngorm team is still listening on the  
Flashcoders list, is there a newer package available with the  
org.osflash project structure? I'm still using the nevis formatting.  
From what I gather the only change is to the package formatting ...  
nothing else.


Any takers?

thanks for any input.

best,

jon

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Cairngorm without remoting?

2007-05-24 Thread Muzak
I don't know if anything like this exists for Cairgorm, I do know that people 
have written extensions for ARP.
One of them is an XMLService written by Christophe Herreman:

http://www.herrodius.com/upload/arp_extensions.zip

More custom services here
http://www.swapdepths.nl/2006/01/27/customservice-and-sharedobjectservice-for-arp/

If all you need/want is an XMLService, try this one (should be the same is the 
one in arp_extensions.zip though):
http://svn1.cvsdude.com/osflash/arp/labs/cherreman/actionscript/org/osflash/arp/xml/

regards,
Muzak

- Original Message - 
From: Jon Bradley [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Thursday, May 24, 2007 4:18 PM
Subject: [Flashcoders] Cairngorm without remoting?


 Has anyone here approached Cairngorm development without remoting  services?

 I'm developing in Flash 8 still - no case to go to Flash 9 yet since  the 
 penetration is way less than the business requirements.

 I've got a prototype I'm putting together and am using Delegates that  return 
 stub data right now to my Commands. In the end, the 
 data will  be loaded from a .NET application in the form of XML, not using  
 Remoting objects.

 What I'd like to know is if anyone has implemented other service  types, and 
 how, with Cairngorm in Flash (0.99 at the moment). 
 The  Responder framework is just not going to work, obviously, so I'd  rather 
 use XML calls that have their onResult and onFault 
 events  returned to the Delegate that is making the request.

 Also, if any of the cairngorm team is still listening on the  Flashcoders 
 list, is there a newer package available with the 
 org.osflash project structure? I'm still using the nevis formatting.  From 
 what I gather the only change is to the package 
 formatting ...  nothing else.

 Any takers?

 thanks for any input.

 best,

 jon



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Cairngorm without remoting?

2007-05-24 Thread Jon Bradley
That's great, Muzak. It's right in line with what I thought needed to  
be done - import the remoting classes and use them only for what's  
necessary.


It does seem like quite a lot of effort for something that should be  
pretty simple - since the built in XML loading already has events  
that could be used.


cheers,

jon

On May 24, 2007, at 11:58 AM, Muzak wrote:

I don't know if anything like this exists for Cairgorm, I do know  
that people have written extensions for ARP.

One of them is an XMLService written by Christophe Herreman:

http://www.herrodius.com/upload/arp_extensions.zip

More custom services here
http://www.swapdepths.nl/2006/01/27/customservice-and- 
sharedobjectservice-for-arp/


If all you need/want is an XMLService, try this one (should be the  
same is the one in arp_extensions.zip though):
http://svn1.cvsdude.com/osflash/arp/labs/cherreman/actionscript/org/ 
osflash/arp/xml/


regards,
Muzak

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Cairngorm

2006-12-19 Thread slangeberg

I've been playing with similar ideas and I'm wondering if your model just
dispatches an 'onUpdate' event, that prompts views to get the values they're
interested in, or do you create seperate events for individual properties on
the model?

-Scott

On 12/19/06, Robin Burrer [EMAIL PROTECTED] wrote:


Hi Greg,

Thanks for your reply from a few weeks ago. I just found your message
today by accident...:-)
I ended up creating my own framework which is basically a simplified
version of cairngorm for AS2. I didn't use all of the underlying design
patterns but most of them. I found that you can easily replace the
data-binding with setter methods in the model though.

For each property in my model I also have a setter method.
Commands that want to update a property in the model will call a setter
method.
The model then not only updates its property but also dispatches an
event to all its listeners/views. - This works perfectly.

Robin





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of greg h
Sent: Tuesday, 19 December 2006 9:09 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cairngorm

Bram,

Cairngorm has been used on Flash only projects (although not by me ;-).
Following are 3 links related to 2 occasions that this question came up
last
month here on this list.

http://chattyfig.figleaf.com/pipermail/flashcoders/2006-November/175801.
html

http://tech.groups.yahoo.com/group/cairngorm-documentation/message/156

http://chattyfig.figleaf.com/pipermail/flashcoders/2006-November/176244.
html

Yours is the first mention I have seen of a Cairngorm AS3 project not
related to Flex.  Please do post back and give us an update on your
experience if you do move ahead using Cairngorm on an AS3 Flash only
project.

If you have follow on questions, you might also try posting on either or
both of the following lists:
cairngorm-documentationhttp://tech.groups.yahoo.com/group/cairngorm-doc
umentation/and
cairngorm-devel http://tech.groups.yahoo.com/group/cairngorm-devel/

hth,

g


On 12/18/06, Webdevotion [EMAIL PROTECTED] wrote:

 Hello Flashcoders,

 Is it allright to use Cairngorm for AS 3 projects?
 I'm getting up to speed with Flex and AS 3.0 and
 want to start learning some relevant frameworks.

 Which ones are among the best choices for
 strictly AS 3 projects ?
 Any articles concerning those choices ?

 Bram

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





--

: : ) Scott
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Cairngorm

2006-12-18 Thread Webdevotion

Hello Flashcoders,

Is it allright to use Cairngorm for AS 3 projects?
I'm getting up to speed with Flex and AS 3.0 and
want to start learning some relevant frameworks.

Which ones are among the best choices for
strictly AS 3 projects ?
Any articles concerning those choices ?

Bram
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Cairngorm

2006-12-18 Thread greg h

Bram,

Cairngorm has been used on Flash only projects (although not by me ;-).
Following are 3 links related to 2 occasions that this question came up last
month here on this list.

http://chattyfig.figleaf.com/pipermail/flashcoders/2006-November/175801.html

http://tech.groups.yahoo.com/group/cairngorm-documentation/message/156

http://chattyfig.figleaf.com/pipermail/flashcoders/2006-November/176244.html

Yours is the first mention I have seen of a Cairngorm AS3 project not
related to Flex.  Please do post back and give us an update on your
experience if you do move ahead using Cairngorm on an AS3 Flash only
project.

If you have follow on questions, you might also try posting on either or
both of the following lists:
cairngorm-documentationhttp://tech.groups.yahoo.com/group/cairngorm-documentation/and
cairngorm-devel http://tech.groups.yahoo.com/group/cairngorm-devel/

hth,

g


On 12/18/06, Webdevotion [EMAIL PROTECTED] wrote:


Hello Flashcoders,

Is it allright to use Cairngorm for AS 3 projects?
I'm getting up to speed with Flex and AS 3.0 and
want to start learning some relevant frameworks.

Which ones are among the best choices for
strictly AS 3 projects ?
Any articles concerning those choices ?

Bram


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Cairngorm

2006-12-18 Thread Webdevotion

tnx Greg,

it would certainly be an interesting challenge.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Cairngorm

2006-12-18 Thread Robin Burrer
Hi Greg,

Thanks for your reply from a few weeks ago. I just found your message
today by accident...:-)
I ended up creating my own framework which is basically a simplified
version of cairngorm for AS2. I didn't use all of the underlying design
patterns but most of them. I found that you can easily replace the
data-binding with setter methods in the model though. 

For each property in my model I also have a setter method.
Commands that want to update a property in the model will call a setter
method. 
The model then not only updates its property but also dispatches an
event to all its listeners/views. - This works perfectly.

Robin





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of greg h
Sent: Tuesday, 19 December 2006 9:09 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cairngorm

Bram,

Cairngorm has been used on Flash only projects (although not by me ;-).
Following are 3 links related to 2 occasions that this question came up
last
month here on this list.

http://chattyfig.figleaf.com/pipermail/flashcoders/2006-November/175801.
html

http://tech.groups.yahoo.com/group/cairngorm-documentation/message/156

http://chattyfig.figleaf.com/pipermail/flashcoders/2006-November/176244.
html

Yours is the first mention I have seen of a Cairngorm AS3 project not
related to Flex.  Please do post back and give us an update on your
experience if you do move ahead using Cairngorm on an AS3 Flash only
project.

If you have follow on questions, you might also try posting on either or
both of the following lists:
cairngorm-documentationhttp://tech.groups.yahoo.com/group/cairngorm-doc
umentation/and
cairngorm-devel http://tech.groups.yahoo.com/group/cairngorm-devel/

hth,

g


On 12/18/06, Webdevotion [EMAIL PROTECTED] wrote:

 Hello Flashcoders,

 Is it allright to use Cairngorm for AS 3 projects?
 I'm getting up to speed with Flex and AS 3.0 and
 want to start learning some relevant frameworks.

 Which ones are among the best choices for
 strictly AS 3 projects ?
 Any articles concerning those choices ?

 Bram

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] cairngorm 2

2006-11-10 Thread Hans Wichman

Hi list,
i cant seem to figure out whether cairngorm is for flex only, or for flash
as well.
I find info about v0.95/0.99 saying its for flash as well, and version 2 for
flex only?

greetz
JC
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-22 Thread Manuel Saint-Victor

Matti,

I  came across the same feeling that I believe you are having when I first
tried it.  It's  a whole lot and every piece I tugged at seemed to be linked
to another piece of equal importance or at least that could just as
justifiably been a good starting point.  In the end I found that if I
started with one of my own  views ( say a basic form that I had laid out in
MXML and then looked at the approaches in the tutorials as they related to
my current need it made it more applicable to my situation and I was able to
grab a piece here and there and see it as a good suggestion for a solution.
No matter where you start  I think you will get the feeling of Well then
what the hell does this piece do and do I need to work on it first?
That being said though I think the article from
devnethttp://www.adobe.com/devnet/flex/articles/cairngorm_pt1.html
gave me a better sense of I was jumping into and  the ActionScript
Dictionary (big red one)
http://www.iterationtwo.com/news_080903.htmlsection about design
patterns really helped me put it all together.


On 8/9/06, Matti Bar-Zeev [EMAIL PROTECTED] wrote:


Thnx again.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ramon
Miguel M. Tayag
Sent: Wednesday, August 09, 2006 9:47 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cairngorm 2.0 tutorials

Still broken, try this:
http://tinyurl.com/fqldz

On 8/9/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote:
 Links have been seperated by the page break.
 For example,


http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_
 1.cf
 m#more

 Regards,

 Bjorn Schultheiss
 Senior Flash Developer
 QDC Technologies

--
Ramon Miguel M. Tayag
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-09 Thread Matti Bar-Zeev
Cheers mates,
Been very helpful. Some of the links, though, are broken.
Thnx.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nick
Weekes
Sent: Tuesday, August 08, 2006 10:12 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

Alex Uhlmann has some good sample applications using Cairngorm 2 here:

http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_
1.cf
m#more

Cheers,

Nick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin
Burrer
Sent: 08 August 2006 07:37
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

As Bjorn suggested:

http://labs.adobe.com/wiki/index.php/Cairngorm (how come Adobe is using
PHP
btw)

Have a read through this very good article. After I studied the article
I
had a look at Jesse Warden's Cairngorm 2 web service example.

http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html


Then I created a couple of Cairngorm sample applications. Once you got
the
hang of it you don't want to go back...


Robin




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 4:14 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

Give us some credit, mate :) been there before.
Did you see any step by step tutorial there?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn
Schultheiss
Sent: Tuesday, August 08, 2006 9:10 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

http://labs.adobe.com/wiki/index.php/Cairngorm


Regards,

Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 3:56 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Cairngorm 2.0 tutorials

Hi All,

Can someone please direct me to a tutorial on Cairngorm 2.0 with Flex
2.0
Builder? I looked and googled but came with nothing.

I'm talking about a step to step kinda thing.












__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting

RE: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-09 Thread Bjorn Schultheiss
Links have been seperated by the page break.
For example,

http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_
1.cf
m#more 




Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Wednesday, 9 August 2006 4:06 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

Cheers mates,
Been very helpful. Some of the links, though, are broken.
Thnx.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nick Weekes
Sent: Tuesday, August 08, 2006 10:12 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

Alex Uhlmann has some good sample applications using Cairngorm 2 here:

http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_
1.cf
m#more

Cheers,

Nick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin Burrer
Sent: 08 August 2006 07:37
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

As Bjorn suggested:

http://labs.adobe.com/wiki/index.php/Cairngorm (how come Adobe is using PHP
btw)

Have a read through this very good article. After I studied the article I
had a look at Jesse Warden's Cairngorm 2 web service example.

http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html


Then I created a couple of Cairngorm sample applications. Once you got the
hang of it you don't want to go back...


Robin




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 4:14 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

Give us some credit, mate :) been there before.
Did you see any step by step tutorial there?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn
Schultheiss
Sent: Tuesday, August 08, 2006 9:10 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

http://labs.adobe.com/wiki/index.php/Cairngorm


Regards,

Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 3:56 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Cairngorm 2.0 tutorials

Hi All,

Can someone please direct me to a tutorial on Cairngorm 2.0 with Flex 2.0
Builder? I looked and googled but came with nothing.

I'm talking about a step to step kinda thing.












__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com ___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com ___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned

Re: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-09 Thread Ramon Miguel M. Tayag

Still broken, try this:
http://tinyurl.com/fqldz

On 8/9/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote:

Links have been seperated by the page break.
For example,

http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_
1.cf
m#more

Regards,

Bjorn Schultheiss
Senior Flash Developer
QDC Technologies


--
Ramon Miguel M. Tayag
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-09 Thread Matti Bar-Zeev
Thnx again.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ramon
Miguel M. Tayag
Sent: Wednesday, August 09, 2006 9:47 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Cairngorm 2.0 tutorials

Still broken, try this:
http://tinyurl.com/fqldz

On 8/9/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote:
 Links have been seperated by the page break.
 For example,


http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_
 1.cf
 m#more

 Regards,

 Bjorn Schultheiss
 Senior Flash Developer
 QDC Technologies

--
Ramon Miguel M. Tayag
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-08 Thread Bjorn Schultheiss
http://labs.adobe.com/wiki/index.php/Cairngorm 


Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 3:56 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Cairngorm 2.0 tutorials

Hi All,

Can someone please direct me to a tutorial on Cairngorm 2.0 with Flex 2.0
Builder? I looked and googled but came with nothing.

I'm talking about a step to step kinda thing. 

 

 

 

 

 


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-08 Thread Matti Bar-Zeev
Give us some credit, mate :) been there before.
Did you see any step by step tutorial there?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn
Schultheiss
Sent: Tuesday, August 08, 2006 9:10 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

http://labs.adobe.com/wiki/index.php/Cairngorm


Regards,

Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 3:56 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Cairngorm 2.0 tutorials

Hi All,

Can someone please direct me to a tutorial on Cairngorm 2.0 with Flex
2.0
Builder? I looked and googled but came with nothing.

I'm talking about a step to step kinda thing.












__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-08 Thread Bjorn Schultheiss
Maaate.. Everything is there, that's it.
There is plenty there and it covers about all it's got to offer, so far.

Did you dig into their blogs.
Dude.
http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_1.cf
m

Regards,
 
Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 4:14 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

Give us some credit, mate :) been there before.
Did you see any step by step tutorial there?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn
Schultheiss
Sent: Tuesday, August 08, 2006 9:10 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

http://labs.adobe.com/wiki/index.php/Cairngorm


Regards,

Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 3:56 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Cairngorm 2.0 tutorials

Hi All,

Can someone please direct me to a tutorial on Cairngorm 2.0 with Flex 2.0
Builder? I looked and googled but came with nothing.

I'm talking about a step to step kinda thing.












__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com ___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-08 Thread Robin Burrer
As Bjorn suggested:

http://labs.adobe.com/wiki/index.php/Cairngorm (how come Adobe is using
PHP btw)

Have a read through this very good article. After I studied the article
I had a look at Jesse Warden's Cairngorm 2 web service example.

http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html


Then I created a couple of Cairngorm sample applications. Once you got
the hang of it you don't want to go back... 


Robin




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 4:14 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

Give us some credit, mate :) been there before.
Did you see any step by step tutorial there?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn
Schultheiss
Sent: Tuesday, August 08, 2006 9:10 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

http://labs.adobe.com/wiki/index.php/Cairngorm


Regards,

Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 3:56 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Cairngorm 2.0 tutorials

Hi All,

Can someone please direct me to a tutorial on Cairngorm 2.0 with Flex
2.0
Builder? I looked and googled but came with nothing.

I'm talking about a step to step kinda thing.












__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Cairngorm 2.0 tutorials

2006-08-08 Thread Nick Weekes
Alex Uhlmann has some good sample applications using Cairngorm 2 here:

http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_1.cf
m#more

Cheers,

Nick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Robin Burrer
Sent: 08 August 2006 07:37
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

As Bjorn suggested:

http://labs.adobe.com/wiki/index.php/Cairngorm (how come Adobe is using PHP
btw)

Have a read through this very good article. After I studied the article I
had a look at Jesse Warden's Cairngorm 2 web service example.

http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html


Then I created a couple of Cairngorm sample applications. Once you got the
hang of it you don't want to go back... 


Robin




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 4:14 PM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

Give us some credit, mate :) been there before.
Did you see any step by step tutorial there?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn
Schultheiss
Sent: Tuesday, August 08, 2006 9:10 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Cairngorm 2.0 tutorials

http://labs.adobe.com/wiki/index.php/Cairngorm


Regards,

Bjorn Schultheiss
Senior Flash Developer
QDC Technologies

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matti
Bar-Zeev
Sent: Tuesday, 8 August 2006 3:56 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Cairngorm 2.0 tutorials

Hi All,

Can someone please direct me to a tutorial on Cairngorm 2.0 with Flex 2.0
Builder? I looked and googled but came with nothing.

I'm talking about a step to step kinda thing.












__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com ___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com ___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Cairngorm 2.0 tutorials

2006-08-07 Thread Matti Bar-Zeev
Hi All,

Can someone please direct me to a tutorial on Cairngorm 2.0 with Flex
2.0 Builder? I looked and googled but came with nothing.

I'm talking about a step to step kinda thing. 

 

 

 

 

 


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com