ActionScript 2.0 :: Scope - _root In Gallery.swf Doesn't Work Within Index.swf?
Oct 27, 2006
This is a situation: i have a index.swf in which i have holder movieclip in which i load gallery.swf (where i load pictures in it's holder mc). The thing is i used _root in gallery.swf so when i publish it separately it works, but it doesn't work within index.swf. I suppose there is a scope problem where _root adresses _root timeline of index.swf instead of gallery.swf when index.swf is published and gallery.swf loaded inside. I tried to solve this by putting: Code: this._lockroot=true; inside of gallery.swf but now my Flash 8 player just freezes when index.swf is published and gallery.swf loaded into it but i have no idea why? What would be other solution for this problem?
View 3 Replies
Similar Posts:
Dec 7, 2005
I feel like I'm missing something obvious here, but I'm unable to add a textfield to any movieclip that I've attached to _root. Here's a generic example:
_root.attachMovie("generic_mc", "clip1", this.getNextHighestDepth());
rect1._x = 200;
rect1._y = 200;
[code].....
View 3 Replies
Oct 16, 2010
what i need to do is create an instance of an input text box when a button or key is pressed. However as of yet i've been unable to no matter what i try, for some reasons i guess it's properties don't carry over the same way a static object does.
View 1 Replies
Jul 19, 2006
i was doing tutorial from the page [URL]
my problem is that I have in main timeline movie1, who have movie2 in side, and movie2 have movie3 inside it. in movie3 is buttons like in the tutorial. so i try to replace _root with _level2 but doesn't work on mouse button AS.
[Code]....
View 1 Replies
Oct 12, 2009
I'm working on my website which is a portfolio site, to showcase my work I have a basic XML image gallery which does 1 of 3 things loads a large photo, goes to a frame with a video player, or goes to another frame with a gallery of web design or flash work i've done. when a thumb is clicked i trace the indexOf(event.target) of the thumbnail clicked (all thumbnails are placed into an array).
the problem is that for some reason randomly the index will not be found and return -1, but then other times it will find the correct index and work properly. i don't know what the inconstancy is thats causing this to occur
View 0 Replies
Jan 12, 2010
I create one image gallery. But it doesn't work properly.That means i want to play like slide show with using setInterval method.Once first image loaded and second image if load i want some time to display for ex:2min waiting. After that load third image. this only i want to play this sequence.[code]
View 1 Replies
Jan 29, 2010
know if the index effect the scope of an object because I am creating a game and for some reason, I get an error like below
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at com.objects::Torret/updateObject()
at com.objects::EngineApi/loop()
[Code].....
updateObject is the loop for all my objects. I have one centralized loop and in that loop it calls on an array of objects that have been placed on the stage. all of them containing the method updateObject. to update the status of the object. addGameChild() is a encapsulated addChild() , that not only adds the object to the stage, but places it in a array so it's updateObject() method can be called on. it is also used to make it easier for garbage collection.
View 1 Replies
Aug 4, 2009
I have a simple object defined by an object literal, and have a couple functions assigned to this object. Inside the functions, I try to access global variables, and it only gets undefined. The Flex debugger tells me the variables are just right up the scope tree.Yes, I know I can access Thing by using 'this', that doesn't solve my scope issue though.Project Flex Compiler Settings: Flex SDK 3.4, Require Flash Player 10.x.Example:
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="Thing.bling();">
<mx:Script>
<![CDATA[
[code].....
View 2 Replies
Feb 26, 2006
I have this actionscript with a MC._root.containerMC.loadMovie(loadswf+".swf");however, it will online work if i put this action on the _root timeline
View 2 Replies
Feb 17, 2008
i am trying to add extra images to the photo gallery attached. I would have thought it is easy and it seems so. I add an extra image to the gallery. I publish it. The html file shows the extra image in the gallery but the swf doesnt. driving me crazy, cant work it out?
View 14 Replies
May 5, 2011
I've tried removing or using this and code dose not work.
[Code]....
View 2 Replies
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
Apr 23, 2010
I'm having some weirdness with a project that I'm doing in IE. Long story short, I've got a basic shell that loads in external SWFs based on user feedback. Once those SWFs get loaded in, they execute functions from the shell (_root) movie. It works great in Firefox, but immediately breaks (no way) in IE. The movie gets loaded in, but none of the functions run.
I suspect it has something to do with security, because, for a variety of reasons, I have to load the SWFs from their absolute location, rather than their relative location. When I test it locally (but loading the movies from their absolute, live location), everything still works, but I get that damn security warning that reads like this:
[Code]....
View 2 Replies
Jul 1, 2004
I add this actionscript code on the first frame. Variables are loaded but. The question is below the code.
[Code]...
View 2 Replies
Apr 2, 2010
I have a Debug class I've written, and I'd like to include a static trace() method in there, unfortunately I have no idea how to then access global / top level trace as effectively I've blocked it with the local static scope.[code]
View 4 Replies
Oct 26, 2009
ActionScript 2.0 :: addItem({Windows that are currently open: _root.myinfo}) won't work?
View 2 Replies
Oct 16, 2009
I decided to try to use setInterval for myanimation, which is just a mouse trail.However, I'm trying to get teh mouse trail to be a dynamic mask.In my previous swf this was achieved by using a holder mc with the animation inside and then using this as the mask. But this time I just canpt seem to hit on the right way to get it to work. The code I am using for the mouse trail is:
Code:
var i:Number = 0;
var myInt:Number;
var t:MovieClip;[code].....
in the function, but now the trail doesn't resize and the mask still doesn't work.
View 1 Replies
Oct 18, 2005
I have a main swf named index.swf with only 1 frame, on that frame I have actionscript that creates an empty movieclip loads an external swf and centers it depending on the user's browser size.My problem is if I load an swf that doesn't take the whole 1020x610 of the index.swf it won't be centered.[code]
View 7 Replies
Jan 29, 2009
-I have an object with a function:
var AppMethod : Object = {
testFunction : function() { trace(this) }
}
-In the constructor of a separate class named "Vec", I call testFunction in the AppMethod object by:
NameSpace.AppMethod['testFunction']();
-After I create an instance of Vec, flash traces the AppMethod object. I thought it would trace the Vec object? At least that how it worked in javascript. The keyword "this" doesn't change scope in Actionscript 3? Is there a keyword that will trace the Vec object instead of the AppMethod object?
View 9 Replies
Jan 14, 2010
In the code below i want to change the _root.broj and _root.logo variables inside the function which returns values from .php file. Inside the function everything works fine and all values are correct but when i trace var broj outside the function it's still 0.
var result_lv:LoadVars = new LoadVars();
var send_lv:LoadVars = new LoadVars();
var broj:Number=0;
var logo = new Array();
[Code].....
View 1 Replies
Feb 27, 2003
im lookin to make this so that the points taken from the _root.cargo are multipled by 10 and added to _root.totalscore
[Code]...
View 2 Replies
Apr 21, 2010
I have a button object that I need to scale to align with the variable width of an array of images.However, when I set the width in code, the button does not actually become that width. Tracing out the width gives me the correct value, but on screen.. it's off.
I've proved it to myself by scaling the same button object manually in the properties pane and visually comparing. Both of the buttons below have a width of 410.
Code:
navigatorDown_btn.width = 410;
navigatorDown_btn.x = (stage.stageWidth/2)-(navigatorDown_btn.width/2);
trace(navigatorDown_btn.width); // output: 410
View 4 Replies
Jan 30, 2012
im trying to make a simple BMI (Body Mass Index) Calculator but it doesn't seem to be working
my code is:
on (release) { BMI_SUM = (Number(WEIGHT_INPUT.text) / Number(HEIGHT_INPUT.text * HEIGHT_INPUT.text)); _root.BMI_FINAL.text = BMI_SUM; }
the BMI_FINAL.text box always displays NaN, and when traced it says Undefined and the code looks sound but i cant get it to work.
View 6 Replies
Sep 14, 2004
if a condition is true, then:_root.(MC with instance name that is the value of "_root.eelmine").nextFrame(); is this correct?_root._root[eelmine].nextFrame();
View 16 Replies
Nov 9, 2007
For some reason i'm having problems swapping scenes in my flash movie. At first i put the action in a "actions" named layer and a link to a button. So basicly when scene1 loads the frame 1 action is "stop ();". The viewer clicks on button1 which has a code of;
[Code]...
View 1 Replies
Oct 3, 2011
I am writing code to order the tab on multiple tags like "img","Panel","LinkButton",...and pie charts. when I run my flash program, the tab indexing does not work at all. it just works on pie chart and "link button" tags, not on "img","Panel","Group" tags. I also have tried to "enable tab" on those fields , but no help.on the other hand when I disable tab on the pie chart,and link button, still the tab is enabled.
View 2 Replies
Jan 24, 2011
I have a strange problem: When I type the absolute URL to my SWF file it works fine; however, only the background image appears when the SWF is embedded in the home page.
View 3 Replies
Jan 26, 2009
I just recently began migrating from AS2 to AS3, and I have of course realized that I can no longer move the "_root" by changing the _x and _y positions of the _root (which no longer exists in AS3). How can I do this in AS3 (specifying _x, _y, _z possibly of the "_root")?
View 2 Replies
Dec 16, 2010
I have one folder called "Gallery" consists of the following 4 Files/Folder. It works fine on my Virtual Machine. I copied the "Gallery" folder to my PC and tried. but it doesn't show any images on my PC. It doesn't throw any error either. It throws an error if the location of images is not correct. What could be the problem? I tried a lot but fail to understand.
Folder "Gallery" contains the following:
1) Images (Folder)
2) Gallery.swf
3) GalleryMain.as
4) Gallery.xml
View 2 Replies
Jun 23, 2004
I followed someone's tutorial on CWD.dk and made this image gallery scroller. I have attached the file downloaded from the website. Basically, when you click the buttons, it will scroll the images. However, it doesn't ease in or out, and I would like to know how to make it ease in and out. I've been trying for the last 2 hours with no success. Anyway, the file is too large to attach, so here is the direct link. [URL]
View 5 Replies