pls someone help me resolve this. one of the layers in my flash document is not showing in the movie, even though it shows very well in the timeline. it is not a guide layer, so i expect it to show well in the movie but it doesnt, what is wrong with it.

Dani AI

Generated

, a few common gotchas can make a layer look fine on the timeline but vanish in the published SWF. Beyond what and raised, check for masking and timeline sync issues. If your layer is under a mask or its sibling is set as a mask, content will be clipped at runtime; make sure the layer type is Normal and not Masked, and that any mask actually reveals your art . Also confirm the frames actually play: your layer needs frames spanning the same range as the main timeline, and there is no earlier stop() that prevents reaching the frames where the art exists. If the content is inside a symbol, remember Graphics sync to the parent timeline while Movie Clips do not; ensure the instance shows something on frame 1 or that your parent timeline reaches the frames where that symbol has artwork .

Runtime code can also hide or cover it. Search for code that toggles visible, calls removeChild, or jumps away with gotoAndStop. To quickly rule that out, give the instance a name (say myClip) and temporarily add this on the same frame:

myClip.visible = true;
myClip.parent.setChildIndex(myClip, myClip.parent.numChildren - 1);

That forces it visible and to the top of the display list. See and [setChildIndex](()).

One more edge case: if the layer is dynamic or input text, embed the font glyphs or it can disappear at publish time even though it looks fine on stage . Control > Test Movie is the most reliable way to preview the real, published behavior.

Recommended Answers

All 2 Replies

Have you checked that the opacity is set to >0% for the part of the movie you want to see it in and is it definitely on the stage not dragged of at one point?

If it is an image is it still in the library?

Moving images will move to the top, covering other content, unless you specifically tell them not to.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.