[flexcoders] Building to FP10 breaks code that works if I build to FP9...why?

2010-01-18 Thread Guy Morton
Hello people, I hope someone here can point me in the right direction here. I have a class in my codebase that defines objects that contain functions eg (pseudocode): package com.my.package { import flash.events.EventDispatcher; public class Dohickey extends EventDispatcher {

Re: [flexcoders] Building to FP10 breaks code that works if I build to FP9...why?

2010-01-18 Thread thomas parquier
Hello, I think your create function is not in class instance scope (because inline) : should be static or from an instance of Dohickey to work, I think. thomas parquier --- http://www.web-attitude.fr/realisations/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net

Re: [flexcoders] Building to FP10 breaks code that works if I build to FP9...why?

2010-01-18 Thread Guy Morton
Yes, it looked like a scoping problem to me as well. Just curious as to why it works in 9 but not 10. I couldn't find any documentation that said there was a change in this area. On 18/01/2010, at 10:37 PM, thomas parquier wrote: Hello, I think your create function is not in class