ActionScript 2.0 :: File Which Makes A Ball Move To Left / When Pressing Right Arrow Key

Feb 4, 2009

I've attached a file which makes a ball move to the left when pressing the right arrow key.[code]On a Key.RIGHT it goes through a for loop. Shifting the ball 200 times 1 pixel to the left. Every iteration it tests for a hit with coordinates 100/50 (indicated by the red crosshairs). If there's no hit it moves 1 pixel to the left. If there is a hit it stops moving (no ball._x--).Funny thing is: while it eventually finds a hit, it does a final For Loop. Even though it should find a hit during that last loop when the ball is passing the crosshairs, it doesn't and moves the ball a final time 200 times 1 pixel to the left. Ending up with below image.URL...Why doesn't it find a 'hit' for that final For Loop while it's clearly passing it?

View 5 Replies


Similar Posts:


ActionScript 1/2 :: Bouncing Ball - Move Object Using Arrow Key

Aug 19, 2009

I'm using the actionscript below to Move Object Using The Arrow Keys and it works fine but I want to modify it so that when I press the up key it goes to and play a movie clip. Basically it's a ball movie clip that responds to the arrow key but on the up key it plays a bouncing movieclip and everything remains aligned.

Here is the script-
var speed =5;
this.onEnterFrame =function(){
if(Key.isDown(Key.UP)) {
circle._y -= speed;
} if(Key.isDown(Key.DOWN)) {
circle._y += speed;
} if(Key.isDown(Key.LEFT)) {
circle._x -= speed;
} if(Key.isDown(Key.RIGHT)) { 
circle._x += speed;
}};

View 13 Replies

ActionScript 1/2 :: Move A Ball Right And Left Using Keyboard Arrows?

Dec 7, 2009

How can I move a ball to the left once the left arrow is pressed, so the ball moves to the left side and should automatically return to the right once it reaches the end of the stage... And the same thing should be applied to the right arrow.

View 1 Replies

ActionScript 1/2 :: Image - Move Arrow Left - Right And Up - Down

May 21, 2010

in this image orange arrow i want to move left-right. and up-down

View 5 Replies

ActionScript 2.0 :: Mc To Move When Press The < LEFT> Arrow?

Feb 5, 2005

i want a my_mc to move when i press the < LEFT> arrow but also to fire and onEnterFrame event so it will move.. and also to delete the onEnterFrame when the key is not pressed so the onENterFrame is not going on in the background

View 4 Replies

ActionScript 2.0 :: Move MovieClip On Holding Down Left Arrow Key

Mar 12, 2007

Basically I wanna remove my mc "ball" when you press the left arrow key. I've tried stuff like
Code:
if (Key.isDown(Key.LEFT)){
ball._x -= 1;
}
Some reason gives me like, "needs clip events"

View 6 Replies

ActionScript 3.0 :: Mouse Orientated Movement - Move Left And Right With The Arrow Keys?

Jan 27, 2011

i'm attempting to make a platform game, i know how to move left and right with the arrow keys, but that's quite boring. i want to move my character based only on the x movement of my mouse. the more i move my mouse in a certain direction, the faster the character moves in that direction. i've been trying to modify the x-speed on my character based on a x value of the mouse, but nothing is working.

preferably, i want a code that keeps my cursor at the center of the screen, while still being able to detect x movements of the mouse. i'd copy paste code from my program, but i'm fairly confident that doing so will serve no purpose. i need a new direction. i have no idea how to do this.

View 9 Replies

IDE :: Design Banner - Get Stuck When The Ball Move In The Fla-file?

Apr 8, 2009

I have tried for a while to do a flash banner but i am stuck.I have cs4 flash installed.I want to have a banner like this one on top:http:[url]....My question is how to design this banner?I have tried to do a big banner in startup panel, i have read cs4 flash for dummies but i get stuck when the ball shall move in the fla-file.

View 4 Replies

ActionScript 2.0 :: Pressing Space Then Ball Falls Down

Feb 3, 2012

I have made this ActionScript code, so when I press "SPACE", the ball falls down.[code]When I press space, the ball doesn't fall down.

View 3 Replies

ActionScript 3.0 :: Moving Ball Around Screen With Arrow Keys

Mar 10, 2010

Code:
Select allif (yellowball.hitTestObject(maze1)) {
stop(moveball);
gotoAndStop(2);
}
I am trying to do a simple script where the arrow keys move a ball around the screen and when it collides with maze1 the movie skips to frame 2. It says that the code is correct, but it doesn't work.

View 1 Replies

ActionScript 2.0 :: Click In Ball And Move It Up, The Gravity Move It Down?

May 8, 2002

How can I move (on click) the ball up? I'd like to click in ball and move it up, the gravity move it down as well...

View 1 Replies

Get A Ball From Left To Right?

Jun 12, 2009

I am trying to get a ball from left to right I click in 28 and insert keyframe then I  right click  and click on create motion tween nothing happens. When I do this same thing on the sample one with the car this is what I get. and when I do the ball one sample2 it don't have the blue bar.

View 9 Replies

ActionScript 3.0 :: Move An Image Left To Right & Right To Left Automatically?

Jun 22, 2011

I have an Image called "PanoramaImage" (which is very long in width). I want this image to move from right to left & from left to right automatically.

I am using flash as3. I am loading this image from the same folder where the .fla file exist. my image to move by using Up & Down arrow keys.

The following is the sample code i found on web.

var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.CO MPLETE, completeHandler);
loader.load(new URLRequest("panorama.jpg"));

[Code]......

View 7 Replies

ActionScript 3.0 :: Move An Image Left To Right And Right To Left Automatically?

Apr 24, 2005

I have an Image called "PanoramaImage" (which is very long in width). I want this image to move from right to left & from left to right automatically.I am using flash as3. I am loading this image from the same folder where the .fla file exist. Right now I have the code which will help my image to move by using Up & Down arrow keys.The following is the sample code i found on web.

var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.CO MPLETE, completeHandler);
loader.load(new URLRequest("panorama.jpg"));
var content_mc:Sprite = new Sprite();

[code]....

View 3 Replies

ActionScript 3.0 :: Left & Right Arrow Navigation?

Apr 3, 2008

I'm not at all used to working with actionscript but sometime back in time I made a flash demo where I managed to map my left & right arrow keys to navigate to the frames of my choice.

To be able to navigate to specific frames in the timeline by pressing either Left arrow or Right arrow key.

This is the code Im trying to use

if(Key.isDown(Key.RIGHT)){
gotoAndStop(nextFrame);
} else if (Key.isDown(Key.LEFT)){

[Code]....

View 5 Replies

ActionScript 3.0 :: Arrow Keys Right And Left In Different Scenes?

Apr 14, 2009

i have different scenes once clicked it goes to next similarly want to have right and left keys want to work with but its only working in the 1st Scene, once user clicks and goes to next scene then arrow keys stop working,

Actionscript Code:
import flash.system.fscommand;import flash.ui.Keyboard;import flash.events.Event;import flash.events.KeyboardEvent;btn_next.addEventListener(MouseEvent.CLICK,next_Slide);btn_prev.addEventListener(MouseEvent.CLICK,prev_Slide);btn_exit.addEventListener(MouseEvent.MOUSE_DOWN, closeApp);stage.addEventListener(KeyboardEvent.KEY_DOWN,

[code]....

View 1 Replies

Moving Character On X (left And Right) Only With Arrow Keys?

Aug 17, 2009

i got my character to move left, right, down and up wit this code:

[Code]....

My question is, how can i block the up and down movement? I tried simply deleting some part of the script to block does movement from the user. But then the script would not work properly : s Here is the uploaded page i'm working on: link.

View 2 Replies

ActionScript 3.0 :: Using Shift And Left / Right Arrow As Naviagtion?

Jun 25, 2009

I found this tutorial on kirupa about identifying keyboard and using them to navigate,however I cant seem to get it to work using (shift) and left, right, up, down.I am going to use left and right arrows for one thing and shift left or right to do another.Does anyone know how to make this happen? Here is my code so far (not working for combing shift and value)

function reactToArrowKeys(keyEvent:KeyboardEvent) {
if (keyEvent.keyCode == 38) {
trace("Up Arrow pressed.");

[code].....

View 7 Replies

ActionScript 3.0 :: Make Buttons That On Rollover Move To Left - On Rollout Move Back To Their Initial Position

Dec 15, 2009

well i want to make buttons that on rollover move to left, on rollout move back to their initial position, and if clicked, they but stay this time at the final rollover place, and be there until something else is clicked. When something else is clicked, the previous button , returns to its initial place. So i ve got it all figured out except for the freeze and move part when the buttons are clicked. All it does now , is when they are clicked they freeze at the position i want, but i havent got a clue how to update them, after so they start moving back, and reacting on rollover and rollout, when the next button is clicked.

[Code]...

View 2 Replies

ActionScript 2.0 :: Scrolling Arrows - Right Arrow Is The Same Just Changing Left For Right Obv

Jun 8, 2009

I'm trying to do a photo gallery for a website with scrolling arrows. I found a bit of AS that's perfect for what I want to do only problem is, it's in AS1 and i'm working in AS2 so i was wondering if someone could convert the code to AS2 for me or direct me to a tutorial that has the same sort of outcome in AS2.

[Code]...

View 2 Replies

ActionScript 2.0 :: Disable The Left Arrow Key For A Certain Part Of A Movie?

Aug 14, 2009

is there a way to disable the left arrow key for a certain part of a movie. i have the follow code to make it work but need the code to disable it.

//listen for keypress
var myListener:Object = new Object();
myListener.onKeyDown = function() {

[Code].....

View 1 Replies

ActionScript 3.0 :: Programmatic Animation - Ball Moves At A Certain Speed From The Left Of The Screen To The Right?

Feb 27, 2009

I've just learned the basics of programmatic animation in Actionscript 3.0 but I can't seem to think of the right solution for this problem.Here is what I'm trying to do: A ball moves at a certain speed from the left of the screen to the right end. If there's a box in the way, it keeps bumping into it until the box breaks and it continues moving forward.The box will have a set weight that will control how much it slides when it is bumped by the ball. The ball will be pushed back a bit when it bumps the box.I have a very specific idea and all I need is a little help starting. How would you tackle this problem?

View 4 Replies

Flex :: Changing Left / Right Arrow Button Styles For DateChooser?

Jul 25, 2011

My DateChooser code and its style code is shown below:
<mx:DateChooser id="dc" cornerRadius="0" bottom="0" width="100%" allowMultipleSelection="true" allowDisjointSelection="false" styleName="dateChooserGradient" change="fetchDateAgenda(dc.selectedDate)"/>

And the dateChooserGradient:
.dateChooserGradient {
header-colors: #133c59, #29506c;
todayStyleName: myTodayStyleName;
headerStyleName: myHeaderStyleName;
weekDayStyleName: myWeekDayStyleName;
dropShadowEnabled: false;
arrowBorderThickness:2;
arrowColor: #062338;
arrowAlpha: 0.1;
}
What I actually want for my arrows is a transparent background, with borderthickness to be 2, and the arrows and bordercolor to be #062338. Also if I can make the width and height of the arrow itself a bit bigger then what it is as default.

View 1 Replies

ActionScript 2.0 :: Getting Symbol To Move By Pressing Keys?

Jun 27, 2010

I'm completly lost, I'm rather new to flash, and I'm trying to get a symbol to move when I press a key. The following is what my code looks like:

onClipEvent (load) {
speed = 5;
} onClipEvent (enterFrame) {
if (key.isdown(37)) {
_x -= speed;
} if (key.isdown(39)) {
_x += speed;
} if (key.isdown(40)) {
_y += speed;
} if (key.isdown(38)) {
_y -= speed;
}}

View 4 Replies

ActionScript 2.0 :: Mouse Makes Pic Move?

Aug 3, 2003

I am trying to make a flash footer for this forum. A footer is 300 by 60. If the user mouses on the top half of the footer, then my image inside will scroll up. Vice versa for mousing on the bottom half. It aint seem to work. I put the below on the image, which is a movie clip.

Code:
onClipEvent (load) {
//because the footer is 30 pixels high
newHeight = this._height+30;
}

[code]...

View 4 Replies

ActionScript 2.0 :: Rotate Individual Jigsaw Puzzle Pieces Using The Left And Right Arrow Keys?

Oct 24, 2004

how to rotate individual jigsaw puzzle pieces using the left and right arrow keys.Here is the action script that I am using:

on (press) {
startDrag("_root.pic9", true);
this.swapDepths(100);[code]....

View 7 Replies

ActionScript 2.0 :: Pressing Enter To Move To A Frame Label Does Not Work

Sep 1, 2009

I have a project that I am having the user be directed to a screen on their first visit. At the end of the text that appears it says "Press Enter to Continue" Once they return I am not showing that screen. Problem is nothing happens when you press enter...below is my code

PHP Code:

var so:SharedObject = SharedObject.getLocal("skipIntro");
//so.data.skipFran = false;
function myOnEnter() {

[Code].....

View 2 Replies

ActionScript 2.0 :: Top Score --> Which Makes Timeline Move On?

Apr 1, 2003

I have a drag and drop game, which keeps score. However when the last picece it dropped I want to display a congratulations of some kind how do i do that? Here is the sorce code MX.

View 3 Replies

ActionScript 2.0 :: Script That Makes A Movieclip Move To A Certain X Position?

Nov 9, 2005

I'm looking for a script that makes a movieclip move to a certain x position (_x = -563) and when it reach that x position it should jump back to its original position (_x = 0 and start moving again to _x = -563

View 2 Replies

ActionScript 2.0 :: Ball To Move In A Random Direction 0-360?

Sep 6, 2005

I would like the Ball to move in a random direction 0-360,Then i would like the Ball to richoche off of the BallBoundry in its reflected direction.

View 2 Replies







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