Flash8 :: Add Variables To A MC From The Action Layers, Using The MC Instance Name

Sep 11, 2009

I've read on the net that actionscripting from the action layer will result in a more readable file once published, as apposed to attaching onClipEvent functions which slow down readability.

For this reason I am trying to add variables to a MovieClip I have on the stage with an Instance Name of Player. However I wish to assign the MovieClip variables from the actions layer using the MovieClips Instance Name.

[Code].....

View 5 Replies


Similar Posts:


ActionScript 2.0 :: Action Scripted Layers Always Act As Top Layers?

Sep 10, 2005

the snow effect always acts like the top layer, ok what i mean is, i have 3 layers, (1)toplayer= a car, (2)middle= snow, (3)low= background.I want to make the snow to be seen behind the car...i hope you understand what i mean , whenever i put the code from the link above it acts as the top layer and appears in front of everything.

View 4 Replies

Flash8 :: Seeing All Layers In Animation?

Mar 13, 2009

I am trying to make an animation in which different layers (=images) come into the stage, then stay in place and other layers move in and stay as well. I have done 2 of the layers so far, converted them into movie clips, tweened them etc. When I run the cursor along the timeline, I see the desired result on the stage, ie everything comes in at the right time and stays in place. However, when I export it to view the film, only the first layer comes in, moves into place and stays there, and then nothing happens, ie the second layer never comes in.

I've tried everything I can think of, moving the layers around etc, and have deleted and redone the whole thing many times in an attempt to fix this, but I simply don't know what is wrong.

View 4 Replies

ActionScript 3 :: Level Of MovieClip - Moving Action Layers?

Aug 9, 2011

When creating some extended MovieClip to the stage using AS on Actions of some frame, on which layer this MovieClip is created? On layer where Actions were? If I wanna move it down, for example, can I simply move the Actions layer? And by the way, one more question, what if I would not create Actions layer and write all the code on some used one?

View 2 Replies

ActionScript 3.0 :: Possible To Have At Least Two Action Layers To Separate Global And Local Actions?

Sep 27, 2008

I wonder if a keyframe on an actions layer that has an action in it will work like a keyframe on other layers, meaning it will make all actions on the previous action frame inactive and only the actions on its corresponding action sheet available.If that is the case, is it possible to have at least two action layers to separate global and local actions?

View 9 Replies

ActionScript 2.0 :: Use Local Instance Variables Vs Attach New Properties To The Instance Object?

Mar 14, 2006

I am wrapping my brain around OOP in AS2. I am making two posts on two different subjects. My question here is: when should I use local instance variables, and when should I attach new properties to the instance object? (Feel free to correct my terminology.) Let's say I have a class for a scrolling background, which scrolls when I mouse over its edge. I want to put these values somewhere:

1) How wide is the border in which a mouseOver makes it scroll? This is basically a semi-constant I set it up once and keep it the same, unless the user changes it in an options menu to make the border wider or narrower. Call this scrollBorderWidth.

2) How fast is the background scrolling now? I want to track this so I can smoothly change the scroll speed over several frames. This is often changed. Call this scrollSpeed.

It seems I have two ways I can store and access these values and darned if I know which is better practice. METHOD A: Make them local variables in the class, so the scrolling background instance has them as local vars. I set them up thusly:

[Code]....

View 4 Replies

Flash :: UIComponent In Swc - New Instance Doesn't Seem To Construct The Children Arranged On The Layers

Jun 7, 2010

In Flash, if i create a custom Movieclip, and compile it to a SWC, i can use it in .fla files (by linking to the .swc)..

[Code]...

All the arrangement of graphics on the custom movieClip's layers is preserved. If i subclass UIComponent and compile to a swc, I can use the custom Class in my .fla file, but the new instance doesn't seem to construct the children arranged on the layers.

I know that the correct way to make a custom component is to have the two frames, first to specify bounding box, second frame for assets, and that the first graphic in frame 1 is removed at runtime. But i'm not really trying to make a reusable component - i just want to use the UIComponent class (It seems to have some nice extensions to Sprite). As i really want some hand-positioned layers inside the component i figured i could have the bounding box as the first element on frame 1 (knowing that it would be removed), but any other items i put on frame 1 would be preserved - buttons, images, lines, etc.

View 2 Replies

ActionScript 2.0 :: Flash8 Variable From Instance Name?

Sep 5, 2009

I've got these 150 buttons on my stage which all do the same thing. They test their value against myVariable to see if there's a match. If there is, it's a right answer and the user gets a point. The myVariable may be anything between 1 and 150. I have my button code on a single frame now but I'm looking at duplicating it 150 times (1 for each button instance). This seems a wasteful way of doing things. Is there any way I can extract a variable from the instance name? The buttons named btn1~btn150.

Is there any way to:
btn 1~150 onRelease
var newVariable = [instance name - "btn"]
I guess this requires some way to listen for an instance name.

View 3 Replies

ActionScript 3.0 :: Remove Action From One Instance?

Dec 15, 2010

Say I create a movieclip which acts like a button, meaning that it has an over state, out state etc.  I then create five instance of this movieclip and give each one an instance name e.g. b1, b2, b3, b4 and b5.  Is there anyway of removing the states actions of say b1 without having to create a new button just for this?  I was hoping there was something like b1.turnOffEffects = true (In my dreams, lol).

View 1 Replies

ActionScript 2.0 :: Flash8 : Dynamic Instance Naming Of MC's?

Jun 5, 2009

I have 4 Mc's on the stage, and they have instance names 'mc1' - 'mc2' etc.The MC's have links in them (they are kind'a navigation items) and i need to change the functions of the 'rollOver, and mouseDown events', but keep the MC's the same.The MC's are referenced by instance name and given functions in the first few frames of he movie. for example

---------------
mc_1_0.onRollOver = function() {
if (_root.mc_1_0._currentFrame == 1) {

[code]...

Now, what i want achieve is to change the instance names of the MC's (mc_1_0 for example) so that when the user interacts with this MC on the stage, they are taken to locations of my choice (and the actions of another MC), by switching the instance names. IE, i want to change the instance name of 'mc_1_0' to 'mc_2_0' at runtime, BUT i want to do it with a variable from a .txt file.i would need to start with a script that looks for the MC with a certain instance name

-- look for instance mc_1_0, and then change the instance name to 'mc_2_0'

The effect would be that the user would instigate the same actions, regardless of which of the two MC's they rolled over.Maybe i could call the instances initially 'MC_1_Temp' and 'MC_2_Temp' etc: and then i would need a script to change them to 'mc_1_0' and 'mc_2_0' at runtime.SO in the text file i would need something like this

--------------------------
&MC_1_Temp_name=mc_1_0&
--------------------------

this way the behaviour of the MC on the stage wil take on the functions of another MC.should i be looking at something like this placed on the MC.....

onClipEvent(load){
//make this instance called - var = MC_1_Temp_name
}

View 3 Replies

ActionScript 2.0 :: [Flash8] Using Symbol And Instance Names

Jul 10, 2008

I'm building a platforming game using AS2. I just got collision detection working between my character and multiple instances of an object. the different collisions (top, left, right, and bottom of platform blocks) are determined by a single symbol with 4 instances named for the different sides. this is good if i only want to have one block. is there a way to reference the symbol name in the actionscript or to have multliple instances of the same name to actually work?

View 1 Replies

Professional :: CS5: Define An Action On The Button Rather Than Each Instance?

May 29, 2010

I have a button which appears on multiple frames. I want to define an action on the button rather than each instance. Is there any way that I can do this in CS5?

View 4 Replies

ActionScript 2.0 :: MC With Instance Name - Time Delay Before Action

Aug 2, 2010

On my first frame, I've placed an MC with an instance name of "ball" and entered the following script:
ActionScript Code:
ball.onEnterFrame = function() {
if (Key.isDown(Key.LEFT)) {
this._x -= 10;
}}
How do I create a time delay between the key being pressed and the ball changing position?

View 2 Replies

ActionScript 2.0 :: Flash8 : Return The Index Of The First Instance Of A Specified Value Within An Array?

Apr 29, 2009

Is it possible to return the index of the first instance of a specified value within an array? Similar to:

Code:
var my_string = "string";
var index = my_string.indexOf("g");

/*Outputs:

1
*/

Basically, I have two arrays, each with 10 values (in slots 0-9 of the arrays). So I need to see if an array has a specified value in it, but then I have to see if the other array has a certain value in it, in the same spot as the first instance of what I search for in the first array.

View 4 Replies

Flash8 :: Variables That Can't Go Below Zero Etc

Aug 4, 2010

just getting the grip around the variables and im experimenting. This is what i have as a variable

money = 1000;
health = 100;

Then i have the dynamic textbox that shows them. works great, and i also have various effect that makes the two go up and down. Here's the problem, or more, how i would like to expand the concept but is stuck on. Right now both variables can go as high and low as possible (of course). Is there something i can add in that script that makes so the money variable can't go below 0. Also is there something i can add so that the Health can't go ABOVE say 500 and when health reaches zero (or a negative) this triggers _root.gotoAndPlay("gameover"); you get what im trying to achive here

View 15 Replies

ActionScript 3.0 :: Altering A Variable From An Action Frame In An Instance?

Sep 11, 2009

I have an animation and i want a variable to eb set to false once it is done. I was currently using the statement below when i simply used addChild(name); to add it.

MovieClip(this.parent).hero.landing = false;

However i now changed that statement to gamelevel.addChild(name); and the above statement no longer works properly, it changes the variable to false, but it resets immediately after. How do i reference this properly?

View 2 Replies

Actionscript 2.0 :: Action Script Instance In Movie Clip

Feb 11, 2009

I'm trying to get a button that I made, which is in a different movie clip, to change the video in the video list.[code]The button instance name is "v1btn" and it's in the movieclip instance name "menuBtn"

View 11 Replies

Flash8 :: Put Variables In An Array?

May 31, 2009

Is it possible to put variables in an array?

For example:

Code:
var positions:Array = new Array(Stage.width / 2, Stage.height / 2);

When the above code is executed, the values "Stage.width / 2" and "Stage.height / 2" are replaced with the number values and the array becomes, for example [500, 400].And when I call the array positions[0], instead of getting the value of the Stage.width / 2 (considering the stage has been resized), I get the static value of 500.What can I do to get the value of Stage.width / 2 ?

View 1 Replies

Flash8 : Using Variables Over Timelines (AS2)?

Feb 11, 2010

My variable from the root timeline is not being sent to say a timeline inside a moveclip. This is basically my code:

On root timeline:

Code:
stop();
showred = false;

Inside movieclip instance 'infobox' on timeline:

Code:
stop();
if (showred == false){
play();
}

the showred variable inside the 'infobox' movieclip is not detecting that I set 'showred' to false on the main timeline.

View 2 Replies

ActionScript 2.0 :: Flash8 Two Variables Name Into 1?

Feb 28, 2010

what is wrong with this syntax

_root.range+towerID = 75;

i want flash to read the variable as _root.range2 = 75. this is for each tower so _root.range2 -= 10 reduces tower 2's range by 10 (this is done on a different frame thus the _root. is needed)(towerID is calculated above)

View 1 Replies

ActionScript 2.0 :: [Flash8] Use Many Copies Of One Instance To Build The Visible Part Of Maze?

Aug 1, 2006

I am writing a maze program for school. I am using a 2d array to represent to location of walls for the maze. The background (for figuring out where a player can move) is not the problem.I am using this algorithm for places the images...

for (i = 0; i < 22; i++) {for (j = 0; j < 16; j++) {if (maze[i][j] == 1) {instanceName = "wall" add i add j; //for multiple names for each instance
duplicateMovieClip("wall", newname = "instanceName", 1);
setProperty("instanceName", _x, (25*i+13));

[code]....

What needs to be done to use many copies of one instance to build the visible part of my maze? I want to be able to have all pieces anmed "wall" instead of "wall1", "wall2", etc...which isn't working anyway.

View 5 Replies

ActionScript 2.0 :: Flash8 : Passing Variables To PHP?

Mar 3, 2009

Ive got a script lined up:

Code:
onEnterFrame = function(){
if(aktiverPublisering == "true"){
function avpubliser(){

[code]....

Ive checked if "aktiverPublisering" traces "true", and it does (it declares "true" through a button)... So, here's the weird part...i cant get a trace inside the IF statement i.e. its not working...

View 2 Replies

Flash8 :: Setting Up Variables In Different Levels?

Dec 25, 2010

Actionscript Code:
if (Key.isDown(attack2Key)&&shot2reload == 0) { for (i=1; i<2+1; i++) { shot2++; shot2reload = 30 var newname =

[code].....

View 1 Replies

ActionScript 2.0 :: Flash8 : SetInterval And Passing Variables?

Mar 12, 2009

So I have a laser game I'm working on and I have a setInterval set up for when the laser button is pressed that it shows the laser for a little bit before removing the incoming asteroid and hiding the laser. I have a four of these buttons each with different colored lasers. So I thought it would be easy to pass the movie clip in through the function, cause I've done that with regular functions. Problem is, I don't know how to do that with a setInterval function. The way I have it set up shows the lasers then crashes and just shows a blank screen. Here is a bit of my code:

Code:
function laserMultiFire(laser:MovieClip) {
if(astroid == true){
_root[laser + "L"]._visible = true;

[code]....

The btnMulti is one of the buttons, and there are three movie clips that represent the lasers, the ones I'm trying to show and hide here are mcLaserMulti, mcLaserMultiL, and mcLaserMultiR.

View 1 Replies

ActionScript 2.0 :: Flash8 Referencing MovieClips With Variables

Jun 12, 2009

I want to reference clip with some variable name because i want to change dynamicaly target clip. Example:

myMC="testClip";
myMC.my_txt="some text";//this doesn't work
//but this works
eval(myMC).my_txt="some text";

I guess eval() is not right thing to do.

View 4 Replies

ActionScript 2.0 :: Flash8 Import Variables From .txt As Number?

Dec 4, 2009

I'm trying to import some variables set up in a .txt file. However the variables that I would like to behave like numbers are not doing so.

I have a variable in the text file called "&middleimg=1" when I pull this in and say do the following:

Code:
var numvar:Number=0;
numvar = _root.myvars.middleimg+1;

I get "11" rather then "2" as the result. I tried setting up my text file as such: "&middleimg:Number=1" but get an "undefined" result. Is there anyway to get imported variables to behave like a number instead of a string?

View 2 Replies

ActionScript 2.0 :: [Flash8] Passing Variables To Child.swf?

Jan 7, 2007

how to pass variables from a parent swf to a child swf loaded into a movieclip container within the parent swf.

View 6 Replies

Action Script 3.0 :: Flash - IF Statement For Variables?

Mar 27, 2012

Im building a sample pad type instrument for a project, i have four channels for four different instruments the interface has four buttons to select the instrument, when the button is selected the image should be green but when another instrument is selected it should go to the second frame of the movie clip which is a red button to signal them instrument is off.

Line 23 i added a conditional statment for the variable associated with the channels it doesnt spit out any errors but also doesnt change the image when i click another button anyone know where im going wrong

//import flash stuff
import flash.events.MouseEvent;
import flash.display.MovieClip;

[code]....

View 2 Replies

ActionScript 2.0 :: Passing Variables Between Movies And Do Action

Apr 14, 2002

I have two movies: m1 and m2. In m1 I set a variable to variable="yes". Now, I want m2 to read the variable and do an action depended on the variable (see the example below).

This is the AS in m1:
on (release) {
docufield = "background.txt";
}
And this is the AS in m2:
this.loadVariables(docufield);

View 7 Replies

Flash :: Action Script 3 - Multiple Movie Button Clips - Change The Instance Names?

May 24, 2011

So I have a code, shown below:

[Code]...

and I want to add multiple buttons, not just this one. I figured out by trial and error that I couldn't just consecutively list the instances, I also found I couldn't just replicate the code and change the instance names. I just need to know how to go about having multiple buttons/clips.

View 2 Replies







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