ActionScript 3.0 :: KeepCreating Function Creates A Random Shape On The Stage?

Jul 30, 2009

How would I make it if I wanted a function (that happens to run on event MouseEvent. MOUSE_DOWN)to run while mouse is down, not just once. For example, I have this code:

ActionScript Code:
stage.addEventListener(MouseEvent.MOUSE_DOWN, keepCreating);

My keepCreating function creates a random shape on the stage. But since it runs once during mouse_down, only one shape is created until you activate mouse_down again (by lifting the mouse button and pressing down again).

What I want it to do is keep creating shapes over and over again, instead of creating one shape per mouse_down.

View 6 Replies


Similar Posts:


ActionScript 3.0 :: Create Function That Creates Random Number Shuffle

Dec 4, 2009

I have just start to learning AS3.I have create a function that creates a random number shuffle.I have another array that holds linkages from the library and I'm using addchild to attach clip from the number generated.when a new number is generated how can i attach that amount of movieclips from the library to stage?[code]

View 2 Replies

ActionScript 2.0 :: Pixel Effect - Position Shape At Random Place On Stage

Apr 13, 2006

I am trying to make a so called pixel effect in witch I want to make a shape only from pixels that are positioned in some random place on the stage. And all these pixels move to a certain point and create that shape. I've been looking into BitmapData Class but I don't now if that is the best way to do it.

View 2 Replies

ActionScript 3.0 :: Shape Covering JPG Creates Black Blocks

Mar 22, 2011

The SWF in question is on this page: [URL]

The problem arises in the reflection. It's a duplicate MC of the main text. Once the faces spin to show letters, green boxes of text appear on top of the letters. In the reflection, once these boxes disappear the letters that were behind them do too.

View 1 Replies

ActionScript 3.0 :: Deleting What Variable Creates On Stage

Jun 11, 2011

I'm having problems with deleting what a variable creates on stage!I have a random image loader as seen below.This creates a random image from the list I give it (only 4 in this example) and puts that picture on the stage.[code]Depending on the image the right or left door is the correct door (tr is the left doors name).The code below works fine, it even inserts the _whatPicture randomly again but the problem is the new picture overlaps the old picture, I can't figure out what to type so it will delete / remove the first _image, so that the new image is the only one there.[code]

View 4 Replies

ActionScript 3.0 :: Function That Creates Custom Displayobjects?

Mar 18, 2011

ActionScript Code:
private function drawMap(tile1:DisplayObject, tile2:DisplayObject):void
{
var _tile1 = tile1;

[Code].....

The idea behind this is to store custom sprites in an array and then feed the array to the drawMap function, which would use the sprites from the array to draw a map.

View 1 Replies

ActionScript 2.0 :: Create A Function That Creates An Array Of Arrays?

Mar 28, 2009

I have to create a function that creates an array of arrays. I have to be able to add elements to the array, delete elements and extract elements? the elements will be arrays. How to I do that, or it is possible?

View 8 Replies

ActionScript 3.0 :: Build Function That Creates A 2D Array Similar?

Feb 9, 2011

I keep confusing myself :S I've been staring at this screen too long.I'm trying to build function that creates a 2D array similar to this one:

Code:
private var test:Array = new Array
(

[code].....

View 2 Replies

Actionscript 3.0 :: Event Listeners - Creates A Bunch Of Movieclips And Sets Them On The Stage?

Feb 20, 2009

I have a loop which creates a bunch of movieclips and sets them on the stage.As I create each one I attatch an eventListener to it.My problem is that when the eventListener fires, the function it calls always works on the first mc added to the stage, not the one that fired the listener.How do I fix this?Here's a bit of the code:

Code: Select allfor (var i:int=0;i<numOfItems;i++) {
item = new Item();
//etc etc[code].....

View 1 Replies

ActionScript 2.0 :: Make A Random Shape?

Jan 17, 2004

I am trying to make a random shape, I want each different point to draw a line to every other point, which I know this won't do yet even if it worked the way that I wanted. But, at the moment, my code does nothing. It is supposed to draw a line from from the first value in the point array to the second value in it to the third value in it.

Here's my code:

Code:
onLoad = function() {
drawIt(10);
}
function drawIt(numberOfPoints) {

[code]...

View 13 Replies

ActionScript 3.0 :: Flash - Random Shape Change When Clicking?

May 19, 2010

I want to do a flash application follow the imape file I attached here, does anyone know how to change a shape to random shape when clicking using as3?

View 1 Replies

AS3 :: Adding A Shape To Stage

Jun 21, 2009

I'm trying to add a rectangle to the stage.I've imported the following.[code]

View 1 Replies

ActionScript 3.0 :: Add Shape To Stage Using It?

Jun 21, 2009

I'm trying to add a rectangle to the stage.

I've imported the following.[code]...

View 2 Replies

ActionScript 3.0 :: User Can Paint Whatever Shape Onto Stage

Apr 26, 2009

I'm trying to make a "paint on" effect so that when the user clicks down, they can paint whatever shape onto the stage. I really need it to look like a "spray paint" effect, and I'm having a hard time animating this.

View 4 Replies

ActionScript 1/2 :: Donut Shape Draw Api Found But Only Works On Stage?

Jan 7, 2010

I found a nice script for drawing a donut shape. I don't know why it only works with using 'this' or ' _root' . You should be able to apply this to a movieclip?Or am i missing something?[code]

View 3 Replies

ActionScript 3.0 :: How To Get Shape (Black Rectangle) To Cover Full Stage

Aug 26, 2009

I need to have a shape (black rectangle) that will cover the stage. It should resize with the stage when needed. I'm trying it with the following code, but when it's resizing, there is a clipping effect that is visible and it is not fluid. How can I prevent this?
Code:
Select all
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
stage.addEventListener(Event.RESIZE, resizeHandler);
var blinder:Shape = new Shape();
[Code] ......

View 4 Replies

ActionScript 3.0 :: Change Mouse Shape And Call Javascript Function?

Jan 8, 2011

I have a sprite,like follows:

var _sprite:Sprite=new Sprite();..._sprite.addEventListener(MouseEvent.CLICK,onClick);addChild(_sprite);private function onClick(e:MouseEvent):void{  //how to make mouse shape into handCursor here and

[code]......

View 1 Replies

Actionscript 3.0 :: When The 3-d Function Gets Added It Starts Tween All Weirdly Shape?

Jul 21, 2009

I have a question regarding TweenMax and the way it tweens MovieClips. Here is what I have.

1. I have a rectangle movie clip on stage (width:20, height:20). When you click it, it expands (to width:650, height:350) and gets a 3-d function attached so it reacts to mouseXY position (like Lees 3-d photo tutorial). This part works fine.

2. I click it again and it retracts to its original small size (width:20, height:20). This also seems to work fine.

Problem: When I click it again it expands (to width:650, height:350), but when the 3-d function gets added it starts tween all weirdly shape and not the way it is intended.Here is my class

Code: Select allpackage
{
import flash.display.Sprite;[code].........

View 2 Replies

ActionScript 3.0 :: Drag And Drop Function - Bring Shape Back To Origin?

Jun 24, 2010

I have a relatively simple drag and drop function. When the target is hit, the shape stays on it. Otherwise, it goes back to its original place.

ActionScript Code:
square_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
square_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
function pickUp(event:MouseEvent):void {
event.target.startDrag(true);
event.target.parent.addChild(event.target);
[Code] .....

The slide function is supposed to bring the shape back to its origin (passx and passy are the coordinates), through an Enterframe event. It works fine, but it only works once. And if I drop the shape, if I pick it up again, it's impossible to "cancel" this action (which means the shape keeps going back to the origin). I tried removeEventListener but no luck.

View 5 Replies

Flash :: Shape When Hit With Inside Of Stage - Rotate And Continue Move In True Angle Forever

Jun 17, 2011

i want simulate Billiard ball in my project. but my code does not work good. when start with (for example) 34 degree , when hit with wall(stage in this example) return with true degree. in flash , as3

[Code]....

View 2 Replies

ActionScript 3.0 :: New Shape - 1046: Type Was Not Found Or Was Not A Compile-time Constant: Shape

Nov 30, 2009

ActionScript Code:
package {
import flash.display.MovieClip;
public class Base extends MovieClip {
public var baseHP:int = 50;
var newRect:Shape = new Shape();

1046: Type was not found or was not a compile-time constant: Shape. 1180: Call to a possibly undefined method Shape. What does it mean by "undefined method"? I am somewhat of a newby, so sorry if there are any stupid errors

View 1 Replies

Professional :: Adding Shape Hints Makes Shape Disappear In Between Frames

Jun 22, 2010

Whenever I add shape hints to a shape tween the shape disappears in the between frames. I am using CS5 on Vista. I using files from [URL]to practice.

View 2 Replies

ActionScript 3.0 :: Draw The Shape Of A Existing Movieclip Which Is Irregular Shape?

Oct 11, 2011

need to draw the shape of a existing movieclip which is irregular shape.

View 2 Replies

ActionScript 3.0 :: Draw The Shape Of A Existing Movieclip Which Is Irregular Shape

Oct 11, 2011

need to draw the shape of a existing movieclip which is irregular shape.

View 1 Replies

ActionScript 1/2 :: Shape Colliding Another Shape, Not The Rectangleof A Movieclip?

Jul 9, 2009

Id like to know if there is a way to do a shape hitTest.Not as the normal hitTest would do, but shape colliding another shape, not the rectangleof a movieclip.It can be in a movieclip.

View 23 Replies

ActionScript 2.0 :: Get Random Movement On A MC On Stage?

Mar 27, 2009

I've been trying to simply get random movement on a MC on my stage.

Most of the tutorials I come across deliver jittery motion, not smooth eased motion.

Also, I'm trying this script found here: [URL]

The random motion looks great! .... but I can't stop the MC from moving to the top left of my stage. The script isn't setup to restrict the motion within a given area on the stage. I tried modifying it, got nowhere!

View 1 Replies

Actionscript 3.0 :: Random MovieClips On Stage?

Aug 11, 2009

I have 4 MovieClips and they are in Array but i need to randomly fade-in them on stage within the boundaryes of stage. How to do that? I know i have to use Math.random

View 8 Replies

ActionScript 3.0 :: Call MC To Stage (random)?

Jan 18, 2010

I've got an MC that walks a path, this path is tweened, not scripted. Now this MC is in my library, I want this MC to spawn on the stage(random) and unload it once it is finished. If possible, I want to have multiple of this single MC on stage at the same time. And finally I want all of them to spawn at the same coordinates.

View 2 Replies

ActionScript 3.0 :: Loading Random Mc To Stage?

Oct 18, 2010

so i have 3 mc's in my library each with linkage "icon1", icon2", icon3". what i'm trying to do is load one of them randomly in to the stage.

here's the code i have so far:

Code:

//creating an array that holds the mcs
var iconsarray:Array = new Array("mc1","mc2","mc3");
//creating a random number to use for loading the mc

[Code]....

View 1 Replies

ActionScript 3.0 :: Random Images Into Container On Stage?

Oct 17, 2011

Actionscript Code:
var imgArray : Array = ['1','2','3','4','5','6'];var loader : Loader = new Loader();loader.load(new URLRequest(imgArray[Math.round( Math.random() * imgArray.length-1

[code]....

View 2 Replies







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