I have a video gallery that generates a menu from xml.I first create a container then add textfields as menu items to the container I have listeners for mouse OVER on OFF for each menu item as welll as a function to change the text color ON CLICK.What I need to do is figure out how to switch a previously clicked menu item's text color back to "OFF" color when a new menu item is clicked But I Can not figure out how to traverse the display heiracrhy to get to the textField's color in all the other menu items.
heres the function:
ActionScript Code:
//create Moviclip to hold menu
function createMenuContainer():void
{
[code]....
so the video menu item's heirachy is some thing like
but of course this does not work. I think my logic is reasonably sound I just not sure of the correct syntax to get at the textField.textColor of all the other menu items that ARE NOT clicked on the Mouse Click Event of a menu item that is clicked.
I have created 2 sprites each containing a dynamic text field child. I then add this as a child of the stage. (I have done this in order to make the text clickable with a hand cursor on mouseover)It loads in fine, I just run into problems when trying to REMOVE it the sprite containing the text."ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller."Sections concerned in red:
The issue I am having is that I have no idea how to access the Children of another MovieClip. I have 2 MovieClip's, storeFront, at frame 25, and reviewPage, at frame 60. storeFront contains a vector, cart, and I need to access it from reviewPage.
I have tried...
var appRoot:MovieClip = parent as MovieClip; buff = appRoot.getChildAt(30); review = buff.cart;
I have a swf named home.swf on the stage of home.swf I've added a Sprite with this code var onStage:bc_sprite = new bc_sprite();addChild(onStage);another swf called menu.swf loads home.swf into a loader which is added to a MovieClip named currentPage which is on the stage thusly.currentPage.addChild(swfLoader);
I have a parent swf which loads a child swf. The. Child swf is a game and when. It finishes, I need to access the score from the parent swf. How is this possible....
i have to make a drag and drop thingy in actionscript 3.0. Now we had another actionscript project before and then i had some extra classes but most things i put in the main class and it was all working fine. Someone told me that i put too much in my main class and that i should make more classes like a class for every object you interact with. Dont know if hes right but he acted like he was.
Now back to the problem. I made a main class connected directly to my fla in its properties. Then i made another class for the game itself, cause maybe it needs an intro and other things so i want to separate them in their own classes and start them with the main class. now in the class for the game itself i want to be able to click an object with the mouse. I was just testing with a trace. When i click the object it only traces like 1/20 clicks i make, tryed alot of things, when i put the same code in the main class with stage.addEvent blabla it will respond every time but as soon as i try to put in the class for my game it only responds like 1/20 times i click. Wth?
Now i can put all my code in the main class again and make another 1000 line code with a couple of other small classes but this time i want to do it right so what am i doing wrong? Heres some code too
This is the main class dressUp is the game class, it doesnt do much just define the game class and change the mouse pointer.
EDIT: We work in a project group so another reason i want to make alot classes is so we can work on different classes separately. But i promised to have this done this weekend and there not so good in actionscript either.
Personally, I prefer just having separate classes fo each object then bring them all together at compile-time, but someone I know had a problem with his game which had a lot of embeded movieclips already on the stage.
how I could go about accessing the Sprite "lmao" which is on Frame 2 of the "omg" MovieClip?
I have a character that I want to animate. Now each part of his body is a separate movieclip. What I want is that, for example, if you imagine the shoe MovieClip, I want to give it three frames - from the front, from the side, and bent.
So when I animate the character MovieClip, I would like it if I could keyframe the currentframe of the shoe MoveiClip, if that makes any sense. It's easy enough to do in ActionScript, but the problem with that is the change isn't visible until I test the movie, and when animating it's useful to see exactly what the character looks like at each frame. Is there any way of setting the current frame of child MovieClips when animating?
This is probably a fairly easy answer, but I can't figure it out. I have a dynamically added child, and I have a dynamic text box on the parent. I'm thinking that it should be possible for me to add to the text box from the child timeline, but I don't know how to target the text box.
I've been using greensock classes in a parent movie, but am now looking to use the same classes from within some child movies, but it doesn't work (I presently have to import them into each child movie - what a waste).
Do I need to create the classes as a shared library object perhaps? If so, how would I go about it? as I've only ever done this for MCs or MP3s.
What's the strategy for getting a child to access variables in a parent.I have a Main class.In that class I create instances of a Unit class and save those to an array.In the Unit class, I want to access the x and y coordinates of other instances of the Unit class.So I'd like to access that array I made in the Main class.I tried:this.parent.theArray[i].xbut that doesn't work. I tried using the get command, but I don't really know how to, so my efforts failed.
I'm adding various movieclips to the stage with the following code:var invis_obj = new invisible_li_mc();addChild(invis_obj);However, when I try to access the movieclip such asinvis_obj.buttonMode = true;I get nothing however, something like invis_obj.alpha=0; works fine..
I have a movieClip within another MovieClip. I gave the child movieClip the instance name "hSprite" and I added it to the parent movieClip stage. Now I get an error like the following.
[Fault] exception, information=ReferenceError: Error #1056: Cannot create property hSprite on com.objects.Hero. If I remove the instance name from the child movieclip, then the error goes away. but when I add the instance name back, the error reappears again.
Keep in mind that both classes are set for export. The parent class is embeded by a custom class which work perfectly fine. But the minute I give the child movieClip a instance name, the error starts up again.
I have a movieclip, with the instance name SizingBox, on the main timeline. Within that mc, I have a Slider component, with the instance name Sizer. I want to declare an action listener on the main timeline which will listen to changes for Sizer and do something based on the current value of the slider.In AS2 this was really easy, but I cannot seem to figure it out for AS3.
Code: var X = SizingBox.Sizer.value; this code gives an error.
I have a movieclip walls and a movieclip character (both on the same timeline). I want to access and change a variable inside character from the walls timeline.
Parent swf has a class loaded, lets call it 'GlobalUtilities'. Parent swf loads in child swf. Child swf wants to use some of the 'GlobalUtilities' class that is in the parent.
How can I accomplish this? The problem I'm having right now is, when I export the child swf, I'll just error out since it can't find the reference (obviously, since it's not loaded into the parent yet).
but when I put MC on stage dynamically via addChild, the first trace gives compiler error while second trace works(error: Scene 1, Layer 'Layer 1', Frame 1, Line 81120: Access of undefined property myParent1)
how to access a movie clip/s in a parent swf from a child swf. for example:Interface swf has buttons as mc's (home, about, services, portfolio e.t.c.) and loads in a swf when one of the buttons in the interface swf is pressed. When a button in Interface swf is pressed none of the other buttons can be pressed until the swf of the button that was pressed has loaded.
The reason for this is so that if the user tries to press the buttons quickly lets say the user pressed services button but changed thier mind right after pressing it and wanted to press lets say portfolio button they couldnt press the button until the services swf has loaded. Ive seen websites that dont do this and is makes it all mess up. Ive been able to do this in the past in AS2 but i cant figure it out in AS3.This is the code i would use in AS2:
Interface swf code is: ActionScript Code: _level5.btn_1.enabled = false;[code]...........
I've been trying to change the text within a SimpleButton instance using this:
var drawButton:SimpleButton = main.drawButton; var upButton:DisplayObjectContainer = drawButton.upState as DisplayObjectContainer; var upButtonText:TextField = upButton.getChildAt(1) as TextField;
I'm trying to create a class that acts just as an normal textfield, same properties and all, but that also draws a background filled with a gradient behind the text. I'm not focusing on the gradient yet , just trying to figure out how to assemble the code... Is this the right approach?
I have a movie clip which animates out and then places an input textfield on the last frame for the user to type in to. The main movie clip is controlled from external ActionScript. Once the last frame hits and the input field shows I want to focus the users cursor with focus(); but I can't figure out how to call to that TextInput from the time line. mytext.focus(); ???
Basically, I have a menu created using XML. Each menu item has a fill that fades in and out as the user scrolls over them. What I want to happen is that when an item is clicked, it stays highlighted. The problem comes when I click on the second item. I can't get the first item to "unselect."Here is the menu code and functions.
Code: var menuHolder:MovieClip = new MovieClip(); menuHolder.x = myMask.x;
i need some help to understand how to access a property of a child of a DisplayObject. within a class i have an object with the variable name: btnLMain i have assigned it a name property: btnLMain.name = "btnL"; btnLMain also has a property: btnLMain.clickNum = 0; // thats the one i need to access when i instantiate the class (btnL) containing this code in the parent class i need to access the property "clickNum" so i did this: