[flexcoders] OT: Flex Consultants

2007-10-02 Thread Jeremy French
Sorry if this is OT, but since a number of the members of this group are Flex consultants, I was wondering if anyone could tell me the best way to secure the services of one. We're building a fairly large flex app, and find ourselves a bit over our heads, and would like to pay someone to help guid

Re: [flexcoders] Flex Remoting

2007-09-14 Thread Jeremy French
Giles, This should help you out a little. http://www.frenches.com/blog/index.cfm/2007/5/7/Flex-Coldfusion--Dont-make-me-have-to-separate-you-two On 9/14/07, Giles Roadnight <[EMAIL PROTECTED]> wrote: > > Hi Guys > > I've started looking into Flex Remoting again. I looked into this a > while ag

Re: [flexcoders] Getting ColdFusion 7 or 8 to work on Vista?

2007-09-05 Thread Jeremy French
http://www.communitymx.com/content/article.cfm?cid=224AA This was the first entry on a google search for "coldfusion vista" As far as I know, CF8 installs just fine. I installed 7.02 on 64-bit Vista using the instructions above. It's a bit of a pain, but it works. On 9/5/07, Mike Anderson <[E

Re: [flexcoders] Variable instances behavior in Actionscript

2007-09-05 Thread Jeremy French
Another good way to think of it is that a reference to an object is actually an integer that holds the object's address in memory. You'll see this in the debugger as @3342fe334, etc. So when you copy 'a' into 'b' a la 'b=a;', you're making a copy of the address - not the object. So when you lat