Duplicate A Movie Clip And Then Drag It?
I would like to duplicate a movie clip and then drag the duplicate. How would I go about doing that? Could you help me with the syntax on that?
Thanks.
Ultrashock Forums > Flash > ActionScript
Posted on: 2005-04-18
View Complete Forum Thread with Replies
Sponsored Links:
Drag And Duplicate Movie Clip
i want to make something where i would have 3 different pair of eyes , nose and mouth, and one shape of a head. all the parts would be on one side, you
can drag a copy of the eyes over to the head to build a face, but be able to drag over 10 pairs of eyes if you wish. does that make sense?
does anyone know of a tutorial on this, or have some code i could play around with.
thank you.
View Replies !
View Related
Duplicate Movie Clip And Drag?
OKay, i've got a situation:
I want to make a little something...you have this button, and you can drage it, but as soon as you start dragging it, a new one comes back at the same place, and you can take new buttons for infinity. But i want it that once you dragged a button, u can still drag it afterwards! how do i do that? I don't know that much about actionscript, at least i never used the DuplicateMovieClip functiun, i'm pretty good with hitTest and stuff, but not this, PLEASE HELP ME THIS IS A CRY FOR HELP!
I am using Flash MX
View Replies !
View Related
Why God, Help With A Duplicate Movie Clip And Drag And Drop.
I want to duplicate a movie clip and then drag that movie clip.
But when I release, it isn't stopping the drag. What gives?
on (press) {_root.green.duplicateMovieClip("eshow",2)
startDrag("_root.eshow");
_root.eshow._alpha =22
}
on (release) {
_root.eshow.stopDrag()
if (_root.green._droptarget == "/computer") {
_root.computer.gotoandStop("green");
}
}
View Replies !
View Related
Why God, Help With A Duplicate Movie Clip And Drag And Drop.
I want to duplicate a movie clip and then drag that movie clip.
But when I release, it isn't stopping the drag. What gives?
on (press) {_root.green.duplicateMovieClip("eshow",2)
startDrag("_root.eshow");
_root.eshow._alpha =22
}
on (release) {
_root.eshow.stopDrag()
if (_root.green._droptarget == "/computer") {
_root.computer.gotoandStop("green");
}
}
View Replies !
View Related
Duplicate Movie Clip And Drag & Drop
Hello,
I need a movie clip that I want duplicate to main stage by drag and drop or mouse click. And I want to redrag and drop, rotate, scale the clip on main stage.
any scripts?
pls help me.
Thanks in Advance
Biju Subhash
please see this link I need like this (http://www.jordans.com/planengine/jrd-001_RP.asp)
View Replies !
View Related
I Want To Craete And Drag The Duplicate Movie Clip, Can Any Body Hel Me.
var mySelection = "";
var totalmc = 0;
var depth = 40;
MovieClip.prototype.dragging = function() {
this._x = _xmouse;
this._y = _ymouse;
this.startDrag(true);
mySelection = this;
this.onMouseUp = function() {
this.duplicate();
stopDrag();
};
};
MovieClip.prototype.duplicate = function() {
mc2 = this.duplicateMovieClip("mc"+i++, _root.getNextHighestDepth());
mc2._x = _xmouse;
mc2._y = _ymouse;
};
function Press() {
mc = attachMovie("idwire", "wire"+totalmc++, this.getNextHighestDepth());
mc.onPress = Press;
mc.dragging();
}
wire.onPress = Press;
View Replies !
View Related
Making A Duplicate Movie Clip Click And Drag-able
Please pardon the beginner question. I took a flash class so long ago, and only recently have been trying to remember just how to use the program. I have a, probably simple, movie clip question.
What I want to do, is have a movie clip that you can click and drag out a copy of the movie clip, place it somewhere, then be able to drag out another copy.
I know how to duplicate a movie clip, I know how to make a movie clip dragable…
What I can’t seem to remember how to do is: How do I make the copy of the clip click and dragable? So far I can get it to make a copy on press, but I cant remember how to give the copy of the clip different properties.
Thanks for the help
p.s Please forgive me if this is the wrong forum.
View Replies !
View Related
Dude, I Give Up. Help With Drag And Drop Duplicate Movie Clip Please.
ok, i have been trying to get this to work forever. What im doing here is making a flash site thats like a real time strategy game. You have to build stuff in order to unlock new sections of the site.
check out this: http://www.rasterica.com/thomas/quar...S_Nav/new.html
click on build, then drag the Main button and release somewhere above. Notice that when you release it sticks to the cursor and doesnt stop dragging. Now, hit cancel and notice that the main clip is still loaded and works correctly if you drag and drop it.
Quote:
on (press) {
_root.drag_main.duplicateMovieClip("main1", 2)
_root.main1.startDrag();
}
on (release) {
stopDrag();
_root.main1.gotoAndPlay(5);
}
this works perfectly on an object that isnt duplicated. It seems when you first duplicate a movie clip and immediately tell it to startDrag something messes up.
What im going for here is when you release, it goes to the animation. But for some reason its conflicting with something else when i load it the first time.
FLA- http://www.rasterica.com/thomas/quar...TS_Nav/new.fla
View Replies !
View Related
Dude, I Give Up. Help With Drag And Drop Duplicate Movie Clip Please.
ok, i have been trying to get this to work forever. What im doing here is making a flash site thats like a real time strategy game. You have to build stuff in order to unlock new sections of the site.
check out this: http://www.rasterica.com/thomas/quar...S_Nav/new.html
click on build, then drag the Main button and release somewhere above. Notice that when you release it sticks to the cursor and doesnt stop dragging. Now, hit cancel and notice that the main clip is still loaded and works correctly if you drag and drop it.
Quote:
on (press) {
_root.drag_main.duplicateMovieClip("main1", 2)
_root.main1.startDrag();
}
on (release) {
stopDrag();
_root.main1.gotoAndPlay(5);
}
this works perfectly on an object that isnt duplicated. It seems when you first duplicate a movie clip and immediately tell it to startDrag something messes up.
What im going for here is when you release, it goes to the animation. But for some reason its conflicting with something else when i load it the first time.
FLA- http://www.rasterica.com/thomas/quar...TS_Nav/new.fla
View Replies !
View Related
Drag/duplicate MC's Out Of Scroller Pane Onto Movie
let's say you have clipart MC's inside of a movie clip which scrolls...just like a library of images (viewed like the flash library for instance) and you want to drag those items out of there.
I can't seem to get a duplicate movie clip, attach or etc...of those items out of that movie clip that scrolls....it just wants to duplicate inside of there....
any ideas? I'm desperate!!
~fit
View Replies !
View Related
Drag And Drop Duplicate Movie Clips
I have messed with this thing for a while, not getting very far. What I am trying to do is have some icons that I can drag and drop as many copies as i want in a target area, but then i want to be able to select those copies and drag and drop those around in the target area. i know the ghetto way is to put movie clip on top of movie clip, but i want it cleaner, and more efficient than that. Anyone know any tutorials,sites, or have prior experience with this code that can help me out would be awesome.
View Replies !
View Related
Duplicate Movie Clip / Remove Movie Clip Woes
I have built a an MC that will Duplicate an MC it does this a specified 114 times.
Once all of the MCs are in the Movie I want to pick a movie clip and remove it randomly. I am doing this now but It takes to long because it is looking for numbers that are no longer existant instead of just going for the ones that are already there.
I was talking to one of the programmers at my work and he was telling me to build an array that adds in a each duplicate mc name
for instance
amount = 1
I have 114 boxes each box as it is duplicated gets renamed box + amount
amount + 1
until it gets to 114
then it looks for each box1 - box 114 and gets rid of each box 1 - 114
But how could I get it so I remove lets say box 84 it wont look for 84 for any more
I was thinking
I dynamically rename every mc > 85 to name amount - 1
and have it randomly look for 113 the next time around and so on til it finally gets to zero...
Any one have any suggestions for me?
Or if you can point me in a direction that would be good as well
Thanks a bunch
View Replies !
View Related
Duplicate Movieclip, Drag Duplicate, Leave Original Behind
Hello all,
I have been searching frantically for an answer to this. I know it has to be easy....
I want to duplicate a movieclip on press and also drag the duplicate, leaving the original behind. I've attached a sample of what I'm doing. Does anyone have any ideas? Is there a way to target the duplicated movieclip to drag that? And leave the original in it's original location?
Any help, guidance, nudging would be greatly appreciated. I've been trying to figure this out for hours.
Thanks,
jessicuh
View Replies !
View Related
Control A Movie Clip From A Drag N Drop Movie Clip
I need a script that allows the user to control the timeline of a MC from a drag-able MC.
Basically I want a MC that drags is constrained to the x position with a limited movement of say 100 Pixels, as the drag MC is moved along it controls the play position of a tween in a different MC.
So when you push the Drag MC back and forth it moves the second MC play position back and forth.
a great example of this is at http://fable.lionhead.com/fable.html
on the pop up book parts
View Replies !
View Related
Flash 5 - Load Movie, And Duplicate Movie Clip? URGENT
I have a database of swfs. I'm loading a swf into a movieclip. When I duplicate that movie clip, it duplicates but the loaded swf does not duplicate with it. I've tried using attachMovieclip and I get the same result. Any ideas for a work around?
Duplicate and attach only seem to work when the asset already resides inside the movie clip....is this right? PLEASE HELP!!!!!
Thanx guys.........
View Replies !
View Related
Duplicate Movie Clip
can some 1 teach me how to duplicate movie clip
i wann to duplicate a movie clip that contains a input textbox accounding to the user inpit.
lets say i let the user enter how many times he want to duplicate
then the inputtext box will be duplicate n times according to the user requirements
can this be done???
please tell me wat the action script should be
thanks a million guys
[Edited by Scorpian on 07-04-2001 at 05:01 AM]
View Replies !
View Related
Duplicate Movie Clip
I want to get a grasp on the duplicateMovieClip function... and have the following code:
pic1.duplicateMovieClip(pic2, 100);
setProperty (pic2, _x, getProperty (pic, _x) + 20));
"pic1" is a movie clip with a graphic in it, and I thought this code would copy the contents of the "pic1" MC to a new movie called "pic2," place it on the stage with _x property twenty to the right of pic1... but the clip does not appear on the stage.
Does anyone know how to properly use this function? I can;t see a tutorial anywhere around here...
View Replies !
View Related
Duplicate Movie Clip..
I've been trying to do this on my own for about 2 hours, and no matter what I do it just doesn't want to work for me. What I need to do is place a bullet hole on the wall every time the user clicks the mouse. The problem is, once I leave a bullet hole and click the mouse again, that bullet hole disappears and/or just moves over to where the user clicked the second time. I want the bullet holes to stay put on the wall. Here's the code I'm using right now:
Code:
on (press) {
setProperty ("/curX", _visible, true);
tellTarget ("/snd") {
gotoAndPlay ("GunShot");
}
setProperty ("/curX", _x, getProperty("/cur", _x));
setProperty ("/curX", _y, getProperty("/cur", _y));
n = n + 1;
duplicateMovieClip("/frag",n, 10);
setProperty (n, _x, getProperty("/cur", _x));
setProperty (n, _y, getProperty("/cur", _y));
}
cur is the gun cursor.
curX is the spark graphic from the gunshot.
frag is the bullet hole.
Does anyone see anything wrong with this code which would prevent it from working correctly? I'm almost sure it's the n = n + 1; line but I could be wrong. Any help at all would be appreciated
View Replies !
View Related
Duplicate Movie Clip
i have a movie clip with a dynamic text field in it. it gets populated through a load variables call to a php script (which is reading from a database). if i duplicate the movie clip is there a way that i can change the variable name of the text field each time the clip is duplicated so that i may populate each movie clip with different rows from the database?
-andy
View Replies !
View Related
Duplicate Movie Clip
How do I make a button to run a Movie Clip and when clicked, the button will duplicate the Movie Clip while still running the previous movie clip(s)? Also how would I remove each clip?
Any suggestions?
Thanks.
View Replies !
View Related
Duplicate Movie Clip
I want to duplicate a movie clip like:
In the 1st Frame:
_root.px.duplicateMovieClip("px" +n,n);
_root["px"+n]._x = random(377);
_root["px"+n]._y = random(60);
In the Last Frame:
removeMovieClip("px" + (n - 1));
n++;
gotoAndPlay(1);
How I Can Duplicate more Movie Clips? And how can i set a time limit in it for every clip.
View Replies !
View Related
Duplicate A Movie Clip
I have created a movie clip, actually it is a button but you know what i mean. Im tying to duplicate the clip b/c im trying to make 6 buttons for my web page. 0 through 5. The problem im haveing is that when you select the clip you want to duplicate. When I try to edit the duplicated clip it changes the main clip or button. Please help me Im new to the flash scene. Thanks!
View Replies !
View Related
Duplicate Movie Clip
hay .. guys .. flash pro right here ...
i read this somewhere in this site ..
it was a really cool effect ...
but i have a problem .. i just want this to be continues ..
i tried many things but still i couldnt figure it out ...
it is a double movie clip action ... built on idea to copy and paste in other places as the real author said .. infact this MC ... contain text .. this text is bieng copied and pasted in number of places .. the whole text scroll down ... and it changes _alpha ..
now the problem is that it takes som seconds then it gets over ..
my code is this way ..
the frame code is :
total = 300;
// change total number of texts
i = 20;
while (i<total) {
duplicateMovieClip ("text", "text" add i, i);
setProperty ("text" add i, _x, random(300));
setProperty ("text" add i, _y, 0-random(2000));
setProperty ("text" add i, _xscale, random(70));
setProperty ("text" add i, _yscale, random(70));
i += 1;
}
and the movie clip self code is :
onClipEvent (load) {
x = this._x;
y = this._y;
i = 0;
getnewalpha = true;
}
onClipEvent (enterFrame) {
this._y = y+i;
i +=1;
if (getnewalpha == true) {
targetalpha = random(50);
getnewalpha = false;
}
alphaspeed = 0.4;
alpha_increase = (targetalpha-this._alpha)*alphaspeed;
this._alpha += alpha_increase;
if (this._alpha<targetalpha) {
getnewalpha = true;
}
}
well ... try to figure out how to make it continues .. you can find an example in here :
http://www.alertsites.be/example/example.html
http://www.alertsites.be/example/example.fla
please reply me
thanx
View Replies !
View Related
Duplicate Movie Clip
hi,
On the scene I want 2 insects.I scripted one insect movie,when you click it,it gets crushed.Then ý duplicate it but when ý click on the second movie clip ,still first one crushs.Can you tell me what to do to crush the second one?
View Replies !
View Related
Duplicate Movie Clip?
I have a movie clip which is an short animation of smoke rising. I have a button that when clicked plays the animation from a frame label. What I want to happen is the movie clip to keep being duplicated over the previous one every time the button is pressed and play through the animation. I tried this but it only plays the one frame in the mc with the frame label nosesmoke, it doesnt play through the mc. Tried just a frame number but same thing. Any ideas?
on (press) {
duplicateMovieClip("rightnose", "dup", 1);
dup.gotoAndPlay("nosesmoke");
}
View Replies !
View Related
Duplicate Movie Clip
I want a bullet to fly up the screen when the user presses space. What is wrong with this code? The following code is the only code for the bullet mc
onClipEvent (load) {
counter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.SPACE)) {
duplicateMovieClip (this, "a"+counter, 10+counter);
setProperty (this, _y, this._y-=10);
counter++;
}
}
View Replies !
View Related
Duplicate Movie Clip?
This is kind of a beginner question, but I haven't ever really worked with this and I just wondered how it works. (I already searched tutorials and other board posts with no avail)
So what exactly does duplicatemovieclip do and how do you use it?
Thanks!
Katie
View Replies !
View Related
Duplicate Movie Clip
Hi I am having a hard time with this. I am doing an effect kind of like the yugop navigation that moves back and forth dependent on the _xmouse position. That part works like a dream, but what I can't get to work correctly is the duplication of my one movie clip (contains a jpg) so that it appears to loop continuously.
It actually does duplicate about 2 or three times and then stops and runs off the screen.
Below is the code that I am using on my movie clip called 'image' which is in another *blank* movie clip called 'foto'
Any ideas what might be wrong??
Thank you in advance...
m = 0;
tmi = 2;
while (m<(tmi*2)-2) {
m++;
dup = 'image' add m;
_root.foto.image.duplicateMovieClip(dup, m+1);
_root.foto.image1._y = _root.foto.image._y+_root.foto.image._height;
_root.foto.image2._y = _root.foto.image._y-_root.foto.image._height;
}
View Replies !
View Related
Duplicate Movie Clip
is there an easy way to duplicate a movie clip on a parent level? I have a scrolling image library by using a formula to set a movie clip's x position according to where the mouse is...creating a scroll effect. anyway, when i dup a movie clip it is duplicated in the same clip which is scrolling, so it also scrolls. I want to be able to dup the clip (which is an image) so that it stays stationary while the user can still scroll using the mouse.
helf
View Replies !
View Related
Duplicate Movie Clip
i'm creating a screensaver using flash which keeps on
duplicating movieclips.
i wonder, is there a limit to how many movieclips you can duplicate? (i've got up to 5000 now, seems to be ok...)
View Replies !
View Related
Duplicate Movie Clip?
OKay, i've got a situation:
I want to make a little something...you have this button, and you can drage it, but as soon as you start dragging it, a new one comes back at the same place, and you can take new buttons for infinity. But i want it that once you dragged a button, u can still drag it afterwards! how do i do that? I don't know that much about actionscript, at least i never used the DuplicateMovieClip functiun, i'm pretty good with hitTest and stuff, but not this, PLEASE HELP ME THIS IS A CRY FOR HELP!
View Replies !
View Related
Duplicate Movie Clip
Hi there!
Any body can tell me how to solve my problem?
I have a problem: I am duplicating a movie clip using the for condition and a counter variable. My _mc contains a button that loads a .jpg instead other holder _mc with the onRelease event. I duplicate the _mc 5 times and I want each button loads 5 diferent .jpgs.
My problem is that I duplicate the _mc well but their buttons ever load the same .jpg
Help please!
cheers.
Les.-
View Replies !
View Related
Duplicate Movie Clip
OK I am going Nucking Futs trying to find a tut or something that will show me the correct way to use duplicate movie clip. Here is what I'm running and how I'm using it. I have created a 3d walkthrough of a house using swift 3D. I have taken the swf file that I exported and started entering actionscript and set up buttons so that when you click a certain direction you will look in that direction. I want to separate all of the directions into separate swf files (Which I have done). This is a perfect place for me to use duplicate movie clips. I have one empty clip in the main movie now and I call it "dummy01". I want to click on a certain direction ie left and run the "left" movie inside a duplicate version of the blank clip, and make it one layer above the one I'm in now. Then, I want to uload the movie when I don't need it anymore. How do I do this? I've been everywhere and looked at too many tutorials that speak a different language (And I am pretty damn good at using flash.....somewhat of an expert actually). I've tried doing this so many ways and it's hopeless!!! What the hell can I do?
-= greendog =-
View Replies !
View Related
Duplicate Movie Clip Help
i ahve a movie clip on root, i want to create many duplicate movie clips of that. the number of movieclip should be as in an external file. the movie clip has a dynamic text field. another text file has the values like: a1="abc" & a2="xyz" & ---- so on. i want that if two duplicate movieclips created, then first should contain the value of a1 in its dynamic text field and the second should contain the value of a2 in its text field. please help......
View Replies !
View Related
Duplicate Movie Clip
I am wanting to duplicate a movie clip, and have it loaded into a certain area where I can mask it. Although, when I duplicate the movie clip, it seems as if it just loads on top of itself. Is it possible to duplicate a movie clip, and have it placed into a loadMovie("anyclip")?
Thanks
View Replies !
View Related
Duplicate A Movie Clip?
Hi guysI started with a certain design for a drop down menu. I'll have 5 different places where I want to use the same menu. The design of it will be the same but the buttons for each of the 5 instances will be different ofcourse. I'm not sure if I should have only one movie and then duplicate it on the page and change it, or if I should have five different versions of that menu. If I have one movie clip for it, do I duplicate it in the library and then change the names of the buttons? I have no idea how that should be done.
View Replies !
View Related
Duplicate Movie Clip Help
hey all, am trying to dynamically produce 50 movie clips not going outside my stage, all with random x and y locations, speed and rotation, ive got this code on the movie clip i want to reproduce: (have only got as far as the position of the movies, dont know how to do rotation and easing/speed)
Code:
onClipEvent (load) {
amount = 50;
while(amount>0) {
this.duplicateMovieClip("newleaf",+i, i);
scale = (random(100) + 50)
this._x = random(500);
this._y = random(600);
this._xscale = scale;
this._yscale = scale;
}
}
{
im sure this is going down the right path but flash player freezes when i try and launch, where am i going wrong,
by the way im sorry if this has been asked before but the search function in the forums never seems to work.
thnx
9114
View Replies !
View Related
Duplicate Movie Clip
i've got my mouse listener set up so the dart will follow the mouse and throw...
on the second frame of the tween i removed the listener so the toss is at a set location and doesn't follow the mouse. then at the last frame of the tween adding the listener back, and creating a duplicate movie clip so it will reload the dart at the beginning position.
here is the code for the last frame of the dart tween.
stop();
_root.dartNum += 1;
_root.checkHit();
throwAgain = "dart" + dartNum;
_root.Mouse.addListener(dartListener);
duplicateMovieClip(this,throwAgain,_root.dartNum);
and here is the code for my mouseListener
dartListener = new Object();
dartListener.onMouseMove = function()
{
dartThrow._x = _xmouse;
dartThrow._y = _ymouse;
dx = dartThrow._x;
dy = dartThrow._y;
throwAgain._x = _xmouse;
throwAgain._y = _ymouse;
}
Mouse.addListener(dartListener);
the problem, the dart won't follow the mouse (the listener doesn't recognize i guess)
View Replies !
View Related
Can I Duplicate A Movie Clip?
I downloaded this fla file from Flashkit, as I was trying to learn some new stuff and I hit an area I was unsure of.
Here is the fla:
http://www.flashkit.com/movies/Inter...9595/index.php
See those windows that pop up on the main page ("about me", "clock", etc)
Can you just duplicate those, meaning, can you make more windows like that just by duplicating the movie clips???? How the heck would you do that?
Any help would be greatly appreciated.I know I'll be up all night trying to figure it out otherwise lol
View Replies !
View Related
How To Duplicate A Movie Clip
Hello everybody. I need help with a duplicate movie.
Well, I have an MC with button properties that I need to duplicate only once when I click on it, then I want that duplicate to do the same.
The duplicates will change only its _X position.
Exemple:
When I click on object 1 it will duplicate, let's call this duplicate object 2, then when I click on object 2 it will duplicate, let's call this duplicate object 3, then
when I click on object 3 it will duplicate, let's call this duplicate object 4, and so on.
Does anybody knows how to do that?
Thanks
Halanis
View Replies !
View Related
F8 Duplicate Movie Clip
Hello,
i want to try to duplicate a movie clip, but in this movieclip, there are some other timelines, motion tweens, movieclips... Th clip i use, has a text "home". I want to duplicate it, and change the text to "about". Normally i do this with copy /paste and duplicate symbol. Give it another name, change the text inside, and that works fine.
With this movie clip, i doesnt work. When i change the text, the text of my "home" movie clip is also changed.
How do I have to do this.
I hope you understand me, English is not my great language
Tx
Ronny
The FLA is on this link
Get it here
View Replies !
View Related
Duplicate Movie Clip
hey, i made a small game and for some reason my shots share the same name as my enemies... like if i shoot long enough they start disapearing by themselves
what could posibly be the reason? the code that i have for the creation of each is:
onClipEvent (load) {
laserCounter = 0;
skeetcounter = 0;
skeettimer = 0;
}
onClipEvent (enterFrame) {
skeettimer = skeettimer+1;
if (skeettimer == 50) {
skeetcounter = skeetcounter+1;
_root.skeet.duplicateMovieClip("skeet"+skeetcounte r,skeetcounter);
_root["skeet"+skeetcounter]._x = 600;
_root["skeet"+skeetcounter]._y = Math.round(Math.random()*375)+10;
skeettimer = 0;
_root["skeet"+skeetcounter]._exist = 1;
if (skeetcounter>9) {
skeetcounter = 0;
}
}
}
onClipEvent (mouseDown) {
laserCounter = laserCounter+1;
_root.Laser.duplicateMovieClip("Laser"+laserCounte r,laserCounter);
_root["laser"+laserCounter]._exist = 1;
if (laserCounter>9) {
laserCounter = 0;
}
}
thanx for any help
View Replies !
View Related
Duplicate Movie Clip
Hi,
I thought this would be something simple. I have a movie clip that loads another movie clip within in it. (menu buttons) I need that same movie clip of menu buttons available in the main.swf at a certain point in the timeline. I thought I could just drag and drop the menu button movie clip from the library onto the main timeline and have the same functionality as I do when the menu button mc is loaded into that other mc but it doesn't work
I've tried making a duplicate in the library and renaming it but my actionscript code doesn't work when I do that.
Any ideas as to why the menu button mc functions when loaded into a different mc but doesn't work if I duplicate it in the main timeline?
thanks.
View Replies !
View Related
|