ActionScript 3.0 :: Using Mask On Object Added To Stage
Dec 29, 2009
I want to be able to mask an object that has been added to the stage using 'addChild'. This is what I have so far, but it does not seem to work.
Code:
var skyMask:mcSkyMask = new mcSkyMask();
skyMask.x = 0;
skyMask.y = 0;
addChild(skyMask);
var cloud1:mcCloud1 = new mcCloud1();
cloud1.mask = skyMask;
cloud1.x = 7.5;
cloud1.y = 57.7;
addChild(cloud1);
Basically, the cloud is going to move across the sky then get hidden by the mask so it does not appear on the background stage.
View 2 Replies
Similar Posts:
Oct 22, 2009
I have a library swf (asset.swf), it's document class binded to Asset.as, and in the Constructor function of Asset,[code]as known to all, we cannot visit the stage attribute before the display object added to the stage.so, when my loader.swf try to load asset.swf, it throws exception and the loading come to failure is there some one tell me how to load the asset.swf? I cannot modify the asset.swf.
View 0 Replies
Sep 17, 2011
Is it possible to test if some object was added to the stage?
addChild("something") - if it was addded then......
View 4 Replies
Jun 3, 2009
Is there a way to keep an object above a child that is being added to the stage?
Say I have a frame on the stage and I want to add different children to the stage, but want those children to fall under the frame that is already on the stage?
View 3 Replies
Jan 26, 2009
I'm having accessing an object i previously added to my stage. Or at least give me some direction, or tell me if there is an easier way entirely to achieve what I'm doing.
[Code]...
View 3 Replies
May 31, 2009
I'm doing quite a complicated game with a lot of code but one thing I can't quite figure out is how to trigger a function on the main stage from a dynamically added object.I've tried using custom events, but it doesn't work and doesn't throw any errors either.Here's the code for the CustomEvent class:
Code:
package
{
import flash.events.Event;[code]....
Here's the code part in the dynamically added child(CustomEvent is imported):
Code:
this.parent.dispatchEvent(new CustomEvent(null));
and here's the main timeline part of the code:
Code:
stage.addEventListener(CustomEvent.CUSTOM, checkMoney);
//more code here
function checkMoney(e:CustomEvent)[code].....
All of the above seems to work, because it doesn't throw an error, but it doesn't trace money when the event is dispatched.Before you ask, the event IS being dispatched or at least the if method it's in is entered.Any other method to tell the stage it's time to run the function is welcome also
View 6 Replies
Aug 26, 2009
In my .fla file, I have a mask that masks one layer that has one movie clip in my .fla file. When I run the file, all symbols that are added at runtime are masked as well. Is there a way to initially mask one symbol on the stage and have all dynamically added symbols not masked? I tried setting the dynamically added symbols like so:
example.mask=null;
But this did not work.
View 3 Replies
Feb 23, 2009
I need to work in as2 and I would like to add a blank movieclip to the stage, then the user can draw in it, but but only within certain confines. So I tried to set a mask but its just not working. :-(
Code:
this.createEmptyMovieClip("draw_mc", 1);
_root.attachMovie("mask_mc", "instance1", this.getNextHighestDepth());
draw_mc.setMask(instance1);
View 0 Replies
Oct 20, 2011
Is it possible to create a display object in AS and take a screenshot of it as ByteArray or whatever without adding it to stage?
View 1 Replies
Nov 3, 2009
Is it possible to get the stage height/width on something that isn't added to the stage?
View 1 Replies
May 25, 2009
I have a as3 class that loads a number of images from a given location, they are all loaded dynamically with imageloader. However I'm trying to make a Xray screen for all of them, so when I click and drag the Xray screen around, it will reveal the images loaded under each picture, creating a sort of Xray effect.I tried using masks, however since the images are all loaded dynamically they are its own class with its own layers, I'm trying to make a mask that will work for all of them (I load 2 picture for each image, example car.jpg and carb.jpg, b.jpg being the inside image).so I have my stage ---> [MyXray Box, and my Images
View 4 Replies
May 3, 2010
I have a class called shapeC that only creates a rectangle and then addChild(rectangle);. That class is instantiated on the main timeline. Currently, the only way you can see that rectangle is to add the instantiated class to the stage via addChild(shapeC);. My question is, is there a way that the shapeC class can add the rectangle to the root stage without requireing the instantiated class to be added to the stage?
View 4 Replies
May 10, 2009
I'm trying to access a movie clip on stage but my event listener doesn't seem to respond to the added to stage event. I've checked the code and it seems to be correct but just doesn't work. the movieclip i'm trying to trace is sb.
[Code]...
View 5 Replies
Jan 21, 2010
've been trying to figure out how to refer to the stage from a Sprite before it is added to the stage.
I'm working on a small program in which I plan to use external classes for each "window" that comes up. I've made the window classes extensions of Sprite. I'd like to make this window add itself to the stage when its constructor is called, and then just remove it from the window class when I'm finished with it. Is this a good idea? I'll post some of my code to show you what I mean.
This code doesn't work. I get the error "type was not found or was not a compile-time constant: Stage"
From my window class:
ActionScript Code:
public class PlayerSelectionWindow extends Sprite{
var stg:Stage;
[Code]....
View 2 Replies
May 13, 2010
I'm looking for ways to use movieclips that I've added on the stage in ActionScript. I can't just adress the movieclip by its name because apparently AS3 won't recognize a movieclip name if you haven't created it within the script.
The way I'm going about it now is to check the instance names of every child on the stage (with a for-loop from 0 to numChildren) and if the name starts with a certain text, I create a movieclip in ActionScript like so[code]...
View 9 Replies
Nov 24, 2010
Is there a way to check if parent object is added to stage inside a class, before child is added to stage. Something like this:
PHP Code:
public class Main extends MovieClip public function Main() var test:MyClass = new MyClass();addChild(test);}}public class MyClass e
[code].....
View 2 Replies
Jul 21, 2010
OK, I'm new to AS3, and this is the biggest thing I've tried to do. I'm simply at a loss for the right path to take to accomplish what I want to do. In a nutshell, here's what the end result will look like: The stage will contain a large (on X size) movieclip with a scrollbar (not important to this discussion). This movieclip is created using AS3. The large movieclip is populated with many smaller movieclips created from a template in the library. This template contains some dynamic text fields (let's call them text1_MC and text2_MC). The dynamic text for each smaller movieclip is provided from an XML file containing the text1 and text 2 data.
[Code]...
View 5 Replies
Apr 22, 2011
I have this slight problem with the event ADDED_TO_STAGE. The listener is launched twice so I figured the event is dispatched twice.
Here is my .fla code :
var section:SectionStructure = new SectionStructure("xml/list.xml")
addChild(section)
The Section Structure code :
[...]
mainHolder = new MovieClip;
mainHolder.addEventListener(Event.ADDED_TO_STAGE, displayObjects);
addChild(mainHolder);
} private function displayObjects(pEvent:Event):void {
mainHolder.addChild(sectionMenu);
}
[Code] .....
The output panel displays "test A" once and "test B" twice. I fixed the problem by adding this little line on the opening of the function createButtons :
menuHolder.removeEventListener(Event.ADDED_TO_STAGE, createButtons);
I read here and there that the event ADDED_TO_STAGE is dispatched when children are added but my problem remains even when I comment everything below this line :
trace("test B");
View 2 Replies
Feb 24, 2012
I'd like to make a counter in AS3.0, in a document class file, for a Flash project, whereby the counter counts the number of movie clips added to the stage.The current document class is set up with a number of timers, an "ouber"timer, which activates three additional timers every 500000 milisecs, while the additional timers add different movie clips to the stage, each adds a different amount and at a different rate.And, i'd like to add some code to this AS file, to tell flash to count how many mcies and if 20 is the sum of the mcies on the stage, stop the timers and remove the mcies.
View 21 Replies
Jun 15, 2011
I'm going to start by saying that i am very new to flash and the concept of Stage is still very new to me.
I have the following problem: at a given time i have:
var foo:MyClass() = new Class();
stage.addChild(foo);
...
foo = new myClass();
stage.addChild(object);
so now i have two or more foo objects on stage. my variable is for one foo, and i need to remove them all from the stage.
View 4 Replies
Nov 30, 2011
I'm trying to get a simple AS3 app up and running, and for some reason, I cannot get a sprite to show. At this point, all I want to do is get a red sprite to fill the stage.
public class Main extends Sprite
{
public function Main():void
[code].....
View 2 Replies
Jan 22, 2009
Is it possible to check, using Javascript and without altering the ActionScript code at all, if a child has been added to the stage? I have in mind something like being able to call GetChildByName in Javascript, and if the child exists, call another javascript function.
View 0 Replies
Jan 18, 2011
I don't work with the Flash IDE very much, and I'm running into a problem with the unreliable creation order of components instantiated by the Flash IDE "magic".
Basically, I have to call a function on a loaded module. This function should only be called after all the module's children have been added to the stage.[code]...
View 3 Replies
Sep 9, 2009
I have a movieclip which is added to the stage every second at a random place.i want all instances of this movieclip to move to the postion x=100px and y=200px on the stage at a rate of 5px.im not sure how to code this, i would like the code to be in as3 if possile as i do not know as2.
View 2 Replies
Nov 14, 2009
I am using the drawRect() method. The only way I know how to colour something is by using beginFill and endFill(). But if it's already drawn then how can I change it? It
View 2 Replies
May 31, 2009
The following code ist a very simple animation. I added an object to the stage by dragging it from the library. Then I applied code generated by "Copy motion as AS 3" and the animation works fine.However, if i add another object by instating it in AS, add it to the stage by stage.addChild(...), and try to animate it by adding it as a target to the AnimatorFactory nothing happens.(Probably I made a simple newbi mistake.)[code]...
View 6 Replies
Feb 19, 2010
I am trying to trace stage.name in child view after addChild:
import flash.events.Event;
import flash.text.TextField;
public class TestView extends TextField {
[code].....
View 3 Replies
Jun 6, 2011
I am trying to add children to a dynamically added swf file, using AS3, before I add it to stage
Here is the code I have thus far,
AS3:
var mLoader:Loader = new Loader();
var mRequest:URLRequest = new URLRequest(glo.bal.base_url+"videos/vid_1.swf");
mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler_one);
mLoader.load(mRequest);
[Code].....
Inside the vid_1 swf there is a movie clip called box_one, I would like to append a image to box_one, and only have the swf added to stage after the image file has been added to box_one.
View 1 Replies
Nov 22, 2011
I am currently having problems referencing a MovieClip child which I add to the Stage from the Document Class. Basically when the MovieClip child is added to the Stage from the Document Class, I want a certain MovieClip already on the Stage to reference it once it is on the Stage.
Also, if it is possible, I don't want the MovieClip referencing the child being added to the Stage to have parameters linking it with the Document Class, because I plan on nesting this MovieClip within another MovieClip later on in the future.
Here is the code for the MovieClip class which is referencing the child once it is added to the Stage:
package com.gameEngine.assetHolders
{
import com.gameEngine.documentClass.*;
import com.gameEngine.assetHolders.*;
[Code].....
View 2 Replies
Mar 29, 2012
[code]This is called as part of the die() function I've created for an enemy in the small game I'm making.The idea being that when the enemy dies, it attaches a movieclip of an XP orb.And it does this perfectly well.The issue is in the last bit of the code.I'm attempting to call the setType() function within the class that the XP orb is in.However, it isn't setting the type to 100.
View 3 Replies