ActionScript 2.0 :: Setting Boundaries When Moving MC With X Values

Oct 5, 2004

I'm moving this little red box along the x axis. It just moves w/ the mouse but it moves off the movie clip area, I want to be able to set the left and right boundaries.

Heres my code.
mc_movingBox.onEnterFrame = function() {
var xMouse = _root._xmouse;
if(Math.abs(xMouse - this._x) < 1) {
this._x = xMouse;
} else {
this._x -= (this._x-xMouse) / 6;
}}

View 6 Replies


Similar Posts:


ActionScript 2.0 :: Setting Boundaries When Moving Mc With ._x Values?

Oct 5, 2004

I'm moving this little red box along the x axis. It just moves w/ the mouse but it moves off the movie clip area, i want to be able to set the left and right boundries. Heres my code..

mc_movingBox.onEnterFrame = function() {
var xMouse = _root._xmouse;
if(Math.abs(xMouse - this._x) < 1) {

[Code].....

View 6 Replies

ActionScript 2.0 :: Setting Boundries When Moving Mc With ._x Values?

Jun 7, 2004

I'm moving this little red box along the x axis. It just moves w/ the mouse but it moves off the movie clip area, i want to be able to set the left and right boundries. Heres my code.

mc_movingBox.onEnterFrame = function() {
var xMouse = _root._xmouse;
f(Math.abs(xMouse - this._x) < 1) {

[code].....

View 1 Replies

IDE :: Setting Boundaries On Zooming Map?

Jun 8, 2009

I am attempting to create a map that has the ability to zoom in and out as well as a click and drag feature.What I need help on is setting boundaries for the map. I can set them for the map when it is zoomed out, but they need to change as the map zooms in. I've been searching lots of forums lately to see if anyone can help, but no luck yet...

View 1 Replies

ActionScript 2.0 :: StartDrag And Setting Boundaries?

May 14, 2006

I have a movie clip that can only move to certain parts in the stage. For this I used another movie clip that supposedly should constitue the rectangle constraint. But this doesn't seem to work !startDrag(this,true,bounds._x,bounds._y,bounds._x+ bounds._width,bounds._y+bounds._height);

View 2 Replies

ActionScript 2.0 :: Setting Boundaries For Mc With Random Movement

Aug 2, 2009

I'm a noob on this forum & pretty desperate now. I've been on a research & trial&error odyssey for days now, but this problem remains unsolved. I am creating a game with an mc (say "target_mc") randomly moving around. Everything is working beautifully, except for one thing: My stage was initially 900x600 and the game took up all of that space. target_mc's movement was accordingly set for a width of 900 and height of 600.

I have now resized the stage height to 958 with the game (still 900x600) being centered vertically. The top border is now at 170.8 (y). The bottom y border is at 770.8. But target_mc still thinks the top border is at 0. As a result, it is still covering the same area as before, hence floating off the actual game area into the stage margin area between 0 and 170.8. As I have other frames following which require my new and larger stage size, going back to the original 900x600 is not an option.

I have tried and tried but not managed to tell target_mc to keep its random movement within <=170.8 and >=770.8. I have tried all variations of "if statements" and other tricks at my disposal. And since I'm not an expert, I'm at my wit's end. Everywhere I looked, the solutions offered were for draggable objects or cursor movements, but not for movieclips moving randomly as soon as the frame is loaded. My script & codes are very, very elaborate and there is a lot happening on the stage, so a mask is not an option for me. Surely there's got to be a way to set variables and commands in the script...? I just don't know which to go for...

Do I work with some kind of math involving the total stage height of 958? I have tried setting variables for xMin, xMax, yMin, yMax, but must have done something wrong in implementing them in the rest of the random motion code cos nothing worked.

View 3 Replies

ActionScript 2.0 :: Setting Drawing Board Boundaries?

Dec 12, 2006

I used Kirupa's drawing board tutorial, but when I finished making the flash file I wondered if there was a way to limit where the viewer can draw. For example, on his tutorial he shows you how to create an easy erase button. Well, what if I don't want the viewer to be able to draw on the button. Is there a way to specify the area that you want the viewer to be able to draw on? I tried making the space a movie clip and just adding the actionscript to the movieclip, but when I placed the movie clip inside a bigger flash file it wouldn't let me draw at all. I thought making it a movie clip would then limit the drawable area. Did I do a good enough job explaining my problem? I just want to be able to limit where the viewer can draw, so that the viewer can't get wild and draw all over the buttons and controls.

View 1 Replies

ActionScript 2.0 :: Custom Drag And Setting Boundaries?

Aug 22, 2009

I'm using a custom drag for easing properties:

ActionScript Code:
var yMouse:Number;
var xMouse:Number;
onEnterFrame = function(){
yMouse = _root._ymouse;

[Code]...

As you can see, I'm trying to prevent it from passing _root.block by only allowing the mouse's Y to be followed when it isn't passing _root.block. The only problem is that once it hits _root.block, there's no way to drag it back from _root.block. It gets stuck. Is there a better way to prevent it from passing _root.block but allow it to be pulled back from _root.block

View 1 Replies

ActionScript 2.0 :: Setting Boundaries For Dragging Movie Clip?

Jul 2, 2009

I have created this swf that allows me to drag my movie clip around with easing effects.However, if I drag it too fast, my movie clip will actually goes out of my "flash".PS: I actually got this script from a user in this forum. Sorry about that. Hence, i left the credits there.)Is there anyway where I can set the boundaries where the movie clip can be dragged to? I've came across a website where the effect of dragging within a specific area is exactly what I desired.Also, I'm using AS2 and here it is.

//Tutorial criado pela Cabana Cro: www.cabanacriacao.com
//Visite tambm o Cabanoblog: www.cabanacriacao.com/blog
_root.myMC.ease = 5;

[code].....

View 1 Replies

ActionScript 2.0 :: Game Boundaries - Character Not Moving Across Border

Dec 13, 2009

I've been struggling with making boundaries with my game. I've managed to make boundaries, but in stead of my game character not moving across that border it just bounces back. Which is not the effect I want.

Here's my code
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
xspeed -= power;
} if (Key.isDown(Key.RIGHT)) {
xspeed += power;
[Code] .....

View 3 Replies

ActionScript 2.0 :: Setting Values To Movieclips?

Jan 13, 2010

I have 6 movie clip objects and I want to assign them all a value for when the user clicks on them. This value is to be hidden from the user but I will later use it with an additional software to capture the value. I assume this will be done by using a dynamic text field for when the movie clip is pressed.

View 6 Replies

ActionScript 2.0 :: SCORM 1.2 Setting SCO Objectives Values

Dec 10, 2007

how to set the objectives of a SCO within the LMS reporting of SCORM?

Here is what I have so far:

ActionScript Code:
var theScore = 10;
var theStatus = "c";
var intData = theStatus+";"+"mytestobj"+";"+theScore;
fscommand("MM_cmiSendObjectiveInfo",intData);

The only thing tracking in the LMS is "mytestobj" which is reporting as the objective name.

View 2 Replies

ActionScript 2.0 :: Setting And Concatenating Variable Values?

Jul 24, 2009

I&#65533;m calling a ColdFusion page that generates output in the form of a text file to be used in a scrolling dynamic text field.So, Instead of calling a text file like so:

//calls a static text file
loadText.load("StaticTextFile.txt");
Im calling a ColdFusion page like so:

[code].....

View 1 Replies

ActionScript 3.0 :: Setting Registration Point, And Moving Afterwords?

Mar 14, 2010

how to properly change a displayobject's registration point? changing the transform.matrix.ty / transform.matrix.tx, works, as long as the mc doesnt change x /y itself later. if it does, the matrix is reset.

View 2 Replies

ActionScript 2.0 :: Moving Menu - Setting The Mc On The Initial X And Y Coordinates?

Mar 21, 2004

I m having some problems with my menu I m working on.Its weird cus I d already have done the same menu once and worked fine..The selector mark is suposed to "mark" the selection on the menu after a selection is pressed. But I m having problems with the X and y coordinates and scales of the MC and when I click on the option,the MC gets smaller and then bigger to the size I want.Its suposed change scale and position but its not working like it is suposed to work.I m not sure either if I m setting the Mc on the initial x and y coordinates.

View 4 Replies

Flex :: DataGrid - Getting And Setting Individual Cell Values

Oct 8, 2010

I have Flex 4 DataGrid, what I would like to do is when an cell has been edited, I would then like to walk through the values of that column and preform math on the values, e.g., I want to total up certain values.

1) How do I reference individual values of a specific column so that I may set them.
2) How do I then set those values or should I create a new column array and pop it in place of that column.

View 3 Replies

Actionscript 3 :: Setting Default Values For Object Properties?

Dec 28, 2010

how to set default property values for objects that are being created in a loop.

In the example below, these propeties are the same for each object created in the loop: titleTextField.selectable, titleTextField.wordWrap, titleTextField.x

If you pull these properties out of the loop, they are null because the TextField objects have not been created, but it seems silly to have to set them each time.

var titleTextFormat:TextFormat = new TextFormat();
titleTextFormat.size = 10;
titleTextFormat.font = "Arial";

[Code]....

View 4 Replies

ActionScript 2.0 :: Setting Boolean Values Within Function, So They Don't Confilct?

Jul 24, 2007

'm trying to do: I have a number of buttons on stage. When you rollover, a movie clip is attached. If you roll out, it disappears; if you click, it stays. Then you can drag it around. I'm using a boolean for the rollout disappearing trick. I've set these up in named functions.

[code]function attachBar(word) {
var showIt=false;
i++;

[code].....

View 2 Replies

Professional :: Why Does Setting A MovieClip's Alpha Prevent It From Moving In Another Keyframe

Mar 12, 2012

I have a MovieClip, named "thing", that's in one position and in another position on the next frame. I added an eventlistener to "thing" to advance frames. Very simple, everything works fine.I then add "thing.alpha = 0.5" in the button's event listener. Now when I publish the file, thing fades but doesn't move.

p.s. For reference, here's the entirety of my AS3 on the first frame:
  
import flash.events.MouseEvent; 
stop(); 
thing.addEventListener(MouseEvent.CLICK, doClick);

[code]....

View 6 Replies

Flex :: Item Renderer And Setting Values For Named Objects (Odd Bug)?

Oct 19, 2010

I have a custom component as an item renderer.In this renderer there is an item called dlFirstChoice.Now when I add more items to this list and force the list to rebuild itself something odd happens.Part of the creation of the renderer I set a default selection for the DropDownlist as follows: dlFirstChoice.selectedIndex=0The problem is once I have more than one item to render from my dataset this property stops working. So if my dataset has only 1 item to render the drop downlist sets itseld up properly, the momment I need to render more than 1 copy of my item renderer, all of a sudden nothing gets set fo

View 1 Replies

Actionscript 3 :: Box To Circle Collision - Continue Moving And Never Collide When Swapping Values Around

Feb 24, 2012

I'm trying to implement a aabb to circle collision.

[Code]...

Somehow the collision does work as expected. Either they never move at all and "collided" was traced, or they'll continue moving and never collide when I tried swapping values around. Is there something i'm missing in my logic??? My box-box and circle-circle collision are working fine.

View 2 Replies

ActionScript 2.0 :: Change The Speed Of A Moving Car Based On Values Input By User?

Mar 18, 2006

How can I change the speed of a moving car based on values input by user? Also, how can I make Flash calculate values of a function based on those input values?

View 1 Replies

ActionScript 2.0 :: Setting Array Values To Variables In Another Array

Dec 11, 2007

I have some variables created on the main timeline and a mc called options which will be where those variables can be manipulated. A way I've tried to this is by creating a first array(array1) and populating it will all the variable names found on the main timeline, and another array(array2) containing the values of the variables the user has changed(which are displayed on some dynamic text fields). To make these changes, an "apply" button is pressed which will set the values found in array2 to the variables in array1.[code]How would you do this so that var1, var2... are updated properly according to the values found in array2?And because array2 contains strings(read from dynamic textfields), how do you deal with that since var1 and var2 are numbers?

View 6 Replies

ActionScript 2.0 :: "Moving An Object Using X And Y Values"?

Jan 25, 2007

When I do it with Kirupas interface everything's great but when I try it on my own my circle just won't move I've figured it has to do with the beginning, because the actionscript-part is going great.Oh, and I might be posting this in the wrong forum because I'm new and confused, and in that case, I'm sorry

View 2 Replies

ActionScript 3.0 :: Making Beat Em Up - Character Stop Moving If The Attack Is Pressed And Once It Is Released Start Moving Again?

Nov 2, 2010

im currently making an "AS3 beat em up" ala streets of rage or double dragon.Currently i have my character moving and a few animations done and i am trying to figure out how to make attacks work.I have some "basic" animation for his attack, but im not sure how to get it to work correctley.What happens is, if you press control (the attack button) whilst the character is walking he just keeps moving and is stopped on the attack frame.I want the character to stop moving if the attack is pressed and once it is released start moving again.

hero.gotoAndStop('still');
var left:Boolean = false;
var right:Boolean = false;[code].......

View 2 Replies

Loads The Clip Outside Of Those Boundaries?

Apr 14, 2009

i am looking to make something like this for my page.[URL].. i can do all the vid work etc.. the thing im stumped on is how can they resize the working area it uses eg.. where the presenter comes up.. because to start with the swf looks like its only tiny little play start stop thing then it loads the clip outside of those boundaries?

View 1 Replies

ActionScript 2.0 :: Drag A MC Within Set Boundaries?

Nov 3, 2011

What i am trying to do is move a MC around by dragging it, but i dont want the MC to move so far that it could be lost on the stage. i need some sort of parameters so that the MC is always showing. basically i have a large map of the united states and i want to be able to move it around and look at the individual states. the map is much larger than the stage and i am using a mask to clean up the appearance. i just want to make sure that the user cant move the map so far in one direction that it gets lost.

View 3 Replies

IDE :: Mc Follow Mouse With Boundaries?

Jun 1, 2010

I can't find any info on this so I guess I'll just ask. I'm trying to make moveclips that will follow the mouse pointer on MOUSE_OVER but only up to a certain distance then tween back to its original coordinates (preferably with a bounce or elastic ease).I tried startDrag(); on mouse over and that works quit cool but the problem is stopping the drag...

View 5 Replies

ActionScript 2.0 :: Set And Then Reset X Boundaries?

Feb 3, 2012

I have been working with some code back and forth but am pretty much stuck now! I have four movie clips of different colored cars - two on the left side off the stage, and two on the right side off the stage. The clips move across the stage to the right and the left respectively. I have all the elements that I needed to get working, but now I am stuck because the animation only plays one time. I need it to play over and over again, never stopping. I tried to "reset" the _x boundary for each movie clip since they are in different starting locations, but have not been successful. Below is my code and I also attached a screen shot of how the clips are positioned so you can see how they will cross the screen.

Code:
var loop:Number = 0;
var messageTxt:TextField;
var mc_name:String;
function time():Void {

[code]....

View 9 Replies

ActionScript 1/2 :: Associate Buttons With A Moving Moving Clip?

Jan 30, 2012

what i have is a tween on a movie clip of a popcorn kernel on one layer and a tween on a button on another layer to follow the movie clip. i want to be able to roll over the kernel and make it "pop". i changed my over on the button to popped corn (this works) but i want it to stay popped for the rest of the tween.

View 11 Replies







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