My account: Login | Sign Up
Loading... 

[RESOLVED] Using transition manager for custom class (movieclip); | Thread profile

Thread profile page for "[RESOLVED] Using transition manager for custom class (movieclip);" on http://www.flashkit.com. This report page is a snippet summary view from a single thread "[RESOLVED] Using transition manager for custom class (movieclip);", located on the Message Board at http://www.flashkit.com. This thread profile page shows the thread statistics for: Total Authors, Total Thread Posts, and Thread Activity, which are reported in a table below. Additional thread profile information is also shown in the following ways:

1) Top Contributing Authors
2) Related Threads on "eBay Auctions"
3) Related Threads on Other Sites

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a thread's popularity and/or exact posting volumes at any given reporting period.

Title: [RESOLVED] Using transition manager for custom class (movieclip);
Site: Flash Kit Community Forums  Flash Kit Community Forums - site profile
Forum: Actionscript 3.0  Actionscript 3.0 - forum profile
Total authors: 2 authors
Total thread posts: 9 posts
Thread activity: no new posts during last week
Domain info for: flashkit.com

Thread posts in [RESOLVED] Using transition manager for custom class (movieclip);:

1. 
Started 8 months, 2 weeks ago (2008-04-26 13:14:00)  by simplexian
Having an issue, because I don't really understand how it works. I have a custom class called EmailForm, which is a email form movieclip. Now, I am having no trouble getting it on the stage... [php] PHP Code: var form : EmailForm = new EmailForm (); form . x = 300 ; form . y = 300 ; addChild ( form ); // TransitionManager....
Size: 4,403 bytes
Customize:  Customize "[RESOLVED] Using transition manager for custom class (movieclip); :: Actionscript 3.0 :: Flash Kit Community Forums"
2. 
Started 8 months, 2 weeks ago (2008-04-26 17:32:00)  by simplexian
That class has been imported into both my EmailForm.as, and Website.as (main document class), it still generates that error.
Size: 163 bytes
Customize:  Customize "<b>Reply 1</b>: [RESOLVED] Using transition manager for custom class (movieclip); :: Actionscript 3.0 :: Flash Kit Community Forums"
3. 
Started 8 months, 2 weeks ago (2008-04-26 17:48:00)  by cancerinform
Can you show your class, otherwise it all guessing.
Size: 90 bytes
Customize:  Customize "<b>Reply 2</b>: [RESOLVED] Using transition manager for custom class (movieclip); :: Actionscript 3.0 :: Flash Kit Community Forums"
4. 
Started 8 months, 2 weeks ago (2008-04-26 19:15:00)  by simplexian
There really isn't anything in it. It's linkage is to a movie clip in my library, exported for actionscript. It allows me to put it on the stage, move it around... confused why it won't let me apply a transition effect. Clearly, I am new. PHP Code: package Web { import flash . display .*; import fl . transitions . easing .*;...
Size: 2,739 bytes
Customize:  Customize "<b>Reply 3</b>: [RESOLVED] Using transition manager for custom class (movieclip); :: Actionscript 3.0 :: Flash Kit Community Forums"
5. 
Started 8 months, 2 weeks ago (2008-04-26 19:45:00)  by cancerinform
You see now it becomes clear. You need to import the TransitionManager class in your fla file and not in the email form. You are not using it in the email form, so you can delete all the reference to it there.
Size: 248 bytes
Customize:  Customize "<b>Reply 4</b>: [RESOLVED] Using transition manager for custom class (movieclip); :: Actionscript 3.0 :: Flash Kit Community Forums"
6. 
Started 8 months, 2 weeks ago (2008-04-27 10:51:00)  by simplexian
If I try to import that class into my .fla file, it generates this error. Actually, when I put anything in the .fla file, it generates the same error. PHP Code: 1180 : Call to a possibly undefined method addFrameScript on Website.as Line 1, package web { Clearly, I am misunderstanding how .as files exactly work, or how to correctly ...
Size: 5,744 bytes
Customize:  Customize "<b>Reply 5</b>: [RESOLVED] Using transition manager for custom class (movieclip); :: Actionscript 3.0 :: Flash Kit Community Forums"
7. 
Started 8 months, 2 weeks ago (2008-04-27 16:11:00)  by cancerinform
Because you are extending the Sprite class, which does not have a timeline. You need to extend the MovieClip class, if you have scripts in frames. Your email form probably contains a textfield.
Size: 247 bytes
Customize:  Customize "<b>Reply 6</b>: [RESOLVED] Using transition manager for custom class (movieclip); :: Actionscript 3.0 :: Flash Kit Community Forums"
8. 
Started 8 months, 2 weeks ago (2008-04-27 16:41:00)  by simplexian
Cancer... PHP Code: import fl . transitions . TransitionManager ; is now in my Website.fla, my main document class Website.as, and my EmailForm.as file... And with the extension changed to MovieClip from Sprite, it still gives me the following error... PHP Code: ReferenceError : Error #...
Size: 10 kb
Customize:  Customize "<b>Reply 7</b>: [RESOLVED] Using transition manager for custom class (movieclip); :: Actionscript 3.0 :: Flash Kit Community Forums"
9. 
Started 8 months, 2 weeks ago (2008-04-27 19:15:00)  by simplexian
5tons, that was exactly the problem. Is there a good reference that explains the differences between non-dynamic and dynamic classes? Thanks again 5 tons and cancer.
Size: 219 bytes
Customize:  Customize "<b>Reply 8</b>: [RESOLVED] Using transition manager for custom class (movieclip); :: Actionscript 3.0 :: Flash Kit Community Forums"
 

Top contributing authors for [RESOLVED] Using transition manager for custom class (movieclip);

Name
Posts
simplexian
6
user's latest post:
[RESOLVED] Using transition...
Published (2008-04-26 17:32:00)
That class has been imported into both my EmailForm.as, and Website.as (main document class), it still generates that error.
cancerinform
3
user's latest post:
[RESOLVED] Using transition...
Published (2008-04-27 16:11:00)
Because you are extending the Sprite class, which does not have a timeline. You need to extend the MovieClip class, if you have scripts in frames. Your email form probably contains a textfield.