ActionScript 3.0 :: Changing A Variable In A Class From A Movie Clip On The Stage
Jan 14, 2012
I'm trying to change a varialbe in a seperate class from inside a movieclip that I have on the stage in the timeline, but the variable I'm trying to change keeps coming up as null instead of what I am trying to change it to. How is this usually done?
View 6 Replies
Similar Posts:
Jul 1, 2009
In my project are pages of text with each word having a button that when pressed will display a movieclip presentation about that word (its pronounciation and spelling etc..). In the project I am working on now I have over 450 unique presentations of words to deal with. I don't want to have all of these hundreds of movie clips on the stage and tell them one at a time to stop and rewind and then have one play each time a word button is pressed. That seems to be very inefficient to me.
add movieclips to the stage using addChild(movieclipname) and remove them using removeChild(movieclipname) but there is a problem. I have hundreds of unique movieclips and I don't want to have to manage hundreds of variables containing the indivudual movieclip instancess. It is a real pain having to figure out what instance is still on the stage before i delete it.In Adobe Director all I have to do is this:
View 5 Replies
Feb 2, 2012
I want to change variables on the main stage's code from within a movie clip.
Say for example, I want to change a variable called 'chair'
In AS2, this is how I would do it:
(on the main stage)
Code:
chair = 2;
(in the movie clip)
[Code].....
But all I get is a 1119 error saying 'Access of possibly undefined property chair through a reference with static type flash.displayisplayObject.'
View 3 Replies
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
Jun 21, 2011
I have a movie clip that is executing some code. When this code is complete, I want it to change a variable that is defined on the stage (root?). I know how to get the condition part of it, but quite literally: what do I put to change a variable located on the stage from within a movie clip?
View 1 Replies
Dec 1, 2010
how to add a movie clip to the stage from the library but i'm strugling to do it when the I need to load a movie clip from the library when the name of the movie clip is held in a variable.
for(var i:Number = 0; i < 64; i++)
{
var blueIconS:blueIcon = new blueIcon();
addChild(blueIconS);
[Code]....
The above code works for adding the blueIcon but I have a variable in that loop which tells which icon to load.
sectorsMCs[jewelsIDs[i]]
The above will tell me what MC name to load but how do I load a MC from library by that variable value?
View 1 Replies
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
Nov 14, 2010
I have a movieclip in stage with instance name 'ts'.
I have a class Test.as
How should i refer to MovieClip 'ts' in stage from my Test class. Say for example I want 'ts' to gotoandstop at frame2.I tried root.ts but received a error.
View 4 Replies
Dec 17, 2010
I am making dynamic drag and drop game.I have a class for the dragged items containing the drag drop code.My problem is I can't call/access the movie clips I've already put on the stage in my hit test statement.Here is my code and target1_mc & target2_mc are the existing movie clips on the stage:
package {
import flash.display.MovieClip;
import flash.events.MouseEvent;
[code]......
View 1 Replies
Jan 6, 2009
Anybody know how to call any movie clip on stage from a class?[code]...
View 4 Replies
Nov 14, 2010
Iam new to actionscript 3.0. I have a movieclip in stage with instance name 'ts'.
I have a class Test.as How should i refer to MovieClip 'ts' in stage from my Test class. Say for example I want 'ts' to gotoandstop at frame2.I tried root.ts but received a error.
View 1 Replies
May 28, 2011
On main stage i have two objects - player (with class) and enemy (without class, but with instance name).Now i need to access enemy from within player class. I was looking for solution in google for days But i found nothing useful for me. Here's player class (it's not document class):
[Code]...
View 2 Replies
Feb 19, 2009
I have a Flash file with Movice Clips that are placed on the stage at author time. Let's say one of the clips is called "stageClipMC".[code]Tracing "stageClipMC" return "undefined". From this class, how would I access the clip on the stage? I have tried different variations on "MovieClip(root)" and "MovieClip(stage)" to no avail.
View 2 Replies
May 6, 2010
I declare a Boolean variable in my main class (Main.as file)[code]What I want is to change myboolean variable from inside a movie clip I've got on stage (when it reaches a certain frame).[code]
View 1 Replies
Sep 23, 2010
I'm trying to catch a variable content (set on the main timeline) from a movie clip added to the stage. I need to set a condition with that variable, so here's my line :
Code: Select allif (MovieClip(root).screenMode == ("full"))
But it's not working, I'm also trying to trace the variable with that command :
Code: Select alltrace(MovieClip(root)[screenMode]);
But this doesn't work too.
View 1 Replies
Jul 22, 2010
i know this may seem kind of dumb, but how does one access the document class from a child movie clip on the stage?
i have a property in my class. Just a string for testing:
Code:
public var s:String = 'can you see me';
it traces on the root time line, but it errors out if tracing it from a movieclip on the root time line.
View 1 Replies
Aug 31, 2009
I want to create another button on the main menu of my flash site. I want to take one of the existing buttons (which are set as movie clips) and modify it to show a different menu name and page link. BUT when I go into my library and "duplicate" my movie clip, change the instance name, drag it to the stage and attempt to modify it, the original changes as well. I need to keep the original the same and create a new one with the same code, frames, etc but with different static text. I keep going in circles
View 1 Replies
Sep 7, 2010
I have two document classes. One is Main.as the other is Step2.as. I want to declare a public variable in Main.as then need to give it a value from Step2.as. That value will later be used in my next Document class Step3.as How would I write the code that gives the value in my Step2.as and then how would I write the code that retrieves the value in my Step3.as?
Note I can't import my Step2/ or Step3 document class into my Main.as.
View 2 Replies
Mar 25, 2012
I'm working on a scrolling game for my multimedia class, and I want to be able to have the player choose the colour of their character. Rather than having three separate classes (which would result in having three copies of all the code), i wanted to know if I could set a hue value instead. This is what I have so far (for one of the three buttons) :
Frame 1:
Code:
var rPlayerColour:Number = 1;
addChild(blueBut);
blueBut.x = 10;
blueBut.y = 385;
[code]....
View 3 Replies
Apr 17, 2009
I created a movie clip which loops some text, i would like to populate the stage with instances of it but also with some in a different colour. When I copy frames from my clip and paste them into a new symbol(movie clip) the colour of the other instances changes as well.
View 1 Replies
Jun 9, 2009
I've received an .fla file with a design and am trying to play with it using ActionScript. I've got a symbol of a star on stage (movie clip) that I want to animate with AS. The movie clip's registration point is set to bottom right corner.
How can I change the registration point in Flash?
View 2 Replies
Apr 6, 2010
The thing should work like this: theres a movie clip in frame 10 of the timeline with two buttons inside, by clicking one of them the movie should jump to frame 15 and take the alpha of two Mc there (they are inside a different movie clip) to 0. This is what ie been trying (code on the button, btw):
on (release) {
McScene2.lettuce._alpha = 0;
McScene2.pumpkin._alpha = 0;
[code].....
View 9 Replies
Apr 16, 2008
I'm trying to get AS to change the colour of several MC's - but it's not working... I wondered if anyone could please tell me where I've gone wrong? I have 5 large MC squares - when hovered/rolled over they reveal text/colour within. That part works!
What I am trying to achieve is: When rolling over 1 of the squares (i.e. sq1) to tint the colour of the other 4 squares to grey - so that the one that is hovered over is full colour, but the other 4 are greyed out. On rollout of sq1, the other 4 grey squares return to their coloured state.
I worked through the Kirupa - Changing Colours with AS tutorial, and tried to apply that to my situation, but I still can't get it to work.
[Code]...
View 7 Replies
Oct 20, 2004
I want to load a random movie clip from the library to an empty clip on the stage called (bg_graphics). the clips in the library are called (green, blue, yellow).
View 5 Replies
Oct 6, 2008
I have a movie clip representing the state of Missouri. I'm changing its fill color based on data from an xml file. I'd like its outline color to be black. I've tried applying a glow filter, but it doesn't seem to work.
View 12 Replies
Jan 15, 2010
I am trying to create a site where the menu section will expand with sub-sections when certain buttons are clicked. I have created a main page with navigation, and a movie clip which holds the content for each page. The navigation from buttons on the main page works fine and leads to correct sections [labelled frames] within the MC. I have placed an additional button on the movie clip, it is revealed when one of the main buttons is clicked. However when this button on the MC is clicked, nothing happens.
I want to be able to move some buttons down and slot additional ones in between the existing buttons so that sub-sections are only revealed when looking at the relevant main section. I have tried to do this using the movie clip, however buttons below are not blocked and those above do not work.Here is the code I have used for the buttons - I have tried putting the sub-button code on both the scene and the MC - neither has worked.
ActionScript Code:
btn_home.onRelease = function () {
content_mc.gotoAndStop ("home");
[code].....
View 1 Replies
Mar 14, 2011
I want to go to a specific frame after a movie clip finishes, how do I do this?
View 1 Replies
May 15, 2009
how to increase the alpha of a movie clip when you rollover a button.
View 1 Replies
Mar 4, 2009
I'm working on a particle system, where each single particle is represented by a movie clip and has it's own behaviors, defined in the movie clip's code in a separate layer from the image. The particle creates local variables, such as it's gravity and color, in the first frame and then uses them to guide it's actions throughout it's lifetime (it fizzles out and dies, eventually).Frame 1 of particle_mc:
Code:
var gravity:Number = 0;
var color:Number = 2;
[code]....
View 2 Replies
Mar 24, 2009
I have a combo box called "jcolor1". I have a Movie Clip called "main". In my combobox I have set all of the color names in the labels section, and all of their hex values in the values section. I am trying to be able to change the color of the movie clip using actionsctipt.My actionscript I have (attached to the combobox)
on (change) {
myColor = new Color(main);
myColor.setRGB(jcolor1);
}
Its not working, I think the link between the Movie Clip and the combobox is not right, maybe I am not declaring the variable correctly.I want the combo box to reference the hex value I put into the data section in the component inspector and change "main" to that color.
View 2 Replies