ActionScript 2.0 :: Asign OnRelease() To A Duplicated Movie Clip?
Dec 13, 2009
PHP Code:
pressed = false;bookArray =["0","1","2","3","4"];for (j=0;j < bookArray.length; j++){_root.shelf.attachMovie("book1","book"+j,_root.shelf.getNextHighestDepth()) _root.shelf["book" +j]._X = (j * 30); _root.shelf["book" +j]._Y = -6;_root.shelf["book" +j].id = j;_root.shelf["book" +j].onRelease = function () if (!pressed){ moveBooks(id,40); trace ("clicked on: " + id);}}
Now, the duplication works great, all books get placed well, BUT I'm having trouble with setting the variable id inside of the newly attached movieclip _root.shelf["book" +j] so I can later on use it on my onRelease function.
View 1 Replies
Similar Posts:
Jan 29, 2010
how to duplicate movie clips which allow me to drag every movie clip duplicated.
View 4 Replies
Nov 19, 2009
I have attached a duplicate movie script action on a button to create a new copy of the clip (F900) with each press. This seems to work well; however, I can not, for the life of me, figure out how to create the script to remove the duplicated movie clipHere is the script I am using for the duplication and I did also attach the fla file:on (release) { _root.F900.duplicateMovieClip ("F900_"+"x", x ); setProperty ("F900_"+"x", _x, 300);setProperty ("F900_"+"x", _y, 200); x++;}Once I figure this out I would like to add different aircraft to it but that is not terribly important right now.
View 6 Replies
Mar 11, 2005
I use this code on frame 1:
Code:
topEdge = 0
leftEdge = 0
rightEdge = 550; //length of stage, CHANGE THIS
[Code]....
and it works great, but the flakes get duplicated even when i go to frame 2. What I would like is code to get rid of the movie clip
View 10 Replies
Mar 11, 2005
I use this code on frame 1:[code]and it works great, but the flakes get duplicated even when i go to frame 2. What I would like is code to get rid of the movie clip.
View 10 Replies
Oct 5, 2006
so i need to load a MC into the clips made with
Code:
on (keyPress "a") {
duplicateMovieClip(_root.blank, "a" + k, k);
[code].....
View 10 Replies
Jul 31, 2003
I created a button that duplicates a movie clip, I want the user to be able to drag the duplicated movie clip. Right now, it duplicates the movie clip but when I try to drag it, it moves the first movie clip (the one being duplicated) instead of the one which was duplicated.
View 6 Replies
Apr 4, 2009
I want to remove every duplicated clip with the clip.OnRelease bellow[code]...
View 1 Replies
Mar 16, 2010
for (i=1; i<10; i++) {
nameMC.duplicateMovieClip("nameMC"+i, i, {_y:+position});
var position = position +150
[code].....
View 2 Replies
Dec 23, 2004
how you can attach some actionscript to a duplicated movie clip.
View 4 Replies
Jan 13, 2011
here is my code
ham_mc.onPress=function(){
startDrag(this);
}
ham_mc.onRelease=ham_mc.onReleaseOutside=function(){
[code]...
The user can at first drag the movie clip. When released, the duplicateMovieClip command runs, leaving a new ham movie clip in the position the first is dragged to.When I click and drag the first ham movie click again, the duplicateMovieClip runs again but REPLACES the previous generated movie clip. I added x and x++ in an attempt to give the movie clip duplication a different name every time, but this doesn't solve it.How do I change this code so that a NEW ham_mc is created every time, rather than overwriting the old one.
View 2 Replies
Jan 20, 2010
How do you remove each attached/duplicated movie clip on the screen?
Is there an easy script for this?
View 2 Replies
Mar 17, 2004
I have a duplicated movie clip and that layer is inside a mask. I would like to mask that but it doesn't work. I have uploaded the fla so you can take a look.
View 6 Replies
May 14, 2006
I have created a MovieClip in the library that consist of buttons, graphics and other MovieClips. When the movie starts I attach this movie clip to a newly createdEmptyMovieclip like so
[Code]....
So all that works fine, except when I add a onRelease event to a duplicated MovieClip it does not seem to respond. So I was wondering if the duplicateMovieClip function does not copy the button inside the original MovieClip. The code for the button is
[code]....
View 1 Replies
Jun 23, 2011
I have created a movie clip with the following path to a dynamic text field:
_root.i_lotteryball1.i_ballstrip.i_text.d_text1.text = _global.text1;
I have then duplicated the 'i_lotteryball1' movie clip, and called it 'i_lotteryball2'.When I try:
_root.i_lotteryball2.i_ballstrip.i_text.d_text1.text = _global.text2;
It changes the text in 'i_lotteryball1' text field aswell as 'i_lotteryball2' text field with the value of '_global.text2' How can I update each text field with different values.When I try to change the instance name of the text field inside 'i_lotteryball2' to 'd_text2', it changes the 'i_lotteryball1' text field instance name aswell to 'd_text2'!
My objective:
_root.i_lotteryball1.i_ballstrip.i_text.d_text1.text = _global.text1;
_root.i_lotteryball2.i_ballstrip.i_text.d_text2.text = _global.text1;
View 7 Replies
Jul 15, 2010
I have an image gallery where the enlarged image wont close. Its really frustrating! after clicking the thumb the larger image loads into fullImage_mc, and I would like to click the enlarged image and close it. What am I doing wrong? Please have a look at the source files and set me straight[code]...
View 3 Replies
Jul 18, 2009
Im pulling images from an xml file and I want to attach an onRelase and onRollOver event to each one, but it's not working
var thumbWidth = 24;
var thumbHeight = 24;
var xml = new XML();
[Code]....
View 8 Replies
Oct 8, 2003
I am trying to create a script that resizes my Movie Clip in a smooth motion.
View 4 Replies
Apr 6, 2011
error in my movie clip. The code is working just fine. The effects are just what I needed. I have a set of 24 buttons, executing 24 URLs when clicked. buttons are responding on rollover, onRollout and onRelease states.But the problem is when I click the butoons randomly and very fast, multiple buttons remins in onRelease state (as if more than one button has been selected). I do not undetastand wheather this a problem with my coding or problem with my settinf in flash or a bug in flash itself (i'm too small to detect a bug in flash though!!). My setting are: actionscript 1. fps 30.
[Code]...
View 2 Replies
Nov 25, 2009
I am currently trying to make a photo gallery using flash. I have made a scrolling menu and want to incorperate it into the photo gallery, but, my photo gallery uses the onRelease function. My scrolling menu requires the movie clips to be inside another movie clip called panel. Is there a way to add the onRelease function to a movie clip INSIDE another movie clip? Here is the code for the scrolling menu:
[Code].....
View 3 Replies
Sep 23, 2009
i am trying to do a survey and i have 3 buttons, each one represent an answer each button is a movie and i am wondering how to call a movie from my library to a empty movie clip called container when onRelease is used
[Code]....
View 6 Replies
Feb 23, 2009
I need to hold movie clip name into a variable or array...I used to make movie clip on stage.
for(i=0;i<total;i++){
duplicateMovieClip("dots", newm[i], this.getNextHighestDepth());
dots1._x=xcor[0];
[Code]....
I am asigning names to moviclips from a XML file... this code working fine and creating 2 movieclips named dot1 and dot2. What I need use a array or variable which can hold this movieclips name. So I can use this code like this way...
newm[i]._x=xcor[i];
newm[i]._y=ycor[i];
View 0 Replies
Aug 19, 2003
[AS]
amount = 1;
i = 1;
while (amount<20) {
[code]....
With that done, you can now do something like:
_root["box"+i].onRelease or whatever you want am i right?So with that said, that targets all the duplicated clips. So is it possible to just target certain ones? like the 3rd, 9th etc? [EDIT] Since the duplicated boxes should be called box1, box2 etc, I have tried something like:
_root.box1.onRelease.....
but no luck either.
View 14 Replies
Nov 22, 2003
Im working on a rock climbing game, and used duplicateMovieClip() to make all the snow. When the character gets to the top of the mountain, the movie goes to the next scene, but the duplicated snow is still there. Look through the .fla at [URL]
View 5 Replies
Feb 29, 2004
When you duplicate a movieclip or generate one through AS hittest will allways return true. I tried to make a selection script,by putting the code below into the frame. It makes a rectangle to select charclip movieclips (duplicated and numbered, therefor the for loop) to select them, like when you select icons on a desktop. Unfortunately, it will select all charclips wether theyre inside the rectangle or not. I tried to confirm this behaviour by making a simple hittest script like the one discribed on the kirupa actionscript tutorial, with a moviecript and a duplicated one. The moviescript was detected when it actually hit it, the duplicated one was detected all the time. How do I circumvent this? Should I ducplicate in an existing movieclip or something?
_root.createEmptyMovieClip("sfield",10000000);
_root.onMouseDown = function(){
x=_xmouse;
y=_ymouse;
[code]....
View 7 Replies
Apr 21, 2004
i am currently making a game , and for some reason the hittest on my duplicated movie clips isnt working i know how to do them , and know it should be working , because it works on one of the movie clips but none of the others so im guessing it something to do with depth?
View 2 Replies
Jan 19, 2005
just wondering if theres a way to pass variables to a duplicated movie.Ill be creating duplicate movies very fast (about 20 per second)and want them each to have differrent variables to work with.duplicating with that , and i want to pass 3 variables to the new movie clipdot.duplicateMovieClip("dot"+currdot, this.getNextHighestDepth(), {_x: xpos, _y:ypos});
View 3 Replies
May 6, 2005
How do I change the y position for the duplicated movie clips I have created?This is the code I have used to create the movie clips. [code]
View 14 Replies
Aug 29, 2005
i'm trying to have the text and position changed of a duplicated movie containing a text button. does any one knows how this would be possible?so you have the movie "options" thats being duplicated.in the movie you have the text named sub [code]probably basic actionscripting, but i've been trying more than an hour without any result.
View 1 Replies
Apr 25, 2007
I am trying to create a hitTest between two duplicated objects. The code below is on a bullet. Bullets hit "bad" MCs that are called bad + x (X being a number from 22 - 40). I can't get it to work. I belive that I am not referencing the duplicated MCs correctly
Code:
for (x=22; x<42; x++) {
if (this.hitTest("_root.bad" + x)) {
[code].....
View 2 Replies