Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a custom class that is extended from MovieClip. The class is basically creating a button that uses frame labels in the MovieClip to move between button states as mouse events are dispatched. Each state (each approx 20 frames long) is terminated with a timeline stop().

This class has been used in numerous other projects, but after a certain point in my current application any buttons created as an extension of my button class stop executing the code on the timeline, and just play on a loop. This includes any traces put into the timeline, but all code in the class still executes correctly, even the gotoAndPlay calls when the button state changes.

The strangest part is that no error is thrown by any of the misbehaving button instances on the stage.

What I need are suggestions of what could prevent any object that extends a certain class from executing timeline code without throwing an error.

Thanks!

UPDATE: This still has me stumped. Our projects usually come in three parts: a lightweight preloader, a language and age gate, then the main application. Each is loaded into the previous, each time using the current application domain. After the main application has been loaded, any custom display object that extends MovieClip (directly or indirectly) will ignore any actionscript directly on its timeline. The playhead can still be controlled though the class however.

UPDATE 2: This is the code in the test button class that I have made. Notice how there is nothing in it.

package com.test
{
    import flash.display.MovieClip;

    public class TestLabelButton extends MovieClip
    {
        public function TestLabelButton():void
        {

        }
    }
}

Update 3: So I've narrowed it down, but it's strange. It seems that I can load my language gate into the preloader just fine, with the language gate being an swf with a custom document class that extends MovieClip. After that though, if I load any more SWFs that contain a custom doc class extending MovieClip it's like all subsequently instantiated MovieClips of extentions thereof loose all the code on their timelines.

share|improve this question
I've seen this happen when i am moving an object around on stage and also changing properties like x and y in the code. – Mims H. Wright Apr 8 '11 at 20:48
At the time of instantiating the misbehaving objects there are no other actions taking place. – shanethehat Apr 12 '11 at 15:00
I'd need to see your setup to accurately diagnose this. All kinds of problems can result from framescripts conflicting with class code that is also trying to control the playback head. It's generally best to avoid having ANY timeline code in a clip you intend to control externally. Especially problematic and difficult to reproduce are the bugs that only happen when your class play() or gotoAndPlay() conflict with a directive on the timeline, such that you have basically a 1-in-numberOfFrames chance of reproducing the bug. – Adam Smith Apr 12 '11 at 15:08
Unfortunately I can't share the code in its current form. I realise how helpful this is! I can confirm that the custom objects I'm creating don't override any of the methods of MovieClip or it's ancestors, and the only timeline code is a few occurrences of stop(). – shanethehat Apr 12 '11 at 15:15

4 Answers

up vote 1 down vote accepted

From what you describe it sounds like when you run a SWF in the FlashIDE with compile errors.
It will just loop though all the frames.
I am sure you have seen it before normal flash buttons just flicker.

Have you tried to take the offending MovieClip and put it in a new project alone and see what happens?

share|improve this answer
I believe of all the answers you're the most on-track here. – Digital Architect Apr 15 '11 at 13:02
That's exactly the behaviour, yes, although it's still possible to gain control of the timeline afterwards and no errors are dispatched. – shanethehat Apr 15 '11 at 13:37
What do you mean by regain control of the timeline afterwards? and have you tried to put offending movieclip in a new project yet? – The_asMan Apr 15 '11 at 17:43
I'm going to award the points here. I did eventually create a new project and started adding all the elements of the old project one by one. Eventually it was all added and worked without error, so I guess some kind of corruption had occurred in my FLAs. – shanethehat May 2 '11 at 10:05
Great to hear. ty – The_asMan May 2 '11 at 16:31

I'm not sure I fully understand your issue, but this sounds incredibly familiar to a problem I had in the past. I do the same thing. I never use Button symbols and always opt to use a MovieClip instead, since they're more flexible and having all your button state animations immediately exposed I find a much more intuitive way of working.

Any way, make sure that whatever frame you're calling via a frame label / name doesn't have a stop() on that frame. I've made that mistake a couple of times, where I have a fRollOver frame label at the start of a rollOver animation, and when you gotoAndPlay("fRollOver"), it just does nothing.

Another thing I've found is, and I've experienced this numerous times, that if you have a stop() immediately on the first frame, sometimes things brake. Flash just doesn't like it sometimes, and I can't explain this. It certainly works on almost all my projects. It might be a Flash version issue.

share|improve this answer
I've broken my tests down into a simple MovieClip symbol containing a 30 frame animation with a stop() on frame 5. This is associated with a class that extends MovieClip but is otherwise empty. The animation plays through on a loop and does not honour the stop() on frame 5. – shanethehat Apr 12 '11 at 15:17
I would probably have to see the code in your class that extends MovieClip in order to help further. At this point, you might as well share the code so that people can assist you as best as possible. – Daniel Carvalho Apr 13 '11 at 7:13
added code to post, but as I said, it's just an empty class. – shanethehat Apr 13 '11 at 8:11

My recommendation is to design your movieclip button thing in such a way that any animations needed for the states are happening in their own clips, with their own looping timelines. In other words, each "state" of your button has one frame on the timeline of your button clip thing--no ordinary playing or looping on your main timeline. All playback head control is in your external class, and consists only of *gotoAndStop*s to control the main timeline, and possibly stop() and play() commands to start and stop timelines of the animation clips on each button state frame.

Bottom line, don't attempt to control the playback head of any clip from more than one place, because to do so is to invite weird, often hard-to-reproduce control conflict bugs.

Also, an error in your frame script will stop the Flash Player from executing frame scripts on that clip. Are you getting compile-time errors or warnings?

share|improve this answer
As I commented on Daniel Carvalho's answer below, I've realised that this isn't just affecting my custom buttons, but any object that extends MovieClip. The design of the buttons has been fine for numerous application up until now, and since our application structure hasn't changed I don't even know where to look. – shanethehat Apr 12 '11 at 15:32

I believe The_asMan is on the right track. I believe you're either getting a runtime error that's causing this or you've managed to build your object inheritance using the flash IDE in such a way that you've essentially "prototyped" over the MovieClip class. If you were ever an AS2 or AS1 person you'll get what I mean by that. Since your class is essentially empty I'm leaning toward option 2. I believe you've somehow overridden the MovieClip class or prototyped over it using the Flash UI.

OR

You've built out your object wrong and placed multiple instances on the stage at design time. Like this:

enter image description here

The problem of course would be that instead of making this library object a CLASS OF TYPE your custom class, with a unique identifier, you've simply linked the contents of this movie clip to a single class. In this case, creating multiple instances on the stage using the design UI would technically produce errors, so at runtime flash is probably compensating automatically for this mistake by declaring these objects into their own dynamically generated classes, which would blow away all of your functionality in an anomalous way. The proper way to do this would be to either leave your export for actionscript configuration as is and create instances of this class in code, or set the base class of the object to your custom class and give it a unique identifier (if you want to layout in design view, example below).

enter image description here

So now flash knows ahead of time that you've created objects in the design view with a specific base class and knows that you want to inherit from it. In the above condition, the bytecode hits the virtual machine and it goes "WOA, you need 10 copies of the exact same class on the stage? Well that won't work so here let me create some generic objects here for you with those visual contents in them." Anyway I think I'm repeating myself so hopefully this is helpful. Just a theory. :)

share|improve this answer
I've actually been playing around with this a lot and have narrowed it down to using document classes that extend Movieclip, and like you say, it's like doing so overwrites the definition of MovieClip in the applicationDomain. Problem is, I can't explain why this happens so have no idea how to solve it. – shanethehat Apr 15 '11 at 13:34
Well based on your comments about the fact that you cannot share anymore insight into the problem by providing code/files anything, I'd say it's time to cancel this question and possibly even have it deleted. – Digital Architect Apr 15 '11 at 13:41
Simply because without more information it's impossible to really do little more than guess. – Digital Architect Apr 15 '11 at 13:41
Sorry, not that it overwrites MovieClip, the properties and methods are still available, just that it destroys any code on the timeline. – shanethehat Apr 15 '11 at 13:44
You may be right, I need to find time to build a working model I can show publicly. I was hoping that it might've been a problem someone had already experienced. – shanethehat Apr 15 '11 at 13:48
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.