ActionScript 2.0 :: Making Duplicated Movieclips Into Buttons?
Sep 29, 2005
How can I get my movieclip which has been duplicated to act as a button? Neither of these seem to work:
Code:
"thumbContainer"+nextPicture.onMouseDown = function(){
trace("Clicked")
[code]....
View 6 Replies
Similar Posts:
Nov 20, 2009
I have dynamically attached a number of movieclips inside a another movieclip on the stage, and now I want them to act as buttons, but I can't work out how. They are named as they are created, so I know I can target them, but as to how to assign an onRelease functions to them I have no idea.I don't want to hard code a load of onReleases, as the number of movieclips will change depending on outside data, how I could do this with a loop or something, given that I have an array of their names?
View 4 Replies
Jul 22, 2009
I'm getting frustrated with a project I'm working on. The problem I'm having now is trying to make a breadcrumbing list that is masked within an area like below.
Each breadcrumb is a duplicated movieclip that adds new text and resizes to fit the text as needed then moved over so that it is spaced evenly. All is well until the next duplicate which is beyond the mask area. When a duplicate is found to be beyond the right edge of the mask area, everything moves to the left so that the new duplicate will fit in its entirety. The whole thing blows up and releases all of the previous movieclips from the mask layer like below. I am using CS3 Actionscript 3 Publishing to Player 9.
View 3 Replies
Dec 12, 2006
I'm working with a holiday card and can't figure out how to mask the snow that I've generated.
View 1 Replies
Apr 8, 2002
I was wondering if anyone could tell how I could go about removing or deleting movie clips that have been created with a for loop. Here is my code that I have attached to a movieclip on the main stage.
onClipEvent (enterFrame) {
for (i=1; i<=10; i++) {
duplicateMovieClip("_root.moveline", "_root.newline" + i, i);
[code].....
View 1 Replies
Jul 12, 2009
I need to load in xml text to dynamic text fields inside duplicated movieclips. is it possible to do that? I'm using AS 2.0.this is my hierarchy: parent.btns.intNavbar.label_mc.buttText.the attribute name in my xml is menuText.this is my code: (intNavbar is the main movieclip I'm duplicating)
Code:
duplicateMovieClip(_parent.btns.intNavbar, "nav"+num, _parent.btns.getNextHighestDepth());
navRef = _parent.btns["nav"+num];
[code]........
View 2 Replies
Apr 9, 2010
I have set up a Qwerty keyboard within a swf using duplicateMovieClip() - all works fine. If I have no tabbing whatsoever then I can use the tab key to randomly jump all over the keyboard.
But I would like it to tab in an order. Other buttons at the _root level are tabbing fine but these dynamically created ones are not doing a thing.
The keyboard buttons are created within a movieclip called mcContent which is sat at the _root level, anything within this mc is usually referenced by mcContent. or _level0.mcContent. (if it is being really fussy).
I have an instructions button - if this is NOT included in the tabIndex then the tabbing will work on the keyboard, erratically, but it at least goes there. As soon as I set _root.mcInstructionsBtn.tabIndex = 1; then nothing but the _root level buttons work
I have tried to add the tabIndex when creating the movieclips but this has not worked either. I have tried to set the tabIndex in a copy version where the keyboard buttons are created at the _root level and it functions exactly the same.
View 1 Replies
Feb 21, 2011
ActionScript Code:
_root.mc.duplicateMovieClip(mc1, 99, {mctext:"this is mc1", _y:200, _x:200})
_root.mc.duplicateMovieClip(mc2, 98, {mctext:"this is mc2",_y:300, _x:300})
This is really drive me crazy! Why won't this work? I have tried
ActionScript Code:
eval(mc1).mctext = "this is mc1"
and it didn't work. I have also tried
ActionScript Code:
_root[mc1].mctext = "this is mc1"
but still it didn't work.
EDIT: I added the file
View 1 Replies
Sep 26, 2006
Is there a way to link duplicated movieclips to the library? Because I need to attach these duplicated mc's to an other mc.
So my problem is that I don't have a linkage identifier?
View 2 Replies
Sep 13, 2007
Each duplicated clip is a different height to fit some xml text.
How do I vertically space out the duplicated movie clips so they don't overlap?
Code:
result_mc.duplicateMovieClip("mc" + i,i);
result_mc._visible = false;
//Y Placement
[Code].....
View 1 Replies
Nov 24, 2005
Is there (or what is the) best method to address duplicated movieclips? For example if you duplicate a number of movieclips (or attach or anything else) through a for loop and give them names like mc1, mc2, etc, how can you address them outside the loop? Especially if the number of times you duplicate the clips is read from a file which can change constantly. Example - an image gallery where you just add the files to your xml and they show up in the gallery.
View 5 Replies
Apr 12, 2007
i have a movie clip on the stage, and i need its depth to always be higher than everything, but other movieclips are being duplicated constantly. How do i do this?
View 2 Replies
Mar 27, 2005
I am trying to do a bit of code that duplicates a movieclip with an input text box inside it, which the user can then position wherever they want on the stage.
Now, I've been monkeying about with this bit of code (on the frame);
box01.onPress = function() {
var depth = this._parent.getNextHighestDepth();
var init = {};
[Code].....
This works fine for duplicating and positioning the movieclips, but when I try and input text into the duplicated movieclip's input text box, it won't have any of it. I have tried everything I can think of, from trying to isolate the drag, to getting the input text box to position itself dynamically (kinda like a startdrag) but I can't get anything to work!
View 5 Replies
Mar 29, 2007
Im writing an application that parses xml to display a menu system in Flash. The same loop that grabs the xml creates a new movie clip for each node(menuitem). I need to set a delay between the duplicated movie clips so they appear one after another rather than all at the same time. Ive tried a few different things (interval and timer) but havent got it to work.
Code:
var item_spacing = 60;
var item_count = 0;
var item_count_next = 0;
var newy = 0;
_global.itemNumber = "";
function CreateMenu(menu_xml){
[Code] .....
View 2 Replies
Jul 3, 2008
It seems like the random variables in my duplicated movieclips are all the same, any way to change this? To explain a bit more in detail: I got a movieclip with a few random variables and actions and I duplicate this movieclip and want the duplicate to have different random variables than the first one, but it gets identical ones.
View 7 Replies
Nov 18, 2005
I'm working on a piece for work. I need to figure out how to add unique dynamic text fields to duplicated movieclips. Unique as in unique instance names and variable names. I have a movieclip on the stage that contains a dynamic text field.
the text field will house text that is being pulled from an xml file.What I need is to have the dynamic text field in all the duplicated movieclips have a unique instance name and variable name.I assume that a nested for loop would be required, but I'm not sure as I am not the greatest actionscripter. Here's what I have so far:
myPhoto = new XML();
myPhoto.ignoreWhite = true;
myPhoto.onLoad = function(success) {
[code]....
View 12 Replies
Nov 22, 2005
I have a clip, duplicated to realize the titles of a menu. How can i use these duplicated clips to load the submenus? (The submenu is another clip, duplicated using the numbers contained in the same array)
My script (or, i'd better say, Stringy's!) is:
/*
array: its lenght gives me the number of titles, each number inside the quantity of submenu for each title
*/
[Code]....
View 1 Replies
Nov 9, 2002
I made a MC thith button in it, I dublikated this MC in amount of text fields ... this is a tree, spending hare some time you notice that wile browsing some buttons blinks for unknown reason.. This is my first project and I want to do things wright.. but this blinking.. [URL]
View 2 Replies
Jun 5, 2010
Situation is I got a Mc called "thumb" which I am duplicating like this bellow
[Code]....
Now I need to make make these thumbs clickable for different action. Like if I click on "this.thumb3" it will return "3"; This problem was solved at this forum before but when actionscript.org was attacked by some hacker that post was lost. All I can remember that I got a code like bellow
[Code]....
View 9 Replies
Apr 15, 2011
lets say i have dynamically duplicated movieClips ID's stored in array list. i want to add a onPress event to them. how do i do it?
[Code]...
View 5 Replies
Oct 21, 2008
I am trying to load my images with xml and then turn them into movieclips and attach an eventlistener. With the code below this is the error I get.
ReferenceError: Error #1069: Property name not found on flash.net.URLLoader and there is no default value.at MethodInfo-1()
View 3 Replies
May 1, 2011
what i have is a white picture frame, and within the frame lays my picture,
how can i make them work together in a way that both are one MovieClip!?
ActionScript Code:
addChild(WhiteFrame)
WhiteFrame.Container.addChild(MyPic)
[Code].....
View 2 Replies
Nov 25, 2007
I've made a draggable menu for a flash site (menu_mc), but the buttons don't work inside the movie clip when I apply startDrag. To remedy the problem, I simply made another movie clip (menubuttons). I now want to more or less attach the two movieclips:
Code:
if (menu_mc.moveTo(x,y)) {
menubuttons.moveTo(menu_mc.x,menu_mc.y)
};
I also tried some pretty iffy statements:
Code:
menubuttons._x = menu_mc._x
That last one works initially, but when I move menu_mc, menubuttons stays put.
View 2 Replies
Jul 21, 2009
I have a movieclip that effectively functions as a button, which we'll call BtnA. When I click it, another movieclip containing the content (CntntA) fades in (this mc is on another layer). Then when I click another button (BtnB) CntntA fades out and CntntB fades in. I've got all this working fine for now, but the problem I have is that once BtnA is clicked, it is still clickable and it fades CntntA back in even though it is already active. Is there a way to disable BtnA after CntntA has appeared? So u can still see it, but you cant click it? Obviously I'll need to do this with BtnB and any future buttons I add
View 1 Replies
Dec 22, 2011
I have twenty movieclips on stage with these names:
g1
g2
g3
g4
....
How can I make invisible with a for loop, like
for (i = 1; i < 20; i++) {
g+i.visible=false;
}
This that not work.
View 1 Replies
Sep 18, 2010
Can I make an array of movieclips, and then make all of them visible? some-thing like:
ActionScript Code:
myArray[1] = new MovieClip();
myArray.visible = true;
[code].....
View 2 Replies
Sep 28, 2010
When you click on a movieclip in the menu, it is then copied and added to the container_mc movieclip.
My problem is that I can't figure out how to make the movieclips draggable once they are in the container_mc.
I tried the following as a test but its only working for the existing movieclip, not the new one like I want it to[code]...
View 2 Replies
Apr 16, 2003
I am basically trying to duplicate a movieclip by using a button.. (no probs there).however, i want to drag each movie clip individually.. ( my brain froze)here is my butchered code..// graphic is the mc i wanna drag, n is the textfield that i want to count up.
on (press) {
addmore = "graphic" add n;
duplicateMovieClip("graphic", addmore, n);
[code]......
View 14 Replies
Mar 1, 2007
I have several movieclips placed on the timeline that I want to be invisible and not run until the user clicks a button. The movieclips are linked to a class I set up:
Code:
class Hidestop extends MovieClip {
function onLoad() {
[Code]....
The problem is that some, but not all, movieclips show briefly when they load before becoming invisible. I can get around this by starting each movieclip with a blank frame, but there must be a better way.
View 11 Replies
Jun 4, 2009
I mostly use flash for the animation, so my action script tends to be mostly functional.
I am now however having an issue, i am using a variable called language which I am setting in frame one as "dutch", "english" , "german" etc... Im then using this to set dynamic text as appropriate in each frame as necessary.(and yes i may switch this to case statements )
if (language == "dutch")
{ tcMC.peasantBubble1.peasantSpeech.text= "Bescherm je een schat?"};
My problem is however that one Movieclip does not see the language variable.
Is there anway in CS4 i can direct it to where it is, or define the varibale instead to be global (perhaps id have to change it from a string though)?
View 2 Replies