This _seems_ to work, except the removeChild is not working - the detail clip is faded, and killDetail is called, but the clip remains. If I remove the TweenLite fade and do the removeChild right in removeDetail() the clip is fully removed from the display list. I've tried doing a TweenLite.killTweensOf(detail) within the killDetail(), before removing child on it, but that doesn't help.
I'm loading a bunch of SWFs at the same time. I'm using a custom class to do the loading. Most of the time they all load OK, however occasionally one or two will be unloaded (I can see that in the console) before we get to the Event.COMPLETE. The ProgressEvents are all fine - I can see them loading, but then boom - they're unloaded.
I've done a bit of digging around and discovered that this may be a bug in the Loader class where if you are using multiple instances of the class then sometimes one or more will be Garbage Collected before they finish loading and are therefore unloaded. I've tried keeping a reference to the loader and the classes holding the loaders and I'm still having the problem. The solution is to queue the loads and load each swf in order which isn't a problem, just a bit irritating.
I need to use a custom cursor.I am doing so by simply hiding the cursor and having a small MC follow the mouse around with a setInterval.I need to make sure the cursor stays at the highest level. The stage is blank and all content is loaded using script. I was just setting up the cursor at the end of the script and using getNextHighestDepth. That was working fine, but now I need to load external stuff into the movie. How can I set up my cursor so that it will stay above all the other clips, regardless of when they are loaded?
i'm trying to run a loop, so a sequence of movie clips, one after the other, should "blink" as a wave.Tried the code below, without success. nothing happens. What could be wrong? The movie clips are named "menu1" thru "menu11".
Code: function ondaMenu (){ for (var i:Number = 1; i < 12; i++) {[code].....
Its pretty simple what im trying to achieve.I have a MC on Stage, which im trying to tween to different X coordinates.I've set up four TweenLite.to sequences, however for some weird reason only one is being triggered - what am I doing wrong?
I have three movie clips which launch three different sections of my flash site when clicked. These clips are tiny images of three products.
When you click them I want another group of 3 clips which contain animations of the products zooming in to play an appropriate frame when they are clicked to zoom in.
Then, once the animation is done... the appropriate section loads.
Here is the problem. I can do the button actions fine. BUT -- When the next product has to zoom up I cannot get the one that is already zoomed up to zoom down and then play the next products zoom up animation.
Anyone know of a way to track and update the states of these? Or determining which of the 3 products was clicked and let them zoom in and out dynamically?
I have a sub menu with two movie clip buttons, let's call them mc1 and mc2. They both have a MOUSE_OVER event and a MOUSE_OUT event that work correctly. I'm trying to get them so that if mc1 is clicked then it will stay at the "over" frame and if mc2 is clicked mc1 will revert back to the "out" frame while the second will stay on its "over" frame.What seems to be happening in my code is that the MOUSE_OUT event is overriding the MOUSE_DOWN event. So, when I take the mouse off after I've clicked mc1 the over state goes away.I've tried many of my own failed ideas and search the internet for hours trying to figure this out.Here's my code thus far:
Some time ago I was trying to build an XML gallery from a tutorial and things went wrong so I had to use another tutorial to fix it lol... anyway, in the original tutorial there was a very nice effect when rolling over the thumbs, basically it zooms in the thumb very smoothly. Now I'm trying to do the same effect to the gallery I have (which is fully functional now actually but the problem is that I just can't keep a reference of the initial value of the thumb's x (before zooming in on it on the roll over effect), eventually after I roll over a thumb a few times it is being displaced to the left... that's why I need to return it back to its position on the roll out... here's my code, I'll highlight the code lines that deal with the positioning and roll over/out effects.
I'm trying to do the same effect to the gallery I have (which is fully functional now actually but the problem is that I just can't keep a reference of the initial value of the thumb's x (before zooming in on it on the roll over effect), eventually after I roll over a thumb a few times it is being displaced to the left... that's why I need to return it back to its position on the roll out... here's my code, I'll highlight the code lines that deal with the positioning and roll over/out effects...
Is it possible for me to have 1 movieclip consisting of multiple movie clips, in a .fla file, and reference specific frames of clips within a frame of the movie clip, from an outside .as file?
In a .fla file I have a movie clip that consists of several frames, each containing a different movie clip to perform different actions of a character I am attempting to animate.The basics of the code work fine, but now I'm trying to get into more detailed aspects of the characters actions and interactions and all the tutorials that I've come across thus far direct me to add various aspects of code throughout my animation which I feel would litter my program as this project grows.My basic code is as follows
class hero extends MovieClip{ variable definitions up here [code]...........
This works fine.Beyond this,I have a frame with the anchor lable "Punch" which contains a movie clip consisting of 5 frames.Is it possible for me to reference specific frames within the movie clip within this frame of the big movie clip?
how can I reference a namless clip in as3? In the debugger I only can see my named clips but I don't see where the other clips are. I try work without names to easily copy them without creating a new name for every new clip.
Currently i am working on a project and i need the gallery to appear when a movieclip boxp_mc gets to frame 11 i have this in a function that i call onRelease of a button. However it donsnt seem to read this write. As soon as i click portfolio_btn it traces "dosnt work" i feel its reading it right away. I want it to wait till it gets to frame 11 then to this.
I normally write javascript code, so I wonder how to do this. In JS "Microsoft IS" you'll write code like this:
document.onclick = func; function func() { var obj = event.srcElement; //And there I have reference to the object; }
The graphic designer creates flash drawings and then converts whatever objects to movieclips. Then passes them over to me. All these "mc" need the same action applied to them. So I don't need to know how many they are or their names.
In AS2 I used to be able to reference a movie clip using a variable like this: Code: var target = nameofmovieclip; I've been looking for an answer on how to do the same thing AS3 but with no luck. I'm trying to create a dynamic homing missle, but unfortunately everything I've tried just generates errors.
I'm using bulkLoader to load my mp3 and flv files (thanks to dawsonk for hooking me up with the answer there), and now I need to be able to play/pause and jump ahead and back in the movie that I loaded, but I can't figure out how to reference it?Also, when I go to load another movie/audio from a button click, do I need to do anything with the old instance, or will flash take care of that??
I have been struggling with what I suppose is a very simple issue: I am importing content into my application via a text file, this all works fine. I have about 10 different movie clips on the parent timeline that I have hidden (dc_mc.visible = false.So what I need to do is take one of the variable names that I've got from my text file and use its value to "turn on" one of these hidden movie clips.So I'm trying stuff like:
var directory = e.target.data.directory; // Grabs the data, sets var var raceNameButton:String = directory+"_mc"; // Set data into new var raceNamesButton.visible = true; // display movie clip with var name
I send to the function a movie clip that I use for drag and drop, so when I drop this function is called. The problem is that of the three rectangles that I use for contain the others, only the last senses the drop target.
I'd like to invoke a function inside a mc from it's parent, but I want to have the reference to the clip be dynamic. When I path the mc directly and invoke the function it works, how would I make that same reference work dynamically.
Here's a sample of what I'm trying to do:
Code: var myArr:Array = new Array(); myArr[0] = "galleryContainer_mc.eventGallery1_mc.imgContainer_mc"; trace(myArr[0]);
I'm creating a movie clip button and for the out state I have this:
web_btn.addEventListener(MouseEvent.MOUSE_OUT, at_out); function at_out(event:MouseEvent):void { web_btn.gotoAndPlay(30-(web_btn.currentFrame-11)); }
It gives me this error when I click the button: TypeError: Error #1009: Cannot access a property or method of a null object reference. at index_fla::web_mc_37/at_out() I know the error is in this statement: web_btn.gotoAndPlay(30-(web_btn.currentFrame-11));
PBar contains two SimpleButtons (pBarProgress and pBarLoaded) and a MovieClip (pBarBg).I import pBar from the library like this:private var pBar:PBar = new PBar();and add it to a container MC on the stage like this:containerMC.addChild(pBar);Up to this point, everything works great. I can see pBar and its children on the stage when I run my movie. But then I want to start referencing and manipulating pBar's child objects, but nothing I do works. Ive tried ...pBar.pBarProgress.scaleX = 0;var pBarProgress:SimpleButton = Bar.getChildByName("pBarProgress") as SimpleButton; pBarProgress.scaleX
I have a label I am referencing form a movie clip inside the movie clip which contains the "label_2." Here is the code I used: MovieClip(parent.parent).gotoAndPlay("return_2"); Now I need to reference a instance name of a movie clip in side the same scene.
It's me again and I'm running into a problem. So, I have this movie clip that is nested inside multiple movie clips. I want to tell Flash to perform an action when that movie clip hits another movie clip in the main timeline. It's just collision detection for a game using the hitTestObject code. I was thinking of using MovieClip(root), but that won't work since it's nested so much.
Basically, I want a speaker (movie clip) to turn off if an answer is correct. I have several text boxes and don't want to write a separate function for each one.Here's what I have so far:
ActionScript Code: function textHandler(event:KeyboardEvent):void{ var myTargetName = "txt" + event.target.text; if(event.keyCode == 13) {//check if enter is pressed
[code]....
obviously it doesn't work. It sees speakerName as a string value.
which works fine when that clip is compiled. It throws an error: "Cannot access a property or method of a null object reference." When loaded into another clip.
I'm having this frustrating error showing up and I have no idea why. Let me show you my classes and see if you can spot anything wrong. First, here's my ILode interface:
So the problem I'm having is the compiler is throwing that 1000: Ambiguous reference error for any reference to instance.priority or instance.label. Why??? Instance is typed to IFlexLodeInstance, and IFlexLodeInstance lists method signatures of priority and label getters, and it inherits ILode, which lists method signatures for priority and label setters. What can I do to get the compiler to stop complaining?
My code is an external .as file. Google provides this code on their demo, which contains the this keyword:
[Code]...
Notice that I have 4 calls to console.log. The first 3 fire, but after the new GATracker statement, the 4th does not fire. I have a feeling that I'm overriding the entire package with the object created from new GATracker when I should be passing a different context. I believe the correct context I should pass is whatever this defaults to when not inside of a package/external file, I assume it references the main stage object.