ActionScript 2.0 :: Passing Variable To Root To Play After Embedded Movie

Jan 5, 2012

I have a movie embedded and I am passing a variable to the root movie for it to play when the embedded movie is complete. I know the variable is getting passed because I am displaying the value in as dynamic text but the parent movie will not play. This is what I have:

stop();
row = 0;
if (row == 1) {
this.gotoAndPlay(2);
}

Row is being passed from the embedded movie as
_root.row = 1;

I know there is a way to tell the parent movie to play from the embedded movie by using TellTarget but I would like to find out why this doesn't work.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Passing Variable From Root Timeline Into MC?

Aug 15, 2009

I'm guessing this is pretty simple, I just can't find the solution through my google searches.

Bascially I created a variable and gave it a value in the first frame of my main timeline.

Now I just want to pass that variable into a MovieClip. When I trace the value of the variable within the movieClip I get undefined.

Is there something else I have to do to make it recognize the root timeline's variable?

View 1 Replies

ActionScript 3.0 :: Passing Stage/root Variables To Movie Clip?

Oct 12, 2009

Just need to figure out how to pass root level variable to a movie clip which contains a dynamic text box to display the passed variable. How is this possible? I usually use global variables when i was coding in AS2...but it appears this feature is dropped in AS3.

View 4 Replies

ActionScript 3.0 :: Play Movie Clips Embedded Inside A Movie Clip On The Main Timeline?

Dec 6, 2009

I have my flash document set up in the following way: On the main timeline I have my buttons that I want to play movie clips embedded inside a movie clip on the main timeline.However, when I click each different button, the current movie clip stops playing and then the movie clip corresponding to the button plays.

I want them all to be able to play at once. So for example you push button 1 and the alien plays, but half way through you could click button 2 and the alien clip would keep playing, but also the helicopter clip would begin to play as well.Here is the code I have so far:

building_btn1.addEventListener(MouseEvent.CLICK, alien);
building_btn2.addEventListener(MouseEvent.CLICK, helicopter);
function helicopter(e:MouseEvent):void {[code]......

View 1 Replies

ActionScript 3.0 :: Impact A Root Level Variable From Within Nested Movie Clips?

Nov 26, 2011

I have a movie clip on my main timeline that I want to send to a certain frame based on a variable that can be set from a nested movie clip, and also set from an external swf that will be loaded into the main timeline.So how would I set that variable? In AS2, I would just go _parent._parent...as many levels up as I needed to, but the AS3 equivalent only seems to work one level up.

View 6 Replies

Professional :: Error When Trying To Play Embedded Movie?

Apr 20, 2010

SecurityError: Error #2148: SWF file wf cannot access local resource D:UsersMatthewMy DocumentsMS Data Systemswings-of-lhe-zodiac-code.flv. Only local-with-filesystem and trusted local SWF files may access local resources.

at flash.net::NetStream/play()
at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::_play()
at

[code]....

View 5 Replies

ActionScript 2.0 :: Global Variable With Embedded Movie?

Feb 11, 2004

Im using loadMovie in a parent movie to load my content movies. I need the content movies to be able to access a variable set in the content movie. I've tried using global variables and can't seem to get anything going.

I've got two layers. The top layer has the header and footer graphic alongs with the scripting for the menu. The bottom layer is where the content movie is loaded into.I'm declaring the _global variable in the top layer, outside of any functions, and trying to access it from the loaded swf in the content (bottom) layer.

View 3 Replies

ActionScript 3.0 :: Passing Variable From Main Movie To Loaded Swf?

Sep 4, 2008

i am using flash cs3,i have a main movie that load many swf using a document class..i need to pass "userid" variable from the main movie to loaded swf so they can change their content dynamically.

View 7 Replies

ActionScript 2.0 :: Passing A Variable From The Stage To A Movie Clip?

Sep 13, 2011

I have a big bit of action script that I want to reuse on various frames. Rather than write it out on each frame I want to embed the script within a movie clip and embed that movie clip on each frame that it is required to be used on.

In order to do that I need to pass a different value into the movie clip.

Basically the script creates 20 pages on one frame, 40 pages on another frame and 60 on the last page.

This is the bit of code that needs to have the number fed to it:

ActionScript Code:
var myArray:Array = newArray(20);

The number 20 is currently set manually. I ideally want to write this within the movie clip:

ActionScript Code:
var myArray:Array = newArray(frameVal);

and on the stage I want to set the variable like this:

Frame 1:

ActionScript Code:
var frameVal:Number = 20;

Frame 2:

ActionScript Code:
var frameVal:Number = 40;

Frame 3:

ActionScript Code:
var frameVal:Number = 60;

The movie clip that contains my code has an instance name of "testStart"

how do I get it to pass the frameVal into the movie clip?

View 2 Replies

ActionScript 1/2 :: Passing Variable From Scene To Movie Clip?

Mar 11, 2010

I have a problem with my actionscript. I can't pass the variable from scene 1 textbox to a movie clip textbox.My scene 1 textbox has a name of resultText. My movie clip is call over_mc which is on the symbols definition.the textbox for the movie clips is call finalResultText.here is my code:

_root.over_mc.finalResultText.text = resultText.text;

View 2 Replies

ActionScript 3.0 :: Passing A Variable Change Through Multiple Movie Clips?

Feb 26, 2011

Movie 3_mc is inside the timeline of 2_mc which is inside the timeline of 1_mc.1_mc has an integer variable called var1.I need to change the value of var1 by a mouse event for which the listener is on the timeline of 3_mc.I know that I can change the value of a variable of the parent movieclip (in this case 2_mc) from an event in 3_mc by using;

ActionScript Code:
MovieClip(parent).var++;

View 4 Replies

ActionScript 3.0 :: Passing Dynamic Values Into Flash Movie To Play A Video?

Jan 23, 2009

I have a page that list movies when you choose a movie it should play into my flash file the as is below.this is the are that calls my movie

Code:
stream.play("97363-49264.mp4");
Code:

[code]......

View 7 Replies

Actionscript 3.0 :: Referencing .root In Embedded Swf

Jul 27, 2009

dynamically loaded swf files that employ .root syntax. I'm loading in several older swf files into a master swf. The master has a previewer that lets the user preview the library of swf files. Some of these older swf files have buttons in them that use .root, and I don't want the .root to effect the master swf, but the loaded one.

View 5 Replies

ActionScript 2.0 :: Target Root From Embedded MC

Feb 24, 2005

I have a movie clip embedded in a scroll pane on level 2 of a multi-.swf project. I am trying to target the root movie to load another .swf (a video player window) from buttons inside the embedded MC. the buttons work on the external .swf but not when loaded onto the main timeline.[code]

View 2 Replies

ActionScript 2.0 :: {FMXPro} Target Root From Embedded MC?

Feb 24, 2005

I have a movie clip embedded in a scroll pane on level 2 of a multi-.swf project. I am trying to target the root movie to load another .swf (a video player window) from buttons inside the embedded MC. the buttons work on the external .swf but not when loaded onto the main timeline.i have tried on the button itself:

on (release) {
_root._root.loadMovieNum ("vidPlayer.swf", 4);
}

[code].....

View 2 Replies

ActionScript 3.0 :: Passing In Root From A None Sprite Class (MVC)

Sep 24, 2009

I am working with a simple MVC pattern.

But in my model i try to do this:

Main(root).Message(" model done!");

But i cant pass in the root, couse the model classes are Eventdispatchers and no sprirtes.

View 1 Replies

Make "play" Button For Embedded FLV Disappear When Movie Starts Playing?

Oct 16, 2009

I can't believe how impossible it has been to find info about this. I'm sort of a beginner with actionscript, but this shouldn't be as hard as I'm finding it to be.
 
I'm using AS2. I have an ordinary FLV video playing with one of the skins that comes with the Flash software (CS3). That all works perfectly fine. What I need to do, however, is add a large "PLAY" button over top of the movie. I have made that work also. But, I need the button to disappear when the movie starts playing, because it is obviously in the way and making it hard to view the video.
 
Some forums suggested making that button disappear when it is clicked. That would be fine, except that the video player skin also has a play button, and if someone clicks that button instead of my new large button, I still need the large button to disappear.
 
So what I'm trying to figure out how to do is something like:   if the FLV is playing, make this object (the button) disappear or become invisible. This can't be that difficult!

View 1 Replies

ActionScript 3.0 :: Passing Variable From Document Class To Movie Clip Class?

Oct 12, 2010

i have a movie clip which is exported for ActionScript , i want to get a variable from the document class into the movie clip class i tried this but there was an error !!

ActionScript Code:
var main:Main=new Main();
main.txtScore.text="hello";

View 1 Replies

ActionScript 2.0 :: Play A Movie Which Defined In A External Txt File Variable?

Apr 9, 2010

for example i have 2 movie clip, clip1 and clip2, and i want to play one of them, which defined in a external txt file variable like this:&c=1& or &c=2&my problem is, i have just one frame to make this!i tride to make simple my question, it's a bigger project!there is more than 2 movies and can't use if(), i just want to change the number of end of movie clip instans name some thing like this:

ActionScript Code:
clipname= "clip"
var trc = new loadVars()

[code]....

View 9 Replies

ActionScript 2.0 :: If Statements - When The Movie Gets To Frame 100, It Should Get The Variable And Play The Label With The Same Name Of The Button?

Jun 14, 2004

I have three buttons: each one changes a variable to a name: one, two and three and plays the movie.when the movie gets to frame 100, it should get the variable and play the label with the same name of the button...How should be the AS of this frame so it plays to the correct label?

View 1 Replies

ActionScript 2.0 :: Passing Parameters To Embedded SWF

Oct 20, 2009

I have a requirement where-in I have to get an external value to the HTML file and from there the value gets passed to the embedded flash file(swf).

View 2 Replies

ActionScript 2.0 :: F5 - "If The Variable Is Correct AND If It Is Dropped On The Target (g_target) THEN Play The Movie?

Nov 7, 2002

I have an if like this:

on (release) {
stopDrag ();
if (_root.go_blue._droptarget == "/g_target")[code]...

This works. I need to add "if (test = "one")", another drop sets this variable and the drop above should test for it. But I can't get the basics right! I'm a programmer who is new to Actionscript. What I want is:

"If the variable is correct AND if it is dropped on the target (g_target) THEN play the movie, ELSE go back to _x=130, _y=300."

The variable is being assigned correctly, I tested it with a Dynamic text box. The movie isn't running with my code!

View 1 Replies

ActionScript 3.0 :: Cant Get Mc To Play On Root?

Sep 13, 2009

I have a movie mc that contains buttons called menuMovie.I also have another movie clip called "myMovie". There is an instance of menuMovie on the main timeline in keyframe1 called "_menuMovie_mc".There is also an instance of myMovie on keyframe1 called "_myMovie_mc" .I want to have one of the buttons in menuMovie play myMovie.mc which has a label called _here". My understanding is:

root._myMovie_mc.gotoAndStop("_here");

View 2 Replies

ActionScript 2.0 :: Getting Root To Play In External SWF's?

Sep 6, 2004

I am making a website and there is an empty SWF that is the base for my site. It loads up an external page called the Home page, in that home page are movie clips that are told to .play() with a _root command. What i wanted to know, was how do i get those buttons to play those movie clips inside of itself.

MAIN EMPTY SWF __
|
HOME PAGE SWF (which is loaded into an empty movie clip in MAIN)
|
|__ Fading movie clip (which is inside of HOME PAGE, given a _root.fadewhite.play() by a button inside of HOME PAGE SWF

In short, how do i refer to the movie clip to play that is inside of HOME PAGE SWF which was loaded into an empty movie clip inside of MAIN EMPTY SWF?

View 1 Replies

ActionScript 3.0 :: Passing URL - Popup Window With Embedded Flash Player

Jun 4, 2009

Basically, I'm trialling a javascript button that, when clicked, will produce a popup window with the flash player embedded in it. I've had some progress but am having problems passing the url I want...

My javascript reads:
function doublePopup(){
var player = document.FLVClipEditor;
if (player) {
var url = "[URL]";
player.doublePopup(url);
}}
[Code] .....
 
But when I try to pass a URL through, nothing happens. However, if I put the url in directly (as below), bingo! The pop appears!

View 2 Replies

ActionScript 3.0 :: Passing Flashvars To Embedded Video On Facebook Wall?

May 24, 2010

know my question isn't linked directly to AS3, but still.

<meta name="title" content="Stranger: V.V. Brown, Singer-Songwriter" />
<meta name="description" content="We caught up with singer-songwriter V.V. Brown just before she released her new album, Travelling Like the Light. The uber-stylish singer with

[code].....

View 1 Replies

ActionScript 2.0 :: Send Variable Outside Of A MC To Root?

Nov 30, 2008

I brought a pre-built shopping cart and I'm trying to put some buttons in another MC but when I click them the cart don't update.

The original setup of the cart was:

The 'Add to cart' buttons are on the root and the cart was inside an MC also on the root.

Now I understand that it's not not working due to me moving the buttons into a MC.[code]...

View 10 Replies

ActionScript 3.0 :: Access To Variable In Root

May 29, 2010

I have a button in the frame 1 when i clicked it,it goes to the nextframe in nextframe i have movie clip named "circle". in frame 1 in action layer i have variable named "i" it has a number equal 20; now i'm in "circle" movieclip in the action layer i want to write a command for checking "i" if it's equal 20 the "circle" movieclip play but i can't find "i" how can i access to "i" variable in frame 1 ?

View 4 Replies

ActionScript 2.0 :: Play A Keyframe In The Root From A Movieclip?

Feb 16, 2009

I made a button within a movieclip.The movieclip name = OurKlips-mainThe scene name = oneWhen I hit this button, it changes two frames in the html part (This works)Also, I want this button to play frame 30 from the root scene, titled "one"on (release) {getURL("content-ourklips.html", "content-txt");_root.gotoAndPlay(30);}

View 2 Replies

ActionScript 1/2 :: PHP Variable Loads On Root Text - Need To Put It On MC

Aug 20, 2009

I get a variable from a PHP like: "MyMessage". But I need to put this textfield on an MC, could you tell me what I need to do to lead this variable into the MC? (In a graphic object works ok but I need MC to control its X, Y).

View 5 Replies







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