ActionScript 2.0 :: Create A Variable From _parent Mc Right After CreateEmptyMovieClip?

Nov 5, 2002

I am trying to something like the following:

createEmptyMovieClip("iconLoad"+ i, .i+100);
["iconLoad" + i].iconName = IconArray[i];
loadMovie("pIcon.swf",["iconLoad" + i]);

In the movie pIcon.swf there is a local variable iconName. I am trying to set this variable from the above code (2nd line).

View 3 Replies


Similar Posts:


ActionScript 2.0 :: CreateEmptyMovieClip [flash 8] - Create A Table Of Thumbnail Pictures From An Xml

Sep 17, 2010

I am trying to create a table of thumbnail pictures from an xml. I have made the table load from from the file though when the items are created the other layers (e.g background and text field) only show in the first thumb. I also want to be able to click the thumb and have it go to the corresponding url from "curl[]". I just can't work it out. At the moment it will only go to the last url added in the array! I have a clip on the main stage with instance name thumbnail Here is the code I am using

[Code]...

View 1 Replies

ActionScript 2.0 :: Create A String Variable...and Then Use The Value Of That Variable To Declare Another Variable?

Jan 3, 2006

f you know PHP...then you know that you can create a string variable...and then use the value of that variable to declare another variable. like this:

PHP Code:

<?php$foo = "haha";$i{$foo} = "success";print $i{haha};?>

and it would display "success"...or like this:

PHP Code:

<?php$foo = "haha";$$foo = "success";print $haha;?>

and it would also display "success".

View 6 Replies

ActionScript 2.0 :: Use _parent 2 Times?

Dec 6, 2006

I would like to make a game for christmas. How can i use _parent 2 times? i mean, i have a kinda complicated MovieClip, it's movieclip in movieclip, i think 4, and i want to a script do nextframe to the second parent folder.

Code:
ROOT->Movieclip->2nd Movieclip->3rd Movieclip->4th movieclip.

The 4th movieclip when gets to a keyframe, it activates a script, to do nextFrame() in 2nd movieclip. I tried _parent._parent.nextFrame() and also _parent(2).nextFrame() but they didnt work.

I wanna know how can i jump up 2?

View 2 Replies

ActionScript 2.0 :: _parent, _root Or Something Else?

Jun 14, 2007

I used the tutorial on Kirupa on loading external swf's. Before writing here I tried to find an answer in the forums, but no luck so here I go.[URL]..If you look at my files: Open portfolio.swf and hit one of the first two images (that initially flies in). here you will see that if you hit the second one, the rpesent one displayed makes an outro and the second one makes an intro, PERFECT!

Now, if you open default.swf (that has portfolio.swf loaded into a movie clip as you can see by looking at the source) and if you hit the second image, the first one makes the outro, and then makes an intro. So the shift to the second one is not happenening. Please, can someone help me to make this happen?

View 4 Replies

ActionScript 2.0 :: Disable All Buttons In _parent?

Nov 13, 2005

Is it possible to disable all buttons in _parent?I dont want to use the name of all the buttons

View 2 Replies

ActionScript 2.0 :: _parent._name Not Showing Up

Nov 6, 2011

ok since no replyes to my last post ive added an example: basicly in root i have this code:

var container_mc:MovieClip = this.createEmptyMovieClip("container_mc", this.getNextHighestDepth());
attachMovie("button_mc","button_mcadded",_root[container_mc]);

[Code]....

View 1 Replies

ActionScript 2.0 :: _parent Not Working - How To Make It Work

Nov 7, 2004

I have a movie clip that has the following code:

on (release) {
_root.rightMenu_mc.gotoAndStop("Animation");
}

It works fine the way it is but I read that it is better to use relatives paths rather than _root all the time but when I change it to _parent.rightMenu_mc.gotoAndStop("Animation"); it doesn't work anymore.

View 13 Replies

ActionScript 2.0 :: {FMX} _parent Action Doesn't Work For SWF?

Apr 3, 2003

I have a movie load an SWF into a movie clip, in that SWF there is a button which tells a movie clip to .play, the movie clip inside that swf is called "clip". i have on that button _parent.clip.play();

View 2 Replies

ActionScript 2.0 :: Paths - _root Will Not Work With _parent

May 21, 2003

I have several SWFs that I need to work when loaded into another container SWF file as well as work when they are stand-alone SWF files. Because of this, in circumstances where a movieClip is being talked to from another MovieClip I am using _parent as opposed to _root. It has been working fine until now. I have one circumstance that only works with _root and will not work with _parent. _root.content_mc.anim_mc.screenShots_mc.gotoAndSto p(2); Obvously this works fine as a stand alone but not of course once loaded into the container movie.

View 5 Replies

ActionScript 2.0 :: _parent.onRollOver Overwriting OnRelease?

May 22, 2007

I have some code similar to this:

Code:
mc1.button.onRelease = function() {
//do stuff
}
mc1.onRollOver = function() {

[Code]...

View 2 Replies

ActionScript 2.0 :: _parent[vehiclename1][vehiclename2]._rotation?

Mar 29, 2005

how would i write this _parent[vehiclename1][vehiclename2]._rotation, it doesn't like the two breackets next to each other need quick reply.

View 3 Replies

ActionScript 2.0 :: Create Variable Names Using My Percentage Variable?

Dec 4, 2005

I'm currently working on an advanced preloader and i'm creating loads of different variables etc. based on the percentage loaded. I need the variables to be named Number + percentage, so in the end I will have Number1, Number2, Number3, Number4 etc. How can I create variable names using my percentage variable? Can't seem to find anything that answers my question.

View 2 Replies

This._parent.mc_video - ContentPath - Load A Video Swf In To A Master Swf

Aug 31, 2010

First off I am using flash 8 What I am trying to do. (or should that be failing to do?) load a video swf in to a master swf, Master swf has no controls and loads the video swf ok But no video content. Main file loads video swf in to mc_vidholder in the main swf Code in AS frame

[Code]....

View 1 Replies

ActionScript 2.0 :: Video Object _parent (Without Conponents In Libary)?

Jun 26, 2009

How can I create Video Object only with AS? (Without Conponents in Libary) I want to locate my Video Clip in MovieClip

var myMovieClip:MovieClip=this.createEmptyMovieClip("m yMovieClip", this.getNextHighestDepth());

and How can I create Video Object in this myMovieClip (AS without Components in Library)

var myVideo:Video=...
...=myMovieClip.createNewVideo("myVideo", myMovieClip.getNextHighestDepth());

View 0 Replies

ActionScript 2.0 :: Change Root To _parent Values And Nada?

Sep 27, 2005

i can't get this preloader to work. i test it out, and it hangs. i've tried to change my _root to _parent values and nada. it just shows 0% and does nothing. here's the AS that i am using:

[Code]...

i got it off a tutorial a while ago. it seems to work in other flash movies that i have created, but not on this one. i've even re-built it from scratch, and still nada.

View 4 Replies

ActionScript 2.0 :: Mouse Events For _parent And Child Clips?

Dec 8, 2007

I have a _parent movieclip that receives mouse events and I want the clips inside the _parent clip (child clips) to receive mouse events also, but because of the _parent's mouse event handlers, the child clips are "interfered" with, or not received....how do I make it so both the _parent and the child clips can receive mouse events?

View 1 Replies

ActionScript 3.0 :: Create A Variable And Get The Button To Add One To That Variable?

Jan 28, 2010

I want to be able to have a number displayed on the screen that when one of the arrows next to it (up/down) is clicked it adds 1 to the original number (lets say 72). Then when they click the "save" button that really just takes them to the next frame (or a frame somewhere else in the movie), which is a confirmation page, I want the number they ended at to display on the confirmation screen.
I'm thinking that it is partially because I don't know what to search for.I know I have to create a variable and get the button to add one to that variable.

View 2 Replies

ActionScript 3.0 :: Create Variable Without Variable?

Feb 24, 2010

I have a [code]...

in the end of code i have 2 variables 'iconFace' and 'splice'.This variables without var.. so first question this is ok practice?

Second question: maybe need create 2 classes for this variables? and in class declare variable?

View 8 Replies

ActionScript 3.0 :: Making A "_Parent" Hyperlink?

Apr 9, 2009

Does anyone know the Actionscript 3.0 code for displaying a hyperlink in the "_parent" browser window?
 
{    navigateToURL(new URLRequest("link.html"));}

View 9 Replies

ActionScript 3.0 :: CreateEmptyMovieClip?

May 27, 2009

ve been trying to populate an empty MovieClip in AS3. I can get my head around it if I create an empty movie clip and place it in the library, and then add it to the stage and then add other MCs from the library to it.But I want to make multiple empty MCs and fill each one with MCs. I want to do this using for loops so I can control as many as I need.I dont know how to write the code. I can do it in AS2! but thats not the point!here's the simple version:::

Code:
var myMC:MovieClip = new MovieClip();
for(var i:int=0;i<5;i++)

[code]......

View 13 Replies

ActionScript 2.0 :: CreateEmptyMovieClip?

Oct 12, 2011

I find myself having problems with createEmptyMovieClip(s), I only seem to have one loading, I basically wish to have a preload for each thumbnail, my images are obtained from a php array and not an xml file.

Code-
hspace = 80;
vspace = 20;

[code]......

View 6 Replies

ActionScript 3.0 :: Migration With CreateEmptyMovieClip?

Oct 9, 2008

I'm having some big problems trying to migrate this part of code from AS2 to AS3. I'm newbie, and tried to google examples, but i still can't get it.

[Code]...

View 1 Replies

ActionScript 2.0 :: CreateEmptyMovieClip + LoadMovie?

Jun 22, 2011

The "scroll_right" image shows up, but in Debug, _root.win_Main.scroll_right.bar does not exist after this code is called. However, _root.win_Main.scroll_right DOES exist.

Code:
var win:Object = _root.win_Main;
win.createEmptyMovieClip( "scroll_right", win.getNextHighestDepth() );

[code].....

View 5 Replies

ActionScript 1/2 :: Removing Mc After CreateEmptyMovieClip?

Aug 12, 2011

I found some AS2 code for creating a XML dynamic photo gallery, with thumbnails and big selected image. I extended that for more than one gallery, and all worked well except one thing: when I load a gallery with, for example, 6 photos and return to one with 2, the difference of 4 thumbnails of the first gallery remains, so the problem is that I don't know how to remove the mc instances that I've created with createEmptyMovieClip function. The code of the function that creates every thumbnail is:
 
function thumbnails_fn(k) {    thumbnail_mc.createEmptyMovieClip("t"+k, thumbnail_mc.getNextHighestDepth());        tlistener = new Object();    tlistener.onLoadInit = function(target_mc) {          target_mc._x = hit_left._x+(target_mc._width+5)*k;        target_mc.pictureValue = k;        target_mc.onRelease = function() {                        p = this.pictureValue-1; 

[code]....

k is the number of the image to create this thumbnail, and thumbnails[cat_actual][k] is the path that contains the thumbnail to show. I've tried to use the removeMovieClip(); function with thumbnail_mc but doesn't work.

View 3 Replies

ActionScript 2.0 :: Centering A CreateEmptyMovieClip?

Jun 16, 2005

this is what i have.- createEmptyMovieClip "hold"- hold.attachMovie("logo","logo",1)the problem is that when attaching the logo...it's not centered. how do i center it...i've tried _x and _y but Movie Clips seem to have different dimensions than the actual movie size.

View 4 Replies

ActionScript 2.0 :: CreateEmptyMovieClip / MovieClipLoader?

Jul 6, 2005

it goes to a certain point in the timeline, which then initiates some code to load a movie clip onto a certain part of the screen.I made a sample swf to be loaded(home.swf), but the thing is, I dont want the user to see the things that are off the page of home.swf, that the user couldn't normally see... i was wondering the best way to solve this.As you can see, i already tried sizing the clip, but that only made it extremely small and didn't solve the problem.he main timeline :

Code:
this.createEmptyMovieClip("content_mc", this.getNextHighestDepth());
var mclLoader:MovieClipLoader = new MovieClipLoader();

[code].....

View 5 Replies

ActionScript 2.0 :: CreateEmptyMovieClip Not Working?

Apr 7, 2006

I'am having troubles with the CreateEmptyMovieClip on my website.I made the following script in a new document with just a button and an image.This is the code in the button:

Code:
on (press) {
gotoAndStop(2);

[code]......

View 1 Replies

ActionScript 2.0 :: Multipe CreateEmptyMovieClip?

Apr 29, 2006

Ok, so I am using a basic stamp and processing to create an interface in flash. So far I have it draw a line from the middle of the stage to the x-y of my custom mouse when you push a button. That's the easy part.What I am trying desperatley to do is to make each line stay on screen, and when you press the button a new line is drawn. This is where the problem is. Right now it's erasing the old line and drawing a new one every time.I have tried everything under the sky that my basic knowledge can think of. It seems that what I need is to name each new EmptyMovieClip with an increasing number at the end (like "line1" then :"line2" etc) but when I try that I can't get the lineStyle and moveTo commands to recognize the names.Any suggestions? Here is the part of my Actionscript:

inVarY = (inData[0]*2);
inVarX = (inData[1]*2);
btnVar = (inData[2]);

[code].....

View 10 Replies

ActionScript 2.0 :: CreateEmptyMovieClip() With LoadClip()?

Feb 2, 2007

I'm making a simple photo gallery, and I'm having trouble loading the thumbnail images. I use the same method (loadClip()) to load the fully sized pictures, and there's no problem there. Even with the thumbnails, I could get the images to load properly when I hard coded each individual thumbnail. The problem is when I try to createEmptyMovieClip() and then loadClip() into these movieclips dynamically, if you will, so it can adjust itself to the number of images in the gallery. I get nothing. No images. Nothing shows up.This is my first time using the createEmptyMovieClip and loadClip methods,

Basically, the code is just creating a new movieclip (mc_thumbnails) to contain all the thumbnails. Then, it should create a new movieclip (inside mc_thumbnails) for each image available. Inside each of these clips (mc_thumbnail1, mc_thumbnail2, etc), the appropriate image should be loaded...

Code:
thumbnailMCLoader = new MovieClipLoader();
thumbnailPreloadObj = new Object();
thumbnailMCLoader.addListener(thumbnailPreloadObj);[code]...

View 5 Replies







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