Im having some problem attaching a movieclip on stage.
Im having a MovieClip that is laying on stage, and in this movieClip there is 3 other movieClip.
And each movieClip containing a button.
My problem is attaching a movieClip from library on stage when pressing a button.
i do have a movieClip as a container on stage, but nothing happen.
I guess it have something to do with my buttons being inside of a movieClip that is inside of a n other clip?
I Don’t think there’s a problem if your button is inside a clip. You just want to be careful when you write the script, to use _root or _parent, depending on where do you want to go with the command.
Maybe the problem is that (if I got it right), you have different button one upon the other: this generate a conflict with the sensible area of each button. Pay attention with that!
Hi, can you show us the line you are using to attach the movieclips?
Have you named your MovieClips with Identifiers?
Maybe if you showed us your code could be more specific.
[QUOTE=nosh247;2341007]Hi, can you show us the line you are using to attach the movieclips?
Have you named your MovieClips with Identifiers?
Maybe if you showed us your code could be more specific.[/QUOTE]
This is the code that im using on my button
on(release){
_root.container.attachMovie("video_b","video");
}
container is the instance name and linkage on the container that have placed on the root stage. Video_b is the linkage on the MovieClip that i want to attach in the container and video is the new instance name, i hoping that im totaly wrong so this can be fixed !
Everything is working now, cheers!