Actionscript 3 :: Changing Root Variables From Withing A Function?
Apr 2, 2012
I'm new to Actionscript 3, just started working with it after years of working with AS2,
What I'm trying to do at the moment is to change a variable that's located in the root from a function,
Something like this:
var myVariable:String = "String test";
function testFunction():void
{
myVariable = "new String";
[Code]...
View 2 Replies
Similar Posts:
Oct 9, 2009
I have a piece I'm working on that loads some copy to the front page. Then when you mouse over the navigation it plays the 2nd half of the MC that makes the copy fade. One of the navigation buttons works to bring the copy to fade back in by playing the first half of the MC.I'm declaring a boolean variable "intro" and setting it to true on load because the copy is visible.Then within my MC at the end (when the copy is done fading out) I set "intro" to false.Then if the user mouses over the nav it runs an "if" and if the intro is true it fades it out, and if its not it shouldn't do anything (stay invisible).The problem is it keeps playing the MC - so you mouse over the nav and it fades out, then you mouse over the nav again and it fades back in, then you mouse over the nav and it fades out again.
View 2 Replies
Jan 11, 2009
I have a setup where I am loading 3 XML nodes from a database. It lists 2 of the 3 onscreen - an item and an item price. I am trying to have it work so that when an item is clicked that the item_id (loaded in the xml, but not displayed on screen) jumps to a frame with a dynamic text box and have it list ONLY the item clicked. So far, I made it jump to the frame with the text box and it lists the entire list, not just the item.I really want it so that you click an item then it stores the item_id in the background (then a mc plays saying "item added to cart"). I want the ability to store more than one item_id from different categories and when a user presses the 'view cart' button, that the text box loads those items.
I think I am close, but I got to thinking if it would be better to have some way of doing a php session or something similar to store the item_id and then when the 'view_cart' button is pressed, the text box lists the item_id and the item_name and item_price for each item in the session. I wasn't sure if Flash can talk to php like that. Can it?Is this the right way to approach what I am trying to do? I'd like to use one 'holder text box' if possible.
View 1 Replies
Jul 15, 2010
I have small issue in as3. I am load "mainmenu.swf" file into "main.swf". through loader class. so now "main.swf" is parent "mainmenu.swf" file children how can call "main.swf " variable & function from "mainmenu.swf" .
View 2 Replies
Aug 1, 2010
I am trying to use parts of a template for a flash site in my own site.On one of my sites pages I am trying to use a set of buttons and pages. My problem is that the flash buttons & pages from the template are set to the ROOT of the template, but I am putting them on 1 or 2 levels difference on my site.Here is the code for the `release` of the button:
on (release) {
if (_root.link<>num and _root.animation == 0) {
_root.animation = 0;
[code].....
View 2 Replies
Jan 10, 2011
can I call directly root variable from external loaded swf files. with conditions from external loaded swf file. like parent.parent!=null conditions.
View 1 Replies
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
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
Nov 13, 2010
Anyways, I've been trying to figure this out for quite some time.Let's say I have my document class. I'm guessing the document class can correspond to the first thing that gets run? (such as the "main" function in most C++/low level languages).If I set a variable in it:var myNumber:Number = 10;how would Iaccess: "myNumber" from other objects in my stage?Like a movieclip on my stage for example.If I go inside that movieclip into the movieclip's first frame, how would I say:trace(TheDocumentClass.myNumber);Another similar question is, what about the actual stage frame?If I click on frame 1 of my stage, set a variable:var aNumber:Number = 5;how would I access it from other objects?In my movieclip's first frame, what would I put?trace(root.aNumber); ?trace(stage.aNumber); ?
View 9 Replies
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
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
Feb 1, 2010
In AS3, how can you access a relative variable within a specific movieclip on the stage?I have a test file that changes the variable "myVar" in one of the displayobject movieclips drawn on the stage. I want to simply trace the current value of this displayobject's myVar for additional purposes.In AS2, you would achieve this by calling the instance name and then the variable contained within.Assuming 3 movieclips existed on the stage named Container1¯, Container2¯ and Cotainer3¯trace(_root.myContainer2.myVar);// returns Hello which is value of variable "myVar" within the movieclip instance named "Container2".How would you do this in AS3?[code]
View 6 Replies
Dec 23, 2009
This is kinda complicated, and I'm still trying to wrap my head around the whole concept of OOP. So right now I am building a XML Gallery, and in the FLA (Root) I've added the thumbnails. Everytime the thumbnails been clicked, it will bring up the "Detail" movieclip, which also is created in the root. And inside the Detail movieclip, I am creating a few buttons with an external class. My question is how can I call a function in the FLA (Root) when I click on the buttons inside the Detail movieclip? Note it seems I've successfully import my external class in both the root and the Detail movieclip.
View 7 Replies
Apr 27, 2010
I've got a movieclip on the root of the stage called "bgImg", in that clip I've made this function:
Actionscript Code:[code]..........When you click a button in the nav it loads a movieclip to the stage from the library, inside this movieclip I have a row of buttons,when you click one of these I want to call the function in the movieclip on the root (ie. the function inside "bgImg" .
View 3 Replies
Dec 8, 2011
I want to call a function that is inside the root timeline of Flash from an external class.
This code is from the class:
private function loadImage(event:Event):void
{
addToContainer()
}
[Code].....
View 3 Replies
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
Sep 15, 2004
I've been trying to put together a function that I can reference through various symbols in a movie to fade their alpha properties. So far all I've found is code that forces me to reference the specific symbol in the function, however I have to do this to a BUNCH of symbols over different periods within my timeline, part of which will be triggered by a loaded movie. Any function that will fade up or down that can sit on the _root. and be referenced by any symbol whenever needed?
View 10 Replies
Jan 1, 2006
i've got this mc component i've created and reuse on some sites i've made. It's a real simple shoutbox that grabs info from a database using a php script.What i'd like to do is have this component refresh every 200 frames, which means, grab most current msgs and post them in the database.so for example, i have a movieclip called MC1. there's a function in MC1 that goes like: grabdata = function() {}; this basically calls the php scripts, loads the info, and so on.i wanna call this function from the root or even a parent MC.I have considered using prototypes or a class, but i dont think it's really necessary for something that seems basic enough.
View 1 Replies
Feb 23, 2005
How to write a function for cube root?
View 2 Replies
Feb 15, 2009
So I am trying to save a screenshot using JPGEncoder while in full screen mode. The document size is 100x700, and the stage is aligned to bottom. I've been able to capture the right size, however it always seems to capturing the image from the wrong start x,y position. There is some elements out of bound but I am just trying to clip them.
Here was last attempt :
Code:
stage.quality=StageQuality.HIGH;
stage.align=StageAlign.BOTTOM;
StageScaleMode.NO_SCALE;
[Code]....
View 2 Replies
Jun 29, 2010
This is probably super simple, but for me.. not!I am loading external swf into my main swf.How do I access a movieclip within a child. This is my code:
function loadFolio (event:MouseEvent) :void{
var request:URLRequest = new URLRequest("folio.swf");
contentLoad.load(request);
[code]......
View 6 Replies
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
Jul 18, 2010
I'm switching from as2 to as3 and everything was going swimmingly with my new site until i tried to use a _root call to a function on the main timeline by a loaded movieClip that is loaded nested into 2 other movieclips. the movieClip needs to tell the _root when it's done playing so the root knows to load the next one in line through a php call. Everything works except for the _root call. In as3 there's no such thing as root anymore so I figured no big deal, i'll just find out what the new thing is and holy crap wtf! I can't figure this out!! I've read from doing stuff like custom eventLisnters (which i am trying now) and casting the root as a movieClip and then I read this whole crazy tutorial on building an event structure and the proper MVC way of coding and blah blah blah ALL I WANT TO DO is tell the _root that the loaded MC has reached the end of its timeline. Basically if it were as2 i could just go _root.loadNext(); and it would work.how to make a loaded MC talk to the _root timeline and call a funciton from there?
View 19 Replies
Aug 4, 2011
In fact, when i publish my FLA with player 9, there is no prob. When i publish with selecting player 10, there is this problem.
I paste my code :
var leng:int = MovieClip(root).program.websiteXML.pages.titlePage.length();
trace ("leng"+leng);
setInterval(function () : void {
[Code]....
View 11 Replies
May 13, 2011
Does anyone know the best method to trigger a function in the root from a dynamically loaded movieclip (loaded using addchild) using AS3, I understand targeting root is not the best way to do this?
View 2 Replies
Sep 26, 2005
I have created a function on the root timeline, to be called at a certain point (when the character is on a certain frame and so is the certain item, he loses a life)the lives_mc advances frame by frame to show lives being lost.heres the function
Code:
function loseLife(){
if(_root.lives_mc._currentframe=1){
_root.lives_mc._currentframe=1[code].....
View 7 Replies
Jun 6, 2010
So I have this gallery which I downloaded, it is AS 2.0.
It works well as is on the main(Scene 1) page, except that when I create a new MovieClip, and paste all the original frames w/actions into it, it begins to flicker and none function.
Here are the codes:
Perhaps there is something that I need to change?
Here is the actual gallery with my problem in it:
[URL]
First Frame:
------------------------------------------
stop();
Stage.scaleMode = "noScale";
Stage.align = "TL";
[Code].....
View 2 Replies
Jul 27, 2010
What I have is a SWF file that calls out to 3 different SWF files via the following code:
// Array of external clips to use. Variable index refers to next clip to be displayed.var clips:Array = ["page1.swf", "page2.swf", "page3.swf"];var index:int = 0;
// Stuff to load swf filesvar thisLoader:Loader = new Loader();
[code].......
View 11 Replies
May 14, 2007
I have an as3 component I made in CS3 and need to access the Component Definitions. Defining component parameters using the Inspectable Tag metod does not return success.
View 1 Replies
Dec 9, 2009
I borrowed a code to give my stage a falling snow effect, and I added on/off buttons. I'm sure there's another way around what I'm trying to do but I'm curious about going about this way. the variable in the code contains:var snowflakesCnt:Number = 180;I added EventListeners for the buttons but don' know the way about changing the variable to 0 and180 upon mouse click.
View 4 Replies