Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
477 views

make gvim treat wrapped line as new line

When I press "j" or arrow down in vim/gvim the cursor moves to the next line. which is good for writing code. When writing text however the lines are usually much longer then the text with. Therefore ...
7
votes
5answers
2k views

Fade in on mouse movement (like on google.com)

How do I fade in div content on first mouse movement, like on google.com, using javascript? I don't want it to fade out again.
6
votes
10answers
594 views

Vim: transitioning from mouse to movement

I use MacVim (and gvim) a lot. I'm familiar with and use a lot of the basic movement commands (b, w, $, 0, G). However, for a lot of things—such as selecting particular lines on the screen or ...
5
votes
3answers
125 views

How to speed up this moving algorithm? In Javascript

I have an Array of 16 billiard balls in JS and want to move each ball smoothly with its direction and speed. For that I set up a timer, calling UpdateThis() every 42ms (for 24 fps). The problem is ...
4
votes
2answers
469 views

Advanced RPG-Style Movement in XNA

I am making a top down, rpg-type game - similar to Pokemon, but I am stuck at character movement. Basically, what I want to achieve is a smooth tile based movement system for my player and other ...
4
votes
5answers
414 views

Find the velocity of the mouse in C#

How can i find the instantaneous vertical speed of the mouse at the exact moment that the mouse is released? i have the users dragging over a custom control and when they release i need to know this ...
4
votes
1answer
473 views

C# move a Polyline

I'm new in the graphical programming with C#. Yesterday I started one new project (WPF). There is a Polyline object which I have to move along the screen with coordinates which I'm calculating. I ...
4
votes
2answers
1k views

Simulate mouse select with Javascript?

I would like to select text on the page by simulating a left mouse button down and drag it to a specified x,y location (in pixels) Can this be done with JavaScript? Thank you.
3
votes
1answer
264 views

Problem with a Moving & Rotating Map?

I have a image of a Map and a smaller PictureBox control. I'm getting input from my joysyick. My the Y takes the image up and left Adn the X actually rotates the image.. My problem is when i rotate ...
3
votes
3answers
559 views

Mouse movement: Click the the sprite “walks” to point clicked

I'm pretty new to C# and XNA and well progrmaing (like I can follow a tutoral but most of the creating it on my own is still really really hard). Right now I'm going round and round trying to figure ...
3
votes
5answers
696 views

Asteroids Game Movement In C#

I am trying to make the game Asteroids. My issue I have right now, is if you press the UP Arrow key, it will move the "ship" 10 pixels up. And if you hit the LEFT Arrow key, it will turn the "ship" 5 ...
3
votes
2answers
2k views

How to program smooth movement with the accelerometer like a labyrinth game on iPhone OS?

I want to be able to make image move realistically with the accelerometer controlling it, like any labyrinth game. Below shows what I have so far but it seems very jittery and isnt realistic at all. ...
2
votes
1answer
51 views

Java steering object with two wheel velocities

Let's say I have a two wheeled object, where each wheel has an independent velocity (lWheelV and rWheelV for the left and right hand wheels respectively). The velocities of each of the wheels are ...
2
votes
2answers
60 views

Java a moving animation (sprite)

Hello i`ve got a problem: when i run this code i get this: on some java forum they said i need to add Graphics2DObject.clearRect(x1, y1, x2, y2); (where`s x1 and y1 is coordinates of the image and ...
2
votes
1answer
143 views

Moving items from one tableView to another tableView with consolidation

Let's say I have 2 UITableViews next to eachother on an ipad in landscape-mode. Now I want to move multiple items from one tableView to the other. They are allowed to be inserted on the bottom of the ...
2
votes
2answers
186 views

AS3 Character only stops at walls in one direction

I tried almost everything to make my character stop when it detects a wall. It only works for UP and RIGHT or DOWN and LEFT but not all 4 directions, so only one y movement and one x movement. So I ...
2
votes
1answer
43 views

How to put a graphic on a mouse cursor?

I remember seeing a tutorial for putting a graphic on a mouse cursor. But I have been trying to find out, and couldn't. Does anyone know any Java code for doing this? :-/
2
votes
2answers
297 views

AS3 Stop character from moving through walls

I want to stop the movieclips movement when it hits a wall (another movieclip). The example below works, but after the collision the movieclip 'blocks' all movement to the left... My question to you ...
2
votes
1answer
255 views

xcode animate an image when it is near another

Hi everyone I'm french so scuse me for my english. Well a I have an image(image1) that is moving around the screen and another image(image2) that is static. What I want is that if image1 is !near!(and ...
2
votes
1answer
176 views

Java Movement in 2d

I've used something like this for movement in 2d projects before and it's always worked. I'm using it right now and its giving me the correct angles for some outputs, and the wrong angles. I think ...
2
votes
1answer
498 views

XNA movement along a line in 2D

I writing a simple XNA demo in which a sprite is supposed to move along a line (defined with two Vector2 points (Ax,Ay) and (Bx,By) ) at a given speed V (understood as a distance on the line traveled ...
2
votes
0answers
206 views

Cocoa (not touch) collision detection of two circles

I am trying to detect the collision of two circles. The process works when a user creates circles (button click) and then mouse clicks on one of the circles to activate it. Mouse clicking anywhere ...
2
votes
1answer
729 views

Move in direction of rotation in opengl

I'm really new to OpenGL but have quite a good grasp of basic trigonometry (forgotten quite a bit since school!) but I'm having trouble with this. I have a character that moves forwards and backwards ...
2
votes
1answer
347 views

Object movement choppy when frame rate is capped

I've been having some trouble with choppy movement of objects in a game. If the frame rate isn't capped, the game runs smooth. If I cap the frame rate at say, 60 fps, the movement is choppy. An ...
2
votes
1answer
174 views

Movement in native Android development?

Yo guys, I'm trying to get into native android development coming from an Actionscript 3.0 background. My question is: what is the standard convention for creating basic movement in Android? By ...
2
votes
2answers
295 views

track mouse movements on 800 x 600 and show on 1024 x 768

i am tracking the mouse movements of a user using javascript and storing it along with the browser resolution. Then i can check the user mouse movement in my browser which is 1024 x 768 resolution. ...
2
votes
3answers
661 views

How do I press and move the mouse in C#?

I need to send mouse signals in C# so that other applications register them. To be exact, I need to simulate mouse buttons and the move of the mouse. Is there a way to do this in C#? (Windows)
2
votes
2answers
98 views

emacs lisp skip-syntax-forward help

I am trying to implement function which moves to the next blank/whitespace character. I have read manual, and it seems I can use skip-syntax functions. However, I cannot figure out how to use them ...
2
votes
3answers
2k views

Movement “algorithm” in client-server Multiplayer (MMO) Games?

I've been writing a 2D flash multiplayer game and a socket server. My original plan for the movement algorithm between the client and server was the following: The client informs the server about ...
1
vote
1answer
50 views

Horizontal Launch Trajectory movement

i'm kinda stuck here with my thoughts..I have a picture of what i want accomplish. I think its the best way to explain. The red points are the starting positions. I want all of them to hit the same ...
1
vote
2answers
102 views

Making mouse movements humanlike

I am making and auto clicker using java.awt.Robot. One of the concerns i have however is the movements aren't very humanlike. Can anyone suggest some changes to my code to make it more human like? ...
1
vote
2answers
51 views

C# simple graphics stuff

I can draw graphics in C# NET 2.0 using this code in Form paint event. e.Graphics.DrawRectangle(new Pen(new SolidBrush(Color.Red)), new Rectangle(20, 20, 20, 20)); But how do I make the drawn ...
1
vote
1answer
58 views

Game programming: remove movement lag (jumping)

I'm developing an HTML5 3D fps-like engine that already looks quite nice, but as this might be one of the worst language choices to make 3D there's noticeable lag sometimes. I programmed movements ...
1
vote
1answer
115 views

Simulating movement similar to dust particles

I've tried a setInterval loop with css and animate. Both ways of movement consists of tiny movement from oldpos1 -> newpos1 with no random curve movement, easing however occured with jQuery animate ...
1
vote
1answer
39 views

Android. Enabling the user to move widgets within a layout

I would like the user to be able move a widget within a layout window (in sense drag and drop within the same window). Is there a good way to do this in simple fashion. I've seen drag and drop ...
1
vote
1answer
155 views

unity3d smooth character rotation

Here is my code for moving in the four cardinal directions: if (Input.GetKeyDown(KeyCode.RightArrow)){ transform.forward = new Vector3(0f, 0f, 1f); } else if ...
1
vote
1answer
75 views

Moving shape and change direction with window edge using OpenGl and C#

I have a shape created using OpenGL glControl with C#. I need the shape to move side by side and change direction each time it hits the window wall (edge). I don't know how to get the program to ...
1
vote
1answer
46 views

Detect when a user moves off of a button in Android

Is it possible to detect anytime a user moves their finger off of a button after they have been pressing down on it? I have determined that onTouchListener will get an action when the user moves off ...
1
vote
1answer
45 views

Movement speed varies?

Hey guys on my 2D game the movement speed varies.. I was making my game on my Desktop and it ran fine but then I went on my laptop and the Player moved slower then the Desktop. Here is my current ...
1
vote
2answers
80 views

Circular Movement Image in JAVA

I want an circular movement of an image in JAVA, i thought I have the solution but it doesn't work and i'm a bit clueless now. For calculating the points it needs to go im using pythagoras to ...
1
vote
3answers
59 views

What is the most processing efficient way to store mouse movement data in JavaScript?

I'm trying to record exactly where the mouse moves on a web page (to the pixel). I have the following code, but there are gaps in the resulting data. var mouse = new Array(); ...
1
vote
1answer
42 views

Click Coordinates after Window Movement

Not being entirely familiar with programming GUIs in C++ and whatnot, I'm running into a problem where my program will not respond to a left-mouse click after moving/dragging the application window. ...
1
vote
0answers
118 views

Unity Realistic accelerometer controls

Vector3 acc = Vector3.Zero; void update(){ acc = Vector3.Lerp(acc, Input.acceleration, Time.deltaTime); transform.position = new Vector3(transform.position.x, (acc * -aVerticalRotation).x, ...
1
vote
1answer
584 views

Cocos2D set sprite position in relation to another sprite

I am sure this is an easy question for anyone who knows anything about math and programming (Cocos2D), but when it comes to math I'm the village idiot. My game has a ship that flies around in space. ...
1
vote
3answers
269 views

Vim: <Ctrl-h|j|k|l> for Movement in Insert Mode

I'm being quite new to Vim and I consider setting it up so I can use Ctrl + movement keys (H, J, K, L) for moving around in Insert mode. Two questions: How is this set in .vimrc? Is this ...
1
vote
1answer
271 views

Making Character move around circle

So I have a 2d game which normally just has gravity and "flat" levels however I have added in "planets" which have their own gravity. I have a function called addForce(float xForce, float yForce) ...
1
vote
1answer
148 views

Cocos2d movement of a point inside a circle

I am writing a game in cocos2d in which there is a rotating target and an arrow which points the target. So I'd like to rotate the arrow simultaneously with the target (in order to create the effect ...
1
vote
1answer
386 views

How I can move an image from left to right and right to left in android?

I'm new in android. I want to move an image from left to right and right to left.When user touch right side image of the image it will move right side.Same thing will happen when user will touch right ...
1
vote
3answers
251 views

Problem tweening MC slow movement with Tweener, even with smoothing

I think that Tweener is not using fractions of pixels on x,y movement, but that exactly what I need. I read about rounded parameter (default:false), that would round pixels, to reduce problems with ...
1
vote
2answers
2k views

Xcode, iphone - Make image animation move in specific direction

I'm creating an animated ball which should move across the screen. I want to make it move towards the center of the screen as if it is attracted by the center. How can I do this?

1 2 3