ActionScript 2.0 :: Possible To Call A Function From A Different Movie Clip?

Aug 1, 2006

Does anyone one know if it is possible to call a function from a different movie clip than the one it is in. For example, a function named loadData() which is on the first frame of a movie clip instance named thumbNail which is on level 0 on the stage i was thinking that it should work to call the function from frame one on the stage with..

View 5 Replies


Similar Posts:


ActionScript 3.0 :: Call A Movie Clip's Function From Outside Of It?

Jun 28, 2011

I'm trying to use a movie clip's function from a fellow movie clip 2 children up and I can't find the right code.  I've used:

MovieClip(datalist.getChildByName("content")).onpauseButton();
MovieClip(datalist.root.root.root).onpauseButton();
MovieClip(datalist.scrollb.content).onpauseButton();
MovieClip.(datalist.onpauseButton);
 
and none of them work.  The function is "onpauseButton" and it is inside of "content" which is inside of "scrollb" which is inside of "datalist." I'm trying to call it from datalist's neighboring movie clip so that it activates along with another function:

manualButton.addEventListener(MouseEvent.CLICK, fl_ClickToLoadFile_1);
function fl_ClickToLoadFile_1(event:MouseEvent):void{ navigateToURL(new URLRequest("M-23 6263.pdf"), "_blank");// want to add the onpauseButton code here
}

I recall that there is a way to do it, I just can't find the right sequence.  Everything online is about how to call up to a function outside of the movie clip and not down to a function inside of one.

View 4 Replies

ActionScript 3.0 :: Call A Variable Or Function From A Movie Clip?

Apr 2, 2009

I just need to call a variable or function from a movie clip to main timeline. In AS2 I would use something like:

_root.myvar = "Hola";
or
_parent.myfunc(4,2);

But this doesn't works on AC3. I tried to remove the "_" but its the same.

View 2 Replies

ActionScript 2.0 :: Rollover Call A Function That Changes Each Movie Clip?

Oct 16, 2005

Suppose I have three different movie clips. mc_A, mc_B, mc_C I want to have a rollover call a function that changes each movie clip. But I don't want to type it out like this:

Code:
mc_A.onRollOver = function() {
Explode.newExplosion(mc_A);
};
mc_B.onRollOver = function() {

[Code]...

Above you will see that I used this, it made sense to me, but this always refers to the main timeline (root in my case). So how do I pass the name of hte clip I am rolling over to a function?

View 8 Replies

ActionScript 2.0 :: Movie Clip OnRollOver Function Call?

Jul 23, 2007

I'm having an issue with a simple movieclip onRollOver event. Here's my code:

Code:
_root.mc_shutternav.mc_nav_8.onRollOver = over;
_root.mc_shutternav.mc_nav_8.onRollOut = out;
_root.mc_shutternav.mc_nav_8.onRelease = hit;

[code]....

However, with this setup the function hit() is called automatically every time I publish the movie. What's wrong with this? What's the difference between mc.onRelease = function; and mc.onRelease = function()?

View 1 Replies

ActionScript 3.0 :: Call Function In Parent Movie Clip?

Feb 23, 2009

I have a child movie clip attached to the parent via the flash interface. The child is running a timer via code on its (the child's) timeline. When the timer finishes it needs to trigger a function on the parent's timeline. All the examples show how to trigger a function on the child - that is easy and I have got that working.

View 1 Replies

ActionScript 2.0 :: Call This Function From A Button Inside A Movie Clip?

Jul 1, 2004

I have a function at frame 1 (_root). Well, i am trying to call this function from a button, inside a movie clip, but it's not successful..

View 2 Replies

ActionScript 3.0 :: Call File Function From Actions Panel Of A Movie Clip

Sep 15, 2011

i have a movie clip with an actions layer can i call a function from an actionscript file from the actions panel?

View 6 Replies

ActionScript 3.0 :: Make A Circle Object Movie Clip Call Ball And Make A Rectangle Object Movie Clip Call Mc

Dec 12, 2010

make a circle object movie clip call ball and make a rectangle object movie clip call mc and paste this coding.

[Code]...

can anyone explain about the movement about D? the D is talk about the distance if i go -X,way my ball go ++ to +x?

View 1 Replies

ActionScript 3.0 :: Flash - Call A Frame Of One Movie Clip From Another Movie Clip?

Jun 28, 2010

Scene1->MovieClip1->Image1(as a button)Scene1->MovieClip2->MovieClip3->MovieClip4->frame1Now I want to call frame1 from Img1 have a parent Scene1 common.How can I do this.I have tried

on(release){
_parent.MovieClip2.MovieClip3.MovieClip4.gotoAndPl ay("frame1");
}

[code].....

View 2 Replies

ActionScript 2.0 :: Target The Selected PicFrame Clip And Have It Call The Function ResizeFrame To Change The Width Of Border Clip?

Feb 19, 2007

i have a loop that attaches clips of the picFrame to a holder clip based on the number of childNodes. how do i target the selected picFrame clip and have it call the function resizeFrame to change the width of just the border clip inside the picFrame the onRelease was chosen? i realize under the resize function i have it targeting the holder clip's width. i just don't know what else to do and i've tried many else's.

[Code]....

View 3 Replies

ActionScript 2.0 :: Write A Function To Move An Object And Then Call That Function On A Clip Event?

Jan 29, 2003

is it possible to write a function to move an object and then call that function on a clip event for instance

function (bounce){
script;
script;
}

and then call it by saying

on(mouseOver){
this.bounce;
}

View 2 Replies

ActionScript 2.0 :: Call A Movie Clip Inside A Movie Clip?

Jun 16, 2005

i was wondering if anyone knew how to call a movie clip inside a movie clip

View 6 Replies

ActionScript 2.0 :: Call A Function On A Clip?

Oct 13, 2003

i'm trying to call a function on a clip, but i want to use a variable that i'm sending to the clip so that when the one function gets done it knows what to do next.

MovieClip.prototype.moveHere=function(x,y,spd,func ){
this._x+=(x-this._x)/spd;
this._y+=(y-this._y)/spd;
if(Math.abs(this._x-x)<1 && Math.abs(this._y-y)<1){

[code]....

View 3 Replies

ActionScript 3.0 :: Affect Both A Movie Clip And Its Child Movie Clip In The Same Function?

Dec 19, 2009

I really have two questions: How do I affect both a movie clip and its child movie clip in the same function? and how do I pull info from one component into a function for another? My basic setup is a movie clip of font choices, one on each frame: "bodyText_mc." Each of these frames has a child clip "bodyText_mc.bodyText" with alignment choices for the font. For instance, the user picks "Script" in the first ComboBox and then picks "Align Right" in the second. (All of this text is static because I need more design control that I can get with dynamic text.)

First of all, I have a combobox "cbBodyFont" that I use to go from frame to frame on movieclip "bodyText_mc." This works nicely:

[Code]...

View 8 Replies

ActionScript 2.0 :: Apply A Function To A Movie Clip Inside A Movie Clip?

Aug 22, 2009

The question is, How do you apply a function to a movie clip inside a movie clip inside a movie clip. So there are three mc and I need to apply the function to the inner most one.

Here is what I have. The 'a' is in 'spin_4' wich needs to be in 'portal'.

ActionScript Code:
for(var i = 1; i<=12; i++){
this.spin_4['a_'+i].onEnterFrame = function(){
if(this.hitTest(_level0.man)){

[Code]....

View 9 Replies

ActionScript 3.0 :: Clip To Call A Public Function Of RadioPlayer?

Dec 15, 2010

I'm a bit confused in AS3, after long developing in 1 & 2. I'm doing a radioplayer, so I did set my document to be of document class: RadioPlayer. Here is everything ok, sound playing etc. Now my client wants to add a volume button. So I made a movieclip of class VolumeManager. Now, to change the volume, I want my clip to call a public function of RadioPlayer.

As RadioPlayer is the document class I don't know how to reference it inside VolumeManager to call its public function. In AS2, I would say: _root.setSoundVolume(volume);

View 4 Replies

ActionScript 2.0 :: Loop Through A Movie Clip And Assign A Function To Each Of The Clip's Child Movieclips?

Jan 3, 2007

I want to loop through a movie clip and assign a function to each of the clip's child movieclips. when i do a for...in loop and then do a typeof() trace I get "string" and obviously it won't let me assign lets say 'onRollOver' functions to the children.

View 6 Replies

Call A Movie Clip To Play From Within Another MC?

Aug 5, 2009

Here's a simple one I'm sure but I can't get it to work or find a solution online.
I have a movie with 2 movie clips on the stage, the first clip is triggered to play on a button click (which works fine) but I want the 2nd clip to start playing when the first ends. I've tried putting MovieClip2.gotoAndPlay(1) script on the last frame of MovieClip1 but I get  "1120: Access of undefined property".

View 3 Replies

IDE :: Movie Clip Buttons That Call Each Other?

Feb 17, 2009

I have created several buttons using movie clips with animations and the 'rewind=true'method when someone mouses off. What I am wondering is, if I have 2 buttons on the stage and I want to animate both of them if one or the other is moused over at the same time, how can this be accomplished

View 1 Replies

ActionScript 3.0 :: Call Method In A Different Movie Clip?

Jan 7, 2011

I have a movie with 3 frames. The first is a place holder for a loader and has some actionscript in my actions layer saying "on click goto 2" etc. The second and third frames hold movie clips, these movieclips hold many layers and have their own actions layers.

Say I am inside the frame 2 movie clip, in the actions for frame1 of that movie clip, I am trying to say goto frame 3 of the root and call a function from the movieclip that lives in frame 3.

View 2 Replies

ActionScript 2.0 :: Using A Variable In Movie Clip Call?

Aug 4, 2011

I want to use a variable in my movie clip code. Right now I generate a random U.S. state name and assign it to "correctAnswer". Then I want to assign that to myMovieClip.correctAnswer.gotoAndStop("down"); The problem is that the variable is not recognized and is seen as correctAnswer instead of the U.S. state that was assigned to it. My code is below.

ActionScript Code:
// Correct answer is randomly generated and can be any U.S. state name
correctAnswer = "utah";
// Using the variable correctAnswer this should come out as myMovieClip.utah.gotoAndStop("down");
myMovieClip.correctAnswer.gotoAndStop("down");

View 2 Replies

ActionScript 2.0 :: Call Scene From Movie Clip?

Jul 22, 2004

I'm trying to call a scene from a movie clip. But nothing works. I tried to label the first frame in the second scene but that didn't work, root and crap also failed. I'm deparate. I was trying to link the chalkboard from the first scene (clipboard) to the second scene (board). There is a button within the movieclip I'm trying to use, but it just doesn't work.

View 1 Replies

ActionScript 2.0 :: Dynamic Movie Clip Name Call?

Sep 24, 2008

I can dynamically assign a movie clip name, but I don't know how to call the clip name.Notice in the following code, I assign each new movie clip a name: ActionScript Code:"memberClip"+x

I can't figure out how to call each one. I've tried:
ActionScript Code:
["memberClip"+x].loadmovie

[code].....

View 1 Replies

ActionScript 3.0 :: Call As2 Interactive Movie Clip In It?

Jan 24, 2009

I have an interactive movieclip called "AS2Clip" which was programmed in AS2. So when this movieclip is loaded within an AS3 application, does the AS2 native code still functions as it would if it was loaded within an AS2 Application?

View 1 Replies

ActionScript 2.0 :: Call A Scene From A Movie Clip?

Jul 22, 2004

I'm trying to call a scene from a movie clip. But nothing works. I tried to label the first frame in the second scene but that didn't work, root and crap also failed. I'm deparate. I really need help now. I was trying to link the chalkboard from the first scene (clipboard) to the second scene (board). There is a button within the movieclip I'm trying to use, but it just doesn't work.

View 1 Replies

Javascript :: Call A Function At End Of Movie?

Feb 10, 2011

I want to display a Flash video in a popup window, and when the video has finished playing, close the window using a javascript function "closeIt":

<script>
function closeIt() {
alert("About to close...");

[code]....

How can I achieve this? I have imported a video into Flash (choosing "load external video with playback component"). This is in frame1. I thought that in the second frame I could make a call to ExternalInterface.call("closeIt") in the Actions window. I have tried this, but when I publish and view the flash movie in a web brower, I never see the javascript alert.

View 3 Replies

ActionScript 3.0 :: Movie Clip Is A Class But Can't Call It's Functions?

Feb 22, 2012

I have a document class that assigns some button on the stage an function.
  
I have 2 cards on the stage. They have their own class.
  
From the buttons script i can trace the cards and i get: [object MovieClip]
  
But I cannot call a function in them like card_0.flipUp();
  
it errors:
TypeError: Error #1006: dimMe is not a function.
  
the card class is public starts out like:
 
public class FlipCard extends MovieClip {
 
The function is public:
  
public function dimMe ():void {
this.alpha = .1;
}   

View 1 Replies

ActionScript 2.0 :: Call Any Movie Clip On Stage From A Class?

Jan 6, 2009

Anybody know how to call any movie clip on stage from a class?[code]...

View 4 Replies

ActionScript 2.0 :: Draw And Call A Simple Movie Clip?

May 7, 2010

I am new to actionscripts and I'm having some difficulty. I am creating a website that teaches kids about the about the brain and I am creating a website very familiar to this one,[URL]..So far I only know how to draw and call a simple movie clip such as what you see below. What I am trying to do is create the features that you see on the above website. I'll try to explain as best as possible what I have done so far:

I created one flash file and drew the background for where the text will display. Next I created several movie clips for each of the brain parts and I placed an invisible button over each of these movies. For example I told the button, "cerebellum_button" to play the movie "cerebellum_mc" and told it to go to the "turnon" label." Once it stopped at the label "turnoff" it displayed the text for what the cerebellum does.

I don't think that the below method is efficient, I feel that my code is redundant because I�m having to create a button for each animated movie clip, then each one of those movie clips displays text. It seems to me that I can somehow create a text in a centralized location and call it. However because I am new at this stuff I have had to create text in each of the movie clips. Is there a way that I can centralize all of the text then call it? My aim is to have the user roll over the brain part, have it animate, and have it display the text to explain what that brain part does. So far this is what I have working, I have one button and one animated movie that includes text.

cerebellum_button.onRollOver = function(){
cerebellum_mc.gotoAndStop("turnon");
}
cerebellum_button.onRollOut = function(){
cerebellum_mc.gotoAndStop("turnoff");

View 0 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved