I have a similar problem to the question addressed here:

Switching of depths causes duplication of MC

Here is the relevant code:

var widget:DisplayObjectContainer = getSlideObjectByName("TWidgetQuestion" + properties.WInst);
for (var i = 0; i < widget.numChildren; i++)
   {
    if(widget.getChildAt(i) is MovieClip) {
        (widget.getChildAt(i) as MovieClip).stop();
    }
}
widgetSlide.setChildIndex(widget, widgetSlide.numChildren - (int(properties.NoOfCaptions)) - 1);

widgetSlide is the parent movieclip. properties.NoOfCaptions is always a string than equals "3".

The code does what is intended and moves the widget to the desired z order, but there is an intermittent problem where sometimes the movieclip is duplicated up to 4 times. I can't see why the problem is intermittent, but the same published swf might be duplicated one time it is run but not another.

The for loop in the above code has no effect - this was my attempt at fixing the issue. I have also tried simply adding "stop();" at the start of the function.

Does anybody have any suggestions? My theory is that I'm stopping the wrong movieclip(s).

Further information:

  • This code is in a Question Widget running in an Adobe Captivate Project
  • The widget is using the Widget Factory library ( http://www.infosemantics.com.au/widgetfactory/doco/index.html )
  • The quoted code runs at the start of the enterRuntime function, which is called when the widget loads.
  • I'm using AS3 and Adobe Captivate and Flash CS5

Thanks in advance.

Andrew

UPDATE: Tried using the script at http://www.unfocus.com/2009/12/07/stop-all-child-movieclips-in-flash-with-actionscript-3-0/ to stop everything but this did not work. I took the function directly from the website linked and called it like this:

 var widget:DisplayObjectContainer = getSlideObjectByName("TWidgetQuestion" + properties.WInst);
 stopAll(widget);
 widgetSlide.setChildIndex(widget, widgetSlide.numChildren - (int(properties.NoOfCaptions)) - 1);

So maybe it's a different problem?

UPDATE: From further reading, I've come to the conclusion that changing z-order and using timeline in Flash are in no way compatible. Since Captivate relies on use of the timeline, I think I'm going to have to sacrifice changing the z-order and come up with a work-around in Captivate.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.