ActionScript 3.0 :: Hiding A Movieclip On Stage From Inside A Movieclip Frame Action
May 4, 2011
I have the scenario below. I have a movieclip on the stage (root). Inside this movieclip I have a frame with the action below:
_root.MCHappy.visible = false;
_root.MCSad.visible = false;
_root.MCNormal.visible = true;
I cant get this working with AS3. How is the correct way to do that inside a MovieClip with AS3?
View 6 Replies
Similar Posts:
Jun 23, 2011
How Do I Change Stage Frame From Inside MovieClip?
Heres my code so far:
hh.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
function fl_MouseClickHandler(event:MouseEvent):void{ gotoAndStop(2);}
i tried (root).gotoAndStop(2); but i got an error , #1061 ..
View 3 Replies
Aug 21, 2011
I was wondering if it's possible to change the frame of a movieclip (present on the stage) by going on a certain frame or clicking a button in the main movie, if you get what I mean. Let's just say I want to go to frame 2 in movieclip "Symbol". Also, would it be possible to do the opposite and go to a frame in the main movie from a movieclip?
View 9 Replies
Mar 14, 2011
I have a button on frame 1 that has this code:
Code:
on (press) {
sword._visible=false;
}
It works on that frame.When I go to the next frame and come back the sword is visible again.How do I set it so it is invisible(false) until set to visible(true) over all frames?
View 5 Replies
Jun 16, 2009
I have a movieClip called "button" I want the movieClip "button" to disappear once the animation reaches frame 16 within a movieclip called movie1_mc. The issue I'm having is that I cannot get the movieClip "button" to disappear. There is external XML content being feed into that movieClip so I'm not sure if that's whats screwing this up.
View 5 Replies
Feb 16, 2010
How can I get a button inside a movieclip link to a frame in another movieclip on the scene? I tried this code:
function gotoCenter(event:MouseEvent):void {
MovieClip(root).centermc.gotoAndPlay(2);
}
skruetest.addEventListener(MouseEvent.CLICK, gotoCenter);
..where "skruetest" is the button, "centermc" is the movieclip where I want to go to frame 2. I don�t get errors with this code, but nothing happens when I click the button. What can I do?
View 4 Replies
May 18, 2010
On the stage I have a movieclip called mc_back. I also have a movieclip on the stage called mc_content. Now, inside mc_content I have a bunch of code and some of it adds, or should add, an EventListener to mc_back as well as a a function that works when mc_back is pressed.
So basically, all code is written inside mc_content and some of it needs to interact with mc_back.
how to target mc_back from inside mc_content. Using stage.mc_back or root.mc_back doesn't work and Google should be my friend, but in this particular problem, it's acting more like my enemy.
View 8 Replies
Nov 6, 2006
1. I make a simple movie (call it movieClip) first frame has stop(); action, second frame has label playMovie, last frame has action gotoAndPlay(2); (so that movie not stop anymore2. Now I place movieClip on stage3. Question... what is code to make movieClip play frame label playMovie?
I already try to put many different type action in frame one of stage
this.movieClip.gotoAndPlay("2"); //NOT WORK
this.movieClip.gotoAndPlay(2); //NOT WORK
[code].....
View 7 Replies
Jan 29, 2010
I have a MovieClip that represents a playable character in my game. Inside of that MovieClip are three frames: One containing a single picture (standing), one containing a second MovieClip (walking) and the last containing a third MovieClip (jumping). Using the Properties tab, I gave each of the frames a name ("Stand", "Walk" and "Jump respectively).
What I want to do with Actionscript is gotoAndStop the "Jump" frame inside my character's MovieClip, and play the first frame of the MovieClip contained in that "Jump" frame. Something like this:
ActionScript Code:
playerMovieClip.gotoAndStop("Jump").gotoAndPlay(1);
View 3 Replies
Jan 14, 2009
I have a movieclip with about 50 other movieclips inside it and I want to set all their visibility to false (I can't do this to the parent because I will need to eventually just show one of the movieclips at a time). Is there any type of method I can use to apply, something like mymc.allchildmcs.visibility = false or mymc.mychildmc[i].visibility = false;
View 2 Replies
Jan 16, 2008
I've got a movieclip with an rollover function. The movieclip has buttons inside, but they don't work. The action applied to the movieclip is the the scale (I'm using Tweener to make the scale action).
View 1 Replies
Jan 25, 2012
I have a Button that is inside MovieClip1 which is inside MovieClip2; yet when i click the Button it doesn't dispatch Event.
View 5 Replies
May 16, 2009
how I access variables in a frame on the stage with code from a frame within a movieclip?(basically passing variables from a stage frame to a movieclip frame)
View 4 Replies
Apr 6, 2009
I am using Flash MX 2004, aka Flash 7, and Actionscript 1. What I have is a movie clip that plays on frame one. Its a variation of loading screen. What I want to do is make it so that when the movie clip is on its last frame (frame 100), then it switches to frame 2. NOT frame 2 of the movie clip, but frame 2 of the overall project.
Code:
if (_root.loader._currentframe == 100) {
_root.gotoAndPlay(2);
}
(movie clip is called loader)
I have also tried naming frame 2 "finishedLoading" and just "2", but it still will not go.What happens is, when the movie clip animation is finished and on frame 100, it just sits there. I had to put a stop(); in frame 1 so that the animation could play, but it stays stopped. This was all done after I tried the logical approach where inside of the movie clip on frame 100 of the movie clip, I made an "Actions" layer and on frame 100 keyframe, I put:
Code:
gotoAndPlay(2);
I also tried
Code:
gotoAndPlay("finishedLoading");
and
Code:
gotoAndPlay("2");
I have even resorted to the last resort. I put tried to make a variable so that when the movie clip is on frame 100, that "var finishedLoading" would be set to true, and then:
Code:
if (finishedLoading == true) {
//
}
Inside of the comment would be gotoAndPlay(x);
View 1 Replies
Jun 12, 2009
What do I have to do to get the button to work? I view the swf and there is no active button.
I need the button inside the clip to be active.
View 9 Replies
Dec 9, 2009
I created "symbol1" movie clip. And I have dynamic text "myscore" on the main stage.
I have this code inside of "symbol1".
mybutton.addEventListener(MouseEvent.CLICK, b1);
function b1(event:MouseEvent):void {
myscore.text = "30";
}
And it gives me this error. (1120: Access of undefined property myscore.)
It works only when text and actionscript inside of the same symbol. I tried like this root.myscore.text = "30"; but it still doesn't work.
View 2 Replies
Mar 8, 2009
I'm trying to reference a specific frame inside a MC in my .swf file from an .as file. What I want is to capture the current frame of the movie clip for the .as file. It's for the purpose of points when you shoot each plane. It's an easy trick of frame 1's plane would be worth 100 points, frame 2's plane 200 points, etc. I thought I'd write a line like this in my collision detection section of my .as file.
Code:
planePoints = currentFrame * 100;
The only problem is, of course, it grabs the current frame of the main .swf timeline that my flash file uses, and not the movieclip that's being called to produce the planes. So I thought I'd be able to specify a path to the movie clip (in this case it's called Airplane in the MC's linkage properties).
Code:
planePoints = Airplane.currentFrame * 100;
Then, of course, it freaks out and says that 'access of possibly undefined property currentFrame through a reference with static type Class.'
I still get confused with AS3 and the way items are handled vs AS2. I've lost track of how many times I type _root. Am I getting something basic mucked up here or should I be importing something in the package to get it to recognize the class?
View 1 Replies
May 14, 2010
I have a time line with 2 frames only. On frame 1 I have a Movie Clip that contains a gallery and its called "gal1" on frame 2 I have another Movie clip called "gal2". Now I have 2 buttons to call each of these galleries which this code in them[code]...
But when I am in gal1 and I want to click on the second botton to call gal2 with the same exact code attached to button2, it doesn't work!
View 5 Replies
Mar 22, 2010
hi i am having trouble getting my buttons to work right in flash cs4. is it possible to have a button gotoandplay a frame inside a different movieclip? if so how?
View 2 Replies
Feb 23, 2012
Possible Duplicate: currentFrame of root timeline from inside object In flash with as3.0, I have to call a function on the main stage from a movieClip I have this method in a frame on my scene:
[Code]...
and I would like to be able to call that method from within a movieClip, how do I point to the method?
View 1 Replies
Jul 9, 2009
How do you target a certain frame number/name from outside of that specific movieclip?
Code:
whoweare.addEventListener(MouseEvent.CLICK, whoweareClick);
function whoweareClick(event:MouseEvent):void{
gotoAndPlay("whoweare");
}
I'm assuming it's something with the gotoAndPlay function... but I've tried numerous things with that and nothing is working.
View 3 Replies
Mar 19, 2010
I have a MovieClip that I want the user to be able to drag inside the stage, but I don't want it to be able to move outside the stage. Currently I'm using this._parent.startDrag(); to allow the MC to be dragged, but I don't know how to stop it from being dragged outside the frame.
View 1 Replies
Aug 7, 2011
How do I connect to the same class from the stage as well as from inside a MovieClip?
In other words: I've set a document class in my properties panel - I cannot access the class's methods from inside an MC. Why?
What are the different ways to connect a fla-file to a class (as-file)?
I've been playing around with AS3 for a few years now, but always avoided classes. But now the day has come for me to finally trying to get a hold of it.
View 1 Replies
Jan 21, 2009
How do I reference to a Movieclip on the stage from inside a Class.as?
View 1 Replies
Feb 18, 2009
I've been working on a new issue while giving a break on cracking the other one.I have a movie clip acting as a button with rollover/rollout animation- we'll call it menu_mc for simple reference.I'm basically creating a rollover submenu. I've set it up a few different ways but the most user friendly has been hiding the submenu_mc (which has 4 linked buttons to root frame inside) by doing:_root.sub5_mc._visible = false;then inside the menu_mc with the rollover I have the submenu trigger set to show: _root.sub5_mc._visible = true;The links are working fine but the problem I am running into, is that the rollover state, once over the submenu_mc, does the rollout function and leaves the submenu_mc hanging there by itself- still functioning perfectly.You can go back over the menu_mc and it will play out the rollover again.On the other simple animated buttons (which do not have submenus) I have coded:
on(rollOver) {
_root.sub5_mc._visible = false;
}
[code].....
View 3 Replies
Dec 16, 2011
I have several website pages set up on different frames inside the content (which is a movieclip) of the home page - which is on frame 1 of the main timeline. The content movieclip name is contentMc.
My About page is at frame 10. There is a button on this page (called btnAbout_contactpg) that I want to make jump to my Contact page (frame 50) - all of which is nested under the main contentMc movieclip.
This is the pathway on my contentMc (where all of my pages are located), just in case that doesn't make sense: [URL]
I have looked at several different instructions online, but none of them seem to work.
EDIT:
I am also trying to get a button on my gallery page to load an external image, but it is not recognizing where the button is either:
btnGallery_1.addEventListener (MouseEvent.CLICK, showPic1);
function showPic1 (e:MouseEvent) {
var target:Object=e.target;
var parent=target.parent;
my_loader.load(new URLRequest("image-0.jpg"));
}
View 1 Replies
Apr 9, 2009
I make a website. First I have a frame with a movieclip, where my entire page is within.Inside of that is where all of my pages is in different frames, and in each of these frames there are other movieclips with content. My example:Top level /Entire site/My pages, in different frames /Movies/Pictures/About/Etc./Content (inside the "Movies") /Info about movies/Movie one/Movie two/Etc./My problem is as easy as this: I will link from the "My pages" level, to the first frame in "Content" (info about movies)If i just link to the, "Movies" frame, I can't get from "Movie One" to Info about movies by pressing the button, wich lies on the "My pages" Level.
View 4 Replies
Jun 11, 2010
I have an animation (movieclipX) on frame 2 of main timeline. At the end of movieclipX I'd like the main timeline to move to the next frame, frame 3. How can I do this??Sorry if this is an easy question, I'm in the process of learning.
View 8 Replies
Nov 22, 2009
On the main stage I have a button that I have made invisible once the file is loaded. Inside a movieclip I have on frame 15 the following actionscript 3 code
button_mc.visible = true;
I want the button to become visible at the end of this movieclip. I am not using an external as3 file, I am putting the as3 code in its own layer on the first frame.
I know it has something to do with the path to the button, but I cannot figure it out. If there is anyone who can point me in the right direction for referencing instances by instance name that reside on the main satge from inside a movieclip
View 3 Replies
Jan 1, 2010
I create a movieclip button, and I want to change main timeline from it. what should I do ?
Is it useful to use MovieClip(root).gotoAndPlay(Is there any other way to change main timeline?
View 6 Replies