ActionScript 2.0 :: Create A Movieclip Called Square?

Apr 21, 2004

hey guys, so, im going through colin moock's book, "the definitive guide", and im learning about global variables. so in his lesson he says to do this:

1. create a movieclip called square, with a square inside of it.

2. in the square mc's timeline, on frame 1, place this code :

_global.day = "tuesday";

3. go back to the main timeline and on frame one put this code:

trace(day); no according to moock, when i run the movie, it should output "tuesday", but all i keep getting is "undefined".i'm running mx 2004, so im wondering if that has anything to do with it.

View 8 Replies


Similar Posts:


Actionscript 3 :: Create A Square Grid?

Dec 19, 2010

I am relatively new to flash. I am trying to create a square grid and add it to the movie.When I open the actionscript panel by pressing F9 and when I type the following code, var square:SquareClip = new SquareClip();addChild(square);

Things are working fine (the squareclip is appearing in the movie). Instead when I do this however, I deleted the above code and just create a new instance of Main,

[Code]...

View 2 Replies

ActionScript 3.0 :: Create A Square Grid And Add It To The Movie?

Dec 19, 2010

I am trying to create a square grid and add it to the movie. When I open the actionscript panel by pressing F9 and when I type the following code,

Code:
var square:SquareClip = new SquareClip();
addChild(square);

Things are working fine (the squareclip is appearing in the movie).Instead when I do this however, I deleted the above code and just create a new instance of Main,

Code:
new Main
and inside Main.as

[code].......

And when I run the code, my square is not coming.

View 5 Replies

ActionScript 2.0 :: When Creating A Dynamic Square With The Api - Won't Drawing Api Square Object

Dec 2, 2010

when creating a dynamic square with the api. 400 by 400. I am not sure why it wont draw the object

[Code]...

View 2 Replies

ActionScript 3.0 :: Create A Random Square Every Frame Of An Animation?

May 22, 2011

I'm trying to create a random square every frame of an animation.The trick is, this square isn't allowed to overlap any other squares currently on the stage.I've got code that works all fine and dandy but... after a few hundered squares it slows right down.There must be a way to optimise this, at the moment I've go a while loop telling checking the random squares position against all the others already on the page. If it doesn't intersect, it draws it and carries onto the next frame.After a few thousand attempts, it makes the max and minimum size the square can be smaller, to give it a better chance of fitting in the gaps.And then continues getting smaller after multiple thousand more attempts.Here's my code...

var squares:Sprite = new Sprite;
addChild(squares);
var squares_arry:Array = new Array;[code]....

View 15 Replies

ActionScript 2.0 :: Have An Enemy Square That Chases The Player Square?

Jan 15, 2010

I have this game, and some levels have a moving square as the player, you move the square with your arrow keys.... I want to have an enemy square that chases the player square.... They only chased mario when you didn't look at them? Kinda like that...... but in this regards:

I only want the enemy square to chase the player square when the player square moves.... soo say the player square moves 5 pixels per movement (know how to do all that), I want the enemy square to move when the player square moves..... towards the player square at like 7 pixels per movement..... so eventually you won't be able to avoid the enemy square....

View 4 Replies

ActionScript 2.0 :: Square Movieclip Resize Itself

Dec 3, 2003

I am messing around to learn more about actionscript and I am trying to have a square movieclip resize itself so both sides are equal to 50 here is my code on the movieclip it does the resize and all but it keeps on going. I am not sure how to stop it.

[Code]....

View 6 Replies

Flex :: Rotating Movieclip Back To Square?

Jul 20, 2010

I have a movieclip that I am using greensocks transformManager with so the user can rotate, skew, and scale the clip. This works fine, but I am trying to add a crop tool. If the image is rotated, when I send the image to the crop tool it measures the height of the image by the bounds of the rotated image, not the actual height of the image if it were square (re: not rotated).

So, what I tried to do what, after sending it to the crop tool, rotate it back to 0 before getting the bounds using this code:

[Code]....

I don't understand the math here. Shouldn't it just rotate 3rads in the positive direction to equal it out? How would I return it to 0;

View 1 Replies

ActionScript 2.0 :: Movieclip Move In Drawn Square?

Oct 7, 2009

How would it be possible if draw a square, then put movieclip to move in it. It would move when rotate another movieclip..

View 0 Replies

ActionScript 2.0 :: Draw A Triangle And Square Using A Movieclip?

May 21, 2010

I am trying to draw a triangle and square using a movieclip that follows the pen of a line.It works, both triangle and square draw together. But I keep getting a flicker of a movieclip in the top left corner.

View 0 Replies

ActionScript 2.0 :: Cannot Get Square Brackets To Target MovieClip

Jun 20, 2006

I'm stuck with trying to target a movieclip dynamically from a loop. I'm using the square brackket syntax but I can't figure out why it's not working. Here's what I'm trying to do:
Code:
this.t1.t1._alpha=20;
And here's how I'm trying to do it:
Code:
this["t"+1+".t"+1]._alpha= 20;

View 3 Replies

ActionScript 3.0 :: Cast A MovieClip To A Custom Class That Extends MovieClip Called MovieClipExt

Jun 4, 2010

i'm trying to cast a MovieClip to a custom Class that extends MovieClip called MovieClipExt

ActionScript Code:
package {
import flash.display.MovieClip;

[Code]....

...but sadly returns null instead of a MovieClip converted to MovieClipExt

what should i change to make this work?

View 3 Replies

ActionScript 3.0 :: Make An Extrusion For A Red Square Movieclip In Flash?

May 17, 2011

How can I make an extrusion for a red square movieclip in flash or as3?

View 4 Replies

ActionScript 3.0 :: MovieClip (Square) HitTestObject For Multiple Children

Jun 3, 2009

I have a circle_mc on the stage. Then I create randomly placed 20 squares (square_mc) on the stage. I can move my circle on that stage, and all I want is to check hitTestObject(or any *yet unknow for me* method that gives a result) if circle touches any of squares. Then I need to remove that touched movieClip (square) from the stage. hitTestObject checks if 2 specific objects are touched. My question is how to know which square is which, and then if it touches with circle_mc to remove it from the stage.

Code:
Select allif (circle_mc.hitTestObject( ?whatHere? ) ) {
?whatHere?.removeChild( ?whatHere? );
}

View 2 Replies

ActionScript 3.0 :: Square MovieClip - Tracking Coordination Of Mouse Click

Oct 20, 2010

I have a square movieclip named squarepad. What I want is when I click on it to do [some stuff] according to where the square is clicked. It should be something like this:
if ([mouseclickedx] > 1) and ([mmouseclickedx] < 10) then
[do this]
end if

View 1 Replies

ActionScript 2.0 :: Send The Variable X To Each Movieclip So That It Can Be Called From Within Each Movieclip Instead?

Aug 1, 2005

I have a loop that creates movie clips where the movie clips are named mc_+ x for say x = 1 to 10 so the movieclips are called mc_1, mc_2.....mc_10.

What I need to do is the know which one of the movieclips is clicked on but more importantly the number i.e if movieclip mc_2 is clicked on then I need to use the value 2.

At the moment I am sending the value of x to be displayed in a text box within each movieclip:

_root.search.textfield.text = x;

Then I have a piece of actionscript that uses the value of x but I don't seem to be able to "re-read" the value of x back with:

var t = _root.search.textfield.text;

what I want is t = x is it to do with strings and number variables?is it possible to send the variable x to each movieclip so that it can be called from within each movieclip instead?

View 1 Replies

Professional :: Use The Color Effects And Blending Options Of MovieClip Square To Make Layer 1 Alpha

Aug 11, 2011

Inside movieClip container, there are colored buttons on layer1 and on layer2 there is movieClip square which covers the buttons. I want to use the color efffects and blending options of movieClip square to make layer 1 alpha. There are some blending options called alpha, difference, lighten and substract but Im not getting the right combinations. I want to make layer1 alpha only by using layer2.

View 1 Replies

Create And Send A Variable Called 'return'

Aug 21, 2010

create and send a variable called "return." But that conflicts with a word used in actionscript.[code]is there anyway to work around this naming conflict?

View 1 Replies

ActionScript 2.0 :: Create Script / When Want To Show Mc Called Bgstar After 2 Seconds?

May 8, 2009

How to create a script when I want to show a mc called bgstar after 2 seconds?[code]

View 1 Replies

ActionScript 3.0 :: Dynamic Text From Called XML - How To Create A Line Break?

Oct 5, 2010

I am populating a dynamic text box with some xml elements that I am calling on. For example, I have two text fields and am filling them using

texttime.texttest.text=(bktrlXml.row[e.currentTarget.ivar].tester);
texttime.textname.text=(bktrlXml.row[e.currentTarget.ivar].NAME2);
 
How could I populate one dynamic text field using a combination of the two elements above?  I'd also like to put a line break between the two elements.I tried something like this and could not figure it out 

texttime.texttest.text=(bktrlXml.row[e.currentTarget.ivar].tester)+"/n "(bktrlXml.row[e.currentTarget.ivar].NAME2);

View 3 Replies

Button Being Called Inside MovieClip?

Apr 27, 2009

Can the button be called inside a movieclip?

View 6 Replies

MovieClip Called Target_mc On The Main Timeline?

Sep 18, 2007

I have a movieClip called target_mc on the main timeline... Inside that movieClip, I have four frame animation where there are aim1_mc and aim2_mc on each frame...I also have a for loop that hides aim1_mc on all the frames... It works fine on the first loop, but I see the aim1_mc of the frame 1 from the second loop...

ActionScript Code:
this.target_mc.onEnterFrame = function ()
{

[code]......

View 7 Replies

ActionScript 2.0 :: Loads Movieclip Called All_animation?

Oct 11, 2006

I've got a root movie clip called index that loads movieclip called all_animation.Inside all_animation there are 4movieclips that I'm using as buttons.Inside each button, there are 3 layers. actions layer has stop() on the frames after/at the end of a tween to move the buttons on the stage. But after you take the mouse away. The button stays where its supposed to.But when you you bring the mouse back, it loops round back to the original position. I want it to stay where it was at the end of the tween. Really frustrated cant figure out how to stop it permanently. I put in a trace() msg, and its definately looping round.Here's the code

stop();
this.leftleg_btnmc.onRelease = function(){
leftleg_btnmc.gotoAndPlay("_over");[code].....

View 2 Replies

ActionScript 2.0 :: Duplicating My MovieClip Onto Another MovieClip Called "Floor"?

Oct 16, 2006

I having trouble duplicating my movieClip onto another movieClip called "Floor". I can duplicate the floor movieClip but not the item I am selecting in my scrollPane. I don't know what I am doing wrong.

[Code]...

View 1 Replies

ActionScript 3.0 :: Load An External Swf Called 'signs.swf' Into An Empty Mc Called 'signholder'?

Apr 12, 2010

I want to load an external swf called 'signs.swf' into an empty mc called 'signholder'.

var loadit2 = new Loader();
loadit2.load(new URLRequest("signs.swf"));
signholder.addChild(loadit2);

Everything works. Cool. But, I now want to target something within the signs.swf. How do I do it though? What is the path? Do I have to give the child of signholder an instance name? Everything I try fails.

If I wanted the root timeline of the external swf to gotoAndPlay(2) for example,...would i say...

signholder.loadit2.gotoAndPlay(2) ???
var wow:MovieClip = loadit2.content as MovieClip;
wow.gotoAndPlay(2) ????

View 3 Replies

ActionScript 3.0 :: Movie Clip Called CircleFill And Another Called CircleOutline?

Oct 30, 2007

I am having issues with startDrag(). I have a movie clip called circle. Inside circle, I have a movie clip called circleFill and another called circleOutline.onEnterFrame, this movieClip is duplicated 4 times.

When I use this:
private function onPressNow(event:MouseEvent):void
{
startDrag();
}
IT DRAGS ALL 4 MOVIECLIPS.

[Code]...

how can I make it drag my movieClip called circle? (meaning both circleFill and outlineFill)

View 8 Replies

ActionScript 3.0 :: Called InfoBox That Contains A Text Field Called Caption?

Oct 24, 2011

i have a box called infoBox that contains a text field called caption. infoBox expands on mouse-over. When it does so, I do not want the text in caption to scale up - I want it to stay at 11 pt. So far my code to prevent this from happening is not working:How do I fix this?[URL]..

View 2 Replies

ActionScript 2.0 :: Swf Called Main.swf Which Has A Container Movieclip That Gets External Swf's Loaded Into It

Jul 28, 2004

I have one swf called main.swf which has a container movieclip that gets external swf's loaded into it.

my external swf is called hosting and it calls an array of data that is loaded into a movieclip that is duplicate for each element from the database. The elements from the database are as follows:

Business
Economy
Power
Standard

Each one of these has a button over it that when press loads information from the database into a movieclip that contains a textbox. My button code is: _root.movieclip.loadVariables("url to database");

This works flawlessly when I run the hosting.swf by itself, but when it is loaded into the contianer in the main.swf the buttons dont work. I believe that it is the _root in the button call that is causing this but I dont know how to fix it. I think the _root variable changes when hosting is loaded into the main.swf.

View 1 Replies

ActionScript 2.0 :: Referencing Movieclip Event Handler Is Called From When Using Delegate?

Aug 24, 2006

I'm using Delegates in a new project I'm working on to call an event handler in my class with the scope of the class.

I'm having an issue referencing which button is calling this handler. Since all of my buttons are created dynamicly, this is a big problem.

I'm used to using forms and components where I had no problem with this and could reference who was calling the event handler by using - event.target

This doesn't seem to be the case with movieclips though, is there another way to do this?

View 1 Replies

ActionScript 3.0 :: Inside Each Movieclip Is An Image And Then A Layer Above It Called Cover_mc?

Apr 16, 2011

I have 4 Movieclips on stage, each called btn1, btn2, btn3 and btn4. Inside each movieclip is an image and then a layer above it called cover_mc.The piece of code i have here, which is located on the main timeline, should be registering a MOUSE_OVER command and then fading out the cover_mc movieclip from within that particular Movieclip im hovering over.

Code:
import fl.transitions.Tween;
import fl.transitions.easing.*;

[code].....

View 3 Replies







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