[quoted text, click to view] On 21 , 20:46, mikko <nore...@solinet.fi> wrote:
> On 1 syys, 02:40, "Sekhar Ravinutala" <webforumsu...@macromedia.com>
> wrote:
>
> > In Flash CS3/AS3, if I try to run a transition on a movie clip "PaneB"
> > accompanied by a PaneB class definition, I get the following error:
>
> > ReferenceError: Error #1069:Property__transitionManagernotfoundon
> > Site.Page.PaneB and there is no default value.
>
> > However, if I don't associate a class with PaneB (leaving Flash to define a
> > default one), I don't get the error. Any idea why?
>
> > FYI, if I create a child clip (for PaneB) without a class attached, and then
> > run transition on that child, things work OK. And, if I create a new movie clip
> > at run time and add PaneB as its child and then run transiton on the parent, it
> > also works fine. Meaning, there's something that the default class definition
> > is doing that my class (that extends MovieClip) isnotdoing. Happens even if I
> > don't define anything in the class!
>
> Sekhar,
>
> I'm having the exact same problem with a very simple class extending
> MovieClip and having a symbol in a library. I'm sorry to report that
> so far I have not found any solution. :(
>
> Please, let me know if you find the answer!
>
> Mikko
Hi Mikko,
The class you use the transition in should be defined as "dymanic",
i.e.
public dynamic class SomeName extends Movieclip
I think this is because the transition manager adds a property to the
object (the one creating the error)
Miro