Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
364 views

`goto` in Python

I must use goto in Python. I read this but my Python implementation (CPython 2.7.1 on Mac) does not have this module, so it doesn't seem to be portable. It should at least work in all Python ...
13
votes
6answers
10k views

Jump to function definition in vim

How can i jump to to a function definition using VIM? For example with Visual Assist i can type ALT+g under a function and it opens a context menu listing the files with definitions. How can i do ...
12
votes
3answers
970 views

Xcode Developer Documentation Link Hover Jumps To Top

I don't know how I got into this state, but the Xcode documentation window has been exhibiting this strange behavior of "jumping to top" whenever I hover over a link in one of the doc files. For ...
5
votes
3answers
187 views

Jumping in jQuery width animation

I'm having trouble working out why my animation is jumping. Any ideas? http://jsfiddle.net/9F5DK/5/ jQuery(document).ready(function() { // Animate the single page nav ...
5
votes
3answers
17k views

Get current scroll position and pass it as a variable with a link?

I'll be honest, I'm way out of my depth here. I've created a pagination system where you click on a link it reloads the page and a certain number of list items are shown in an unordered list. When you ...
4
votes
2answers
259 views

Visual Studio 2008/2010 SP1, how to jump back out of a catch?

I am using the debugger (vs2008). Once I've stepped into a catch statement, I would like to know if there is any way to set the execution cursor back to the beginning of the try. Just dragging it ...
3
votes
2answers
42 views

Visual Studio debug, jump to end of method, or to calling method

I fairly often get to a state in VS (C#) debug breakpoint or exception where I want to exit out of several levels of method to a caller a few levels up the stack. I can then patch up/retry/etc. In ...
3
votes
2answers
102 views

Css image viewer is moving page on click

When I click in the tabs at the side, it changes the picture, which is what I want it to do, but it also moves the page so the view is at the top. I noticed this only happened when there was page ...
3
votes
3answers
387 views

Assembly Language: printing lowercase to uppercase

I have an assignment that is described like so: - Reads printable characters (20h-7Fh) from the keyboard without echoing - Uppercase letters are printed to display - Lowercase letters are converted ...
3
votes
4answers
191 views

A player-falling system (basically gravity)

I am making a game that is similar to Doodle Jump, getting your player as high as possible. Now, I got my player working, and moving. But, the problem is, I don't have gravity, or anything that will ...
3
votes
2answers
648 views

Relative vs Absolute jmp in Assembly

I was wondering about the following. I've noticed when writing assembly language that IA32 is designed in such a way as to promote the use of relative jumps ie jump a displacement amount of bytes vs ...
3
votes
6answers
586 views

jnz after xor?

After using IDA Pro to disassemble a x86 dll, I found this code (Comments added by me in pusedo-c code. I hope they're correct): test ebx, ebx ; if (ebx == false) jz short loc_6385A34B ...
3
votes
3answers
581 views

difference in jump statements in assembly programming

how do you decide when do you use which jump statement...statements such as JG JNLE JNC can do the same job how do u diffrentiate them?
3
votes
5answers
8k views

Assembly language je jump function

I am trying to find online the usage of the assembly language function "je". I read that je means jump if equal and that is exactly what I want. What is the actual usage of this function, or in other ...
2
votes
2answers
148 views

Jump instruction in MIPS Assembly

Here is some MIPS assembly code I wrote to test the jump instruction: addi $a0, $0, 1 j next next: j skip1 add $a0, $a0, $a0 skip1: j skip2: add $a0, $a0, $a0 add $a0, $a0, $a0 skip2: j skip3 loop: ...
2
votes
1answer
101 views

Polymorphism Without Indirect Jumps?

When I learned MIPS assembly a few months ago, a question popped into my head that I forgot to ask then, so I thought I'd ask it now: Is it possible to implement polymorphism without indirect jump ...
2
votes
5answers
125 views

Programming without jumps

I try to find articles, books or anything about programming without jumps (x86 arch). I know that generaly it is impossible but i try to avoid jumps but gcc even with inline func uses jumps maaaany ...
2
votes
5answers
585 views

Jump to function declaration in php

HI, I have the following ide's for php Dreamweaver php-Eclipse Textpad I wish to jump to a function's definition which is located in another file which is not yet open. How could I do that. I am ...
2
votes
1answer
115 views

Avoiding Javascript Jumping Elements in Dynamic Forms

I'm trying to use javascript to code up a dynamic form, where elements are shown or hidden based on whether or not checkboxes are selected. For the most part, it works okay. I defined methods that ...
2
votes
4answers
3k views

The Math of a Jump in a 2D game

I have been all around with this question and I can't find the correct answer! So, behold, the description of my question: I'm working in J2ME, I have my gameloop that do the following: public void ...
1
vote
2answers
45 views

Jumping to anchors in JSP

When jumping to anchors on a JSP, HTML anchors do not work. Eg, something like <a href="#name">Link</a> ... <div id="name"></div> fails because the server actually looks ...
1
vote
2answers
87 views

How do I jump to a definition (function definitions, struct definitions, …) in Notepad++

I usually use Notepad++ to read open source, but I don't know how to jump to a definition or jump back previous position. How do I do that?
1
vote
1answer
105 views

MIPS branch delay slot and bnez using same register

I have following asm MIPS code: 80031DB8 bnez $v0, loc_80031F58 80031DBC move $v0, $zero as far as I understand "branch not equal zero" will never jump to loc_80031F58, because v0 = 0, is ...
1
vote
0answers
41 views

Help with <page maintainScrollPosition=“true”></page> in ASP.NET v4 - Page Jump

I am in the process of developing a website using ASP.NET v4.0.30319 in visual web developer. After spending countless hours attempting to get the maintainScrollPosition to work ANYWHERE I would love ...
1
vote
2answers
85 views

How to get jQuery to erase and/or append a value to the end of a URL variable?

Well, I'll start out with the current project (of sorts). I'm currently designing a custom Tumblr theme for myself. Within the theme, I have included a script where when a trigger button is clicked, a ...
1
vote
1answer
309 views

ScrollView Jumps into EditText

When I start my App, it automatically jumps into the first "EditText"-Box. I built in a Scroll Bar. And when I remove the Scroll Bar, it doesn't jump into the "EditText"-Box. Why does it jump in ...
1
vote
1answer
198 views

How to jump to counterpart definition of current method in Xcode4 with shortcut key?

If a class defined as like this, // A.h @interface A - (void)m1; // I want to jumpt to here directly. @end // A.m @implementation - (void)m1 { // Caret here. } @end I editor caret is places in ...
1
vote
1answer
155 views

How can I jump to an item of a list view in android

Hi I have an application where I have one edittext. And also I have one listview that is populated with 100 items and can show only 5 items at a time. I enter a number (n) in the Edittext and i want ...
1
vote
1answer
209 views

Java Program using Loops and Jump Statement

I need to create a program that will ask a password three times. But at the third time, having incorrect password, it will just ask for your name. We are asked to use loops on this and jump ...
1
vote
2answers
160 views

Jump into the middle of instruction - in IA-32

why IA-32 enable us to jump into the middle of instruction? how can I use this architectonic characteristic for optimization when I'm writing in Assembler? (beside the obvious of cases we like to ...
1
vote
1answer
254 views

css3 simple animate with transform and transition, a sudden jump at conclusion?

I have a simple animation like this: .elem:hover { -webkit-transform: scale(1.3); -webkit-transition: all .4s; } When I hover, it scales correctly. But just when it was about to finish, it suddenly ...
1
vote
3answers
319 views

Using x86 style jump table in C

I am trying to do a jump table in C like this cmp eax, dword 3 ;max number ja invalid ;default jmp [eax*4+jumptable] ...
1
vote
1answer
524 views

page jump in Chrome and Opera with jquery

I have a content slider script that works fine for me in FF, IE and Safari, but not in Chrome and Opera. When I click on the link in the content navigation, the page jumps up to the next parent div. ...
1
vote
1answer
188 views

Jump with Ctrl-O/I doesn't work in my Vim

I use GVim 7.2 on Windows XP. In my installation some of the jump commands don't work, such as Ctrl-O and Ctrl-I, whereas :jump and Ctrl-T work. What might be the reason for this? I checked my ...
1
vote
3answers
690 views

Why does this line 'jump' when I call slideDown?

Since there's a lot of code, I won't post it here. Rather, you can find it all here. That way you can play around with it and run it. The problem happens when the 'Drop me down!' link is clicked. The ...
1
vote
0answers
226 views

Help modify a javascript code to perform a div scroll

The code below uses javascript to smoothly scroll content in a div. I don't need the smooth scrolling action, and only need the onclick action for the buttons. I would like to use this code so that if ...
1
vote
2answers
687 views

jQuery - Reload page after following jump link

I'm creating a slideshow effect using hidden div's. Once a thumbnail is clicked, the corresponding div appears in a window and the other divs are hidden. However, I also need the page to reload. I ...
1
vote
1answer
330 views

Assembler and Jump instruction (how does it work)

How does jump works ? Does it set the IP register or does it increase it ?? Is it relative or absolute change of place were we execute the code?
1
vote
1answer
501 views

Assembly: Jump from one section to another

In x86 assembly, how can I perform an unconditional jump from one section another? Eg: .section .text main: ... jmp here ... .section .another here: ... I guess this is a ...
1
vote
1answer
735 views

Why does JDialog 'jump' on setLocationRelativeTo()?

Have a class that extends JDialog. It's initialized entirely on EDT (just in case). Now, public PropsDialog (JFrame parentFrame) { super(parentFrame); // boring pack(); ...
0
votes
1answer
16 views

MIPS range of jump instruction

I am reading 'Computer Organization & Design' by Patterson book and got interested in MIPS. I have doubts in finding the range of a jump/branch instruction. Also in determining the number of ...
0
votes
1answer
17 views

jCarousel Lite - How can I link to a position in the carousel?

I have page with a jCarousel Lite carousel with some text and now I need to make a link on another page to a specific position in the carousel. How can I jump to this position?
0
votes
3answers
48 views

Alternatives of goto and jump commands

I am working on a language where there is not any goto,jump function. For example, Matlab. Can you please help me on how to avoid using it? Is there any simple trick solving my problem?
0
votes
0answers
89 views

jquery fixed div jumps on scroll-up(transitioning between relative to fixed position)

this my first time....my problem is with changing the div from normal position to fixed position based on the windows scroll-bar movement...i was able to do it using this code ...
0
votes
2answers
89 views

jQuery DIV slideDown() Resize Jump

This seems to be similar to the jQuery slideDown Snap Back Issue, however slightly different. You can visit this site and browse through the "Pics" section to see the issue. If you click on an ...
0
votes
2answers
67 views

2D Platform Ai Jump

I'm working on a platform game at the moment. I have a problem with AI jump movement. Path is already found with complete walk and jump points. However jump action is problematic. on example image: ...
0
votes
1answer
167 views

Java 2D Platformer - Some Logic/Physics Quirks

I am making a Java 2d platformer, and am using threads, so far I have 4 classes: Main.java -Handles the main JFrame Board.java -Where most of the game logic is -Using thread that ...
0
votes
1answer
54 views

Google Chrome jumps to bottom of the page on <iframe>

I got such code at the end of the website for a pre-loader: <iframe id="hidden_target" name="hidden_target" src="#" style="width:0;height:0;border:0px solid #fff;"></iframe> It works ...
0
votes
3answers
96 views

Bash - writing function definition in script after first call (as a GOTO/jump problematics)

(Hm... "Oops! Your question couldn't be submitted because: please do not use these words in titles: 'problem'" - but I want to say "as a GOTO/jump problem", not "problem with..."?) I basically want ...
0
votes
1answer
130 views

IE9 Bug div hopse on hover an anchor tag

I have an issue with my footer block in IE9 Browser which hopse once when i hover an a-Tag. my css from footer and anchor: footer{ margin:0 0 0 210px; /* 210 */ padding:35px 0 100px 0; ...

1 2