Hi,

I'm late to the party in adopting external classes for my work but
hey, I'm here now! :)

Anyway I have an incredibly frustrating problem in that when I change
the code in my class it doesn't seem to be updated when I republish.
I'm using Flash 8 and SEPY.

E.g. Here's my class. Simple as it is.

class Banana {
        
        private var owner:MovieClip;
        
        function Banana(createdBy:MovieClip) {
                owner = createdBy;
                tr('Banana Created');
                owner._x = 100;
                owner._y = 100;
        }
        
        public static function tr() {
                trace(arguments.join(" : "));
        }
}

And in my FLA the only code is.

bob = new Banana(bob); - bob being a square movieclip.

Now when I publish it i get the output: Banana Created

However, if I change the trace in the class to "Apple Created"  and
republish I still get "Banana Created". i.e. it hasn't updated.

It's driving me nuts. Am I missing something painfully obvious?

Cheers,

Dave
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to