ActionScript 3.0 :: Accessing Root From A Dynamic Clip?

Jun 13, 2009

Basically I have a _mc that I am calling in from the library. When I get to the end of the clip I want it to advance the root time line to frame 3.This is the code I have at the end of the _mc

MovieClip(root).gotoAndStop(3);

This is the error I get :Error #1009: Cannot access a property or method of a null object reference.at introScene/frame91()

TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::Stage@44370ba1 to flash.display.MovieClip.

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Accessing MC In Root Of Movie?

Apr 16, 2009

here's my problem/code:
 
I have a mc in the main timeline named contactBox_mc, within this mc I have another mc named closeBtn_mc. I have added an EventListener to closeBtn_mc to set the visibility of contactBox_mc to false on MouseEvent.Click.. but no matter what method I try, I get the following error:
 
1180: Call to a possibly undefined method contactBox_mc.
 
This is the code I placed within closeBtn_mc to set the visibility of its parent movie to false:
 
closeBtn_mc.addEventListener(MouseEvent.CLICK, closeBox);
function closeBox(e:MouseEvent):void{
contactBox_mc(this.parent).visible = false;
}
 
I also tried: root.contactBox_mc.visible = false; and got the same error,

View 4 Replies

Xml :: Accessing Root Node In Flex

Jan 9, 2010

I'm having trouble accessing the value of the root node of an XML variable in flex. For example:

[Code]....

I can change the "Type" attribute above with X.@Type="xyz"; But how do I change "Content123" to something else? If the xml document were longer/deeper, I could say something like X.Entry[11].Cost=2.22; But what do I say in this case? Obviously X="Content456" doesn't work...

View 4 Replies

Flex :: Accessing Root Of Loaded Swf?

Mar 4, 2012

I have a SWf application built in flex 4. One part of the application relies on accessing a public variable ("step1") set at the application root, and is accessed with

var app:Object = FlexGlobals.topLevelApplication;
trace("step one is "+app.step1);

This, while not optimal, has worked fine. Now, hoever, I need to load this entire application into another application, and I can't figure out how to access my step1 variable any longer.I have been loading the swf into the new parent application like so:

public var myLoader:Loader = new Loader();
public var pizzaContainer:UIComponent = new UIComponent();
private var myUrl:URLRequest = new URLRequest("chickensoup.swf");

[code]......

View 1 Replies

ActionScript 3.0 :: Accessing Mc Functions From The Root?

Sep 22, 2009

How can i access a function that is in a movieclip from the root?

i've tried these :

mcName.functionName();
MoviClip(mcName).functionName();

but all of them didn't work at all.

View 1 Replies

ActionScript 2.0 :: Accessing Text Box In A Movieclip From Root

Mar 23, 2007

I'm trying to change the text on a textbox called "text1" that is part of a movieclip called "menulist" using actionscript. How can I access text1 with actionscript?[code]

View 6 Replies

ActionScript 2.0 :: External SWF Accessing Root Variables

Dec 10, 2007

My flash project is structured as follows, with the nested external swfs being loaded to clip holders using loadMovie():
home.swf
|--sponsors.swf
|--educators.swf

In home.swf, I've defined a text box with instance name contentWindow_txt, and assigned its path to _root.cw_txt. Now, when I type the following anywhere in home.swf:
Code:
_root.cw_txt.htmlText = "testing!";

The dynamic text box contentWindow_txt will display "testing!" when the swf loads. Unfortunately, when I make the same call in sponsors.swf, I get nothing. Is there something about external swfs or variable inheritance I don't know?

View 9 Replies

ActionScript 3.0 :: Accessing Variables On The Root Timeline?

Feb 18, 2008

I have some variables declared on the root timeline that I need to access from some MovieClips. In AS2 I would do something like this _parent.myVar from within my MovieClip. I intend on getting fully up to speed with AS3 but right now I need a quick fix.on the root timeline I have a variable : var myHitTest:Boolean = false;My MovieClip needs to access this var so I tried it several ways listed here. I've had no success.

parent.myHitTest:Boolean
root.myHitTest:Boolean
Stage.myHitTest:Boolean

[code].....

View 6 Replies

ActionScript 3.0 :: Accessing Parent Root From External Swf?

Jul 23, 2009

I am able to access main root from an external swf by doing this:

MovieClip(root.parent.root)

but how to avoid getting an error when testing external swf alone? Is there any try catch system I can do to avoid thoses errors?

View 1 Replies

ActionScript 2.0 :: Accessing Root Function From Timeline?

Aug 17, 2009

im attempting to keep it as portable as possible so its easier to edit later, and i dont have to go around copying/pasting too much code. - i'll cut to the chase..

On my main timeline, i load all the image-file names, as variables.. using loadvars into thumbnails, which ive given instancenames Loader_1 to Loader_20, inside these thumbnails is the Loader component Thumb_1. Here is the code on the main timeline, to load these variables.

Code:
BigLoader._visible = false;
var my_lv:LoadVars = new LoadVars();
// load variable function

[Code]....

how i could make this more portable without -completely- changing the format its in [so i can still understand it]

View 9 Replies

ActionScript 3.0 :: Accessing Class Instance At Root From Movieclip

Nov 15, 2010

I have declared a object in my 1 st frame of application.

ActionScript Code:
var objTest:Test = new Test();

I am tring to access the object from a movie clip. Movie clip is located in frame 2. I am getting error

ActionScript Code:
this.parent.objTest.IncrementCount();
trace(this.parent.objTest.QuestionCount);

1119: Access of possibly undefined property objTest through a reference with static type flash.displayisplayObjectContainer.

How to access a object instantiated at root from a movie clip.

View 1 Replies

Professional :: Accessing Class Instance At Root From Movieclip?

Feb 25, 2010

I have declared a object in my 1 st frame of application.

ActionScript Code:
var objTest:Test = new Test();

I am tring to access the object from a movie clip. Movie clip is located in frame 2. I am getting error

ActionScript Code:
this.parent.objTest.IncrementCount();
trace(this.parent.objTest.QuestionCount);

[code].....

View 4 Replies

ActionScript 3.0 :: Accessing Class Instance At Root From Movieclip?

Nov 16, 2010

I have declared a object in my 1 st frame of application.

ActionScript Code:
var objTest:Test = new Test();

I am tring to access the object from a movie clip. Movie clip is located in frame 2. I am getting error

ActionScript Code:
this.parent.objTest.IncrementCount();
trace(this.parent.objTest.QuestionCount);

[code].....

View 3 Replies

Actionscript 3 :: Accessing A Clip Inside Another Clip In A Loaded SWF-File?

Mar 1, 2010

I'm writing a card game in AS3. The artist I'm working with has produced (in Flash CS4) a single swf-file containing all the card graphics and animations. The structure of the fla working file looks something like this:

- Scene
- CardGraphics (Movie Clip)
- CardFront
- CardBack
- CardValueImage (Movie Clip)

In the program I create 52 instances of my Card class, each having a MovieClip instance created from the loaded swf. The idea is to set the frame of the CardValueImage MovieClip to correspond to the Card instance's suit and rank member variables. However, I can't figure out how I access CardValueImage and call gotoAndStop (or whatever method I will need to call).

[Code]...

View 2 Replies

MX Making Root Movie Clip Invisible?

Apr 11, 2009

I have a button inside a movie clip that when pressed it launches another movie clip. That part works great. The problem I'm having now is either removing the original movie clip or at the very least making it invisible when the next movie launches. So far for my button script this is what I have:

onRollOver=function(){
this.gotoAndPlay("_over");
};
onRollOut=function(){

[code]...

View 3 Replies

ActionScript 2.0 :: Go To The Next Frame Of Root From A Movie Clip?

Dec 6, 2005

I am trying to do up the framework for a flash project which has a transistion fadein and fadeout whenever it loads a new content but faces no result. How is this done? I have created fade in and fadeout as movieclips. Is there any script that I can use in my fadein movie clip that tell the root frame to jump to another frame?

View 3 Replies

ActionScript 2.0 :: Dynamic Reference To ROOT?

Aug 3, 2009

I am having trouble dynamically changing the reference to root in my movies. Here's what I'm trying to do: I have a main movie(_level0.mainMovie) that I am loading external .swfs into. However, I want to be able to test the child movie clips without having to load them into the mainMovie(for testing purposes). In such a case, the child clip would be at _level0 or _root. I would like to add some code to the child clips to test whether they are the _level0 clip, if not, then I want to change their reference to _root. Here's what I've come up with, which doesn't seem to work:

ActionScript Code:
function testLevel(){
//This code goes into each child clip to see if it has been loaded into another clip

[code]...

View 0 Replies

ActionScript 2.0 :: Link Dynamic URL From Root Of SWF

May 6, 2004

My swf file is stored on the web server in say /images/swf/my_swf.swf
The web page I want to link to is stored in the same folder /images/swf/My_Page.htm
So if my_swf.swf is embedded in say Original.htm page in the /images/swf/ directory.
When the visitor to Original.htm Clicks on the Button_btn they will be linked to the My_Page.htm with the following code.

Code:
_root.Button_btn.onPress = function () {
getURL("My_Page.htm", "mainFrame");
}

I have to store the My_Page.htm and the my_swf.swf where they are but the Original.htm is else where and has a number of other .swf's on it. So now when the Vistor click on the Button_btn the link tries to find the My_page.htm in the root of the Original.htm. How can I make the link in the my_swf.swf force the link to read from the root of the swf rather than the Original.htm?

View 5 Replies

ActionScript 2.0 :: Controlling Movie Clip Speed From Root?

Mar 2, 2010

In my document I have my actionscript on Layer 1. In this I duplicate an enemy movie clip.The controls for moving the enemy are inside the enemy movie clip, so setting speed, where to start from etc.On the Layer 1, I also run a script which acts as a timer, and when it reaches set values (eg. 10 seconds) it "levels up" (basically just changes background colour). I wand this to increase the speed of the enemy movie clips so that they get faster. I have this code:

Actionscript Code:
for(i=1;i<=enemies;i++){  _root["enemyRight"].duplicateMovieClip("enemyRight"+i,i+1000,enemyRight); 

[code].....

View 2 Replies

ActionScript 3.0 :: Controlling Root Timeline From Movie Clip?

Nov 18, 2008

I'm trying to control the root timeline from a movie clip. On the last frame of the movie clip, I have:

MovieClip(root).gotoAndPlay (10);

which successfully brings me back to frame 10 on the main timeline. However, from here, none of the ActionScript that is on Frame 1 seems to work... the rollovers aren't working, except on those embedded in a separate movie clip.

View 2 Replies

ActionScript 3.0 :: Control Root Timeline From A Movie Clip

Oct 1, 2007

In Flash CS3 using Action Script 3, how can I tell the main timeline to gotoAndStop(); a certain frame from within a movie clip.

I have a menu (which is a movie clip) with various buttons. Each button corresponds to a certain frame in the main movie. So if a user click on Button1, it should gotoAndStop(1); and Button2 should gotoAndStop(2); and so on.

In Action Script 2, I could use _root.gotoAndPlay(2); from what I understand, but that does not work in Action Script 3.

View 9 Replies

ActionScript 3.0 :: Controlling Loader On 'root' From Movie Clip

Nov 4, 2009

I have on my main timeline a movie clip (emptyMC) that I am loading my external SWFs into and I need to be able to access this loader movie clip from my menu, which is it's own movie clip. As it stands, when I have my buttons on the main timeline I have no issue. But once I put these same buttons into the menu MC I am lost as to how to "get back" to the loader on the main timeline to load and unload the external SWFs.Here is my current code that allows for me to load and unload with buttons on the main timeline. Is there away to modify this same code for my purposes?[code]

View 0 Replies

ActionScript 3.0 :: Attach A Movie Clip To The Stage Or Root?

Nov 12, 2009

how to attach a movie clip to the stage or root. I have created a movie clip called movClip and have checked export for actionscript and have chosen "movClip" as its class.I have used this script:

ActionScript Code:
function button1(evt:MouseEvent):void {
var mc1:movClip=new movClip();
mc1.x=0;

[code]....

This attaches the movie clip. Great! Problem is it doesn't attach the movie to the root or stage, but rather as a child of this function?? weird! so when I want to use removeChild(mc1) from a different function from a different button or even from an action set on a different timeline it can't target mc1?So how do I make this work. Basically I want one function from button 1 to attach the movie clip and I want a second function from a second button to remove the movie clip.

View 4 Replies

Actionscript 3.0 :: Access The Root Timeline From A Movie Clip?

Jun 9, 2009

What the best way to access the root timeline from in a movie clip?

View 3 Replies

ActionScript 3.0 :: Access Root Variables From Loaded Clip

Oct 20, 2010

How can I access variables defined on root from a loaded movieclip? The loaded movieclip path can differ, so I cannot get to root like parent.parent, for example. I thought something like this.root.varName may work, but it obviously doesn't.

View 3 Replies

ActionScript 2.0 :: Unloading Movie Clip From Root Container?

Aug 5, 2008

I've created a main page with my main links on top, and a container as my body.I load my pages with this action to the container.

on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = "production";
container.loadMovie("production.swf");

[code]....

Inside the production.swf files I've created a gallery with a MovieClip that loads from my library to a container1 inside the production.swf. In the galleryMC(from library), Ive created a close button to unload it from the container1. It works fine from my production.swf file, but when it loads to the main page it doesn't unload. This is the ActionScript that I have to unload the Movie Clip.

on (release) {
this._root.container1.unloadMovie();
}

View 2 Replies

ActionScript 2.0 :: Dynamic Variable Names When Out Of Root?

Jan 11, 2010

This is an example of the kind of issue I'm trying to solve. Say I'm looking to set 10 text fields (text_field_1 to text_field_10) within my movie clip 'myMovieClip' to the value of i. Now if the for loop and the text fields are in the place (_root) all I would have to do is:

ActionScript Code:
for (i=1; i<10; i++)
{

[code]....

View 3 Replies

IDE :: Dynamic Color Change - Root Page?

Mar 26, 2009

I am interested in creating a similar color change effect as seen at:As you can see, the color transforms as each menu item is clicked but it doesn't seem to load a new movie.

View 1 Replies

ActionScript 2.0 :: CS3 : Access A Function From The Root That Is Inside Another Movie Clip?

Oct 21, 2009

How can i access a function, from the root, that is inside another movie clip?

_root.mc_1.mc_1_1.mc_1_1_1

Inside of the mc_1_1_1 is a function called test_me.How can i call that same function from the root?

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







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