Tagged Questions
The delay tag has no wiki summary.
10
votes
1answer
2k views
Vim display in statusline after delay
Is it possible to have the statusline in Vim be updated so and so long after a given event?
And if so, how does one do that?
9
votes
3answers
2k views
jQuery: append() object, remove() it with delay()
what's wrong with that?
$('body').append("<div class='message success'>Upload successful!</div>");
$('.message').delay(2000).remove();
I want to append a success message to my html ...
9
votes
6answers
9k views
How to call a method after a delay
I want to be able to call the following method after a specified delay.
In objective c there was something like:
[self.performSelectorAfterDelay @selector(DoSomething) withObject:nil afterDelay:5];
...
9
votes
4answers
2k views
delaying actions between keypress in jQuery
How can I delay actions between keypress in jQuery.
For example;
I have something like this
if($(this).val().length > 1){
$.post("stuff.php", {nStr: "" + $(this).val() + ""}, function(data){
...
8
votes
3answers
477 views
Is setTimeout with no delay the same as executing the function instantly?
I am looking at some existing code in a web application. I saw this:
window.setTimeout(function () { ... })
Is this the same as just executing the function content right away?
8
votes
2answers
3k views
jQuery: delay() or timeout with stop()?
$('.file a').live('mouseenter', function() {
$('#download').stop(true, true).fadeIn('fast');
}).live('mouseleave', function() {
$('#download').stop(true, true).fadeOut('fast');
});
i want ...
8
votes
4answers
3k views
jQuery: Can I call delay() between addClass() and such?
Something as simple as:
$("#div").addClass("error").delay(1000).removeClass("error");
doesn't seem to work. What would be the easiest alternative?
7
votes
1answer
976 views
How to show in wpf password box characters for few second?
If the user enter 1985 in the password box,it will be shown .... . How to show letter or number for few seconds and after that change it to bullet? I suppose that this cant be done in the passsword ...
7
votes
4answers
5k views
Eclipse (Galileo) : Why does “Initializing Java Tooling : 59%” take FOREVER?
New to Java and Eclipse. For some reason, the first time I load Eclipse on a given day, it freezes at "Initializing Java Tooling : 59%". Eventually, it gets past this and I can do my work. However, ...
6
votes
2answers
479 views
Time delay estimation between two audio signals
I have two audio recordings of a same signal by 2 different microphones (for example, in a WAV format), but one of them is recorded with delay, for example, several seconds.
It's easy to identify ...
6
votes
1answer
453 views
High delay in RS232 communication on a PXA270
I'm experiencing a long delay (1.5ms - 9.5ms) in a RS232 communication on a PXA270 RISC PC/104. I want to minimize the long delay but I'm a beginner with embedded devices and C++ so I think I'm ...
5
votes
1answer
71 views
How to remove onclick delay and keep the fast scrolling in mobile web application
I am developing a Web application on OS Android using PhoneGap.
For a quick response from the user interface buttons, I use the following solution:
...
5
votes
5answers
124 views
How to create a delay in Swing
I made a blackjack game, and I want the AI player to pause between taking cards. I tried simply using Thread.sleep(x), but that makes it freeze until the AI player is done taking all of his cards. I ...
5
votes
3answers
884 views
Wait before ShellExecute is carried out?
I have a hopefully quick question: Is it possible to delay execution of ShellExecute a little bit?
I have an application with autoupdater. After it downloads all necessary files etc, it renames ...
5
votes
2answers
98 views
Problem with double jQuery delay()
I am messing around with jQuery's AJAX functions and was trying to simulate how a real server would delay the otherwise smooth data requests that I get on local-host.
So I have written code that is ...
5
votes
1answer
679 views
jQuery show/hide - Question about the delay variable
I'm using the following code to show a box when you mouseover a certain div and have set the delay on the fade out but is there some way of cancelling the fadeOut effect if the user goes back on to ...
5
votes
2answers
3k views
How to delay jquery animation?
I can't seem to delay the showing of a div. I want to delay the animation by about 20 seconds is this possible???
$("#microcharcounter").delay(10000).show();
5
votes
1answer
480 views
Shorten the touch delay in a UIScrollView?
I'm looking to shorten the touch delay on a UIScrollView, but I don't want to use setDelaysContentTouches:NO; I still want there to be a slight delay but my users are complaining about it being too ...
5
votes
3answers
2k views
Need microsecond delay in .NET app for throttling UDP multicast transmission rate
I'm writing a UDP multicast client/server pair in C# and I need a delay on the order of 50-100 µsec (microseconds) to throttle the server transmission rate. This helps to avoid significant packet loss ...
5
votes
5answers
4k views
Time delay on click
Can anyone send me javascript code on how I can construct a time delay from the time I click a button on a page to the time the function called by the button click is executed. I am a novice with ...
4
votes
0answers
118 views
Python Queue initialization delay [closed]
have some python code that uses 'multiprocessing' Queues to process some info in permanent separate processes. I measure the time it takes to process the info in each Process.
The weird thing is ...
4
votes
1answer
277 views
Why my images are taking too much time to load?
I've read about the LowProfileImageLoader. It will only load the image when the user can see it and will avoid blocking the UI thread.
I added it and tested on my application. All 25 images are from ...
4
votes
1answer
77 views
Problem with showing/hiding divs
I am trying to show some random images in a div. My HTML code is like this:
<div class="sponsors">
<div id="sponsorsContent">
<div class="spacer"></div>
<div ...
4
votes
1answer
1k views
AudioTrack lag: obtainBuffer timed out
I'm playing WAVs on my Android phone by loading the file and feeding the bytes into AudioTrack.write() via the FileInputStream > BufferedInputStream > DataInputStream method. The audio plays fine and ...
4
votes
2answers
475 views
Android app How to delay your Service start on phone boot
hi
When my app get the ACTION_BOOT_COMPLETED it starts a service.
I would like to delay that for lets say 60sec.
Can i do that in the:
public class StartAtBootServiceReceiver extends ...
4
votes
4answers
198 views
jQuery - Preventing queuing up hover functions from fast mouse movements
This is an issue I seem to keep coming across. If for example I have a drop down navigation menu using a jQuery hover() function and I quickly move my mouse cursor over then off the <li> about ...
4
votes
6answers
509 views
How does one stop a thread without a stop() method?
I have question about the Java threads. Here is my scenario:
I have a thread calling a method that could take while. The thread keeps itself on that method until I get the result. If I send another ...
4
votes
3answers
5k views
jQuery: Fade in delay on Load
I've stumpled on something queite nice, I've wanted to use in some upcoming project.
It's an animated opacity on load, or you can call it fade in.
I wondered if you could link some elements ...
4
votes
4answers
6k views
OnKeyUp JavaScript Time Delay?
Hi Again Masters Of The Web :)
Now, I have got a new stupid question, and I am asking to forgive me. I read everywhere about this solution, but didn't find the one that works for me.
I have got:
...
4
votes
3answers
730 views
Why is my web application seeing latency?
We have an ASP.Net app, that behaves strangely under IIS6. The app itself is straightforward ASP.Net 2.0 Webforms deal, nothing too weird is going on in there (there are couple HTTP Modules in the ...
4
votes
12answers
11k views
Is there an alternative for sleep() in C?
In traditional embedded programming, we will give a delay function like so:
for(i=0;i<255;i++)
for(j=0;j<255;j++);
In the microprocessor's view, is this how the sleep() function works?
Is ...
3
votes
2answers
73 views
Delaying an action for a period of time
I am currently working on a screensaver launcher, but I want to delay the activation of the screensaver for a period of time to ensure the mouse position is still in the position to activate it, to ...
3
votes
1answer
345 views
Arduino custom library error when compiling delay()
I am trying to write an adruino library but keep getting hung up on errors requiring me to include header files. I have run into one that I can't find the header file for. I keep getting the error:
...
3
votes
2answers
146 views
Delay :Hover in CSS3?
Is there a way to delay the :Hover event without using javascript? I know there is a way to delay animations, but I haven't seen anything on delaying the :Hover event.
Edited...
Sorry, I should ...
3
votes
3answers
126 views
Time Delay for operations using WinForm App in c#
I have a problem with a Windows Form Application in C#
Inside This application there is a Tabbed Browser. Now i want that in a loop (where i do some operation to calculate the next url) i could add a ...
3
votes
3answers
52 views
Why can't I delay a remove call with jQuery
I would like for a div to fadeOut and then be removed:
$('#div').delay(1000).fadeOut(300);
$('#div').delay(1300).remove();
Unfortunately, this just directly removes the div, with no delays. Why ...
3
votes
3answers
87 views
How do I intercept method calls in order to delay the execution, group all calls together and execute in java?
Iv'e been attempting to resolve my problem for about a day now, but can't seem to get anywhere. The problem :
I have a java class, ExternalClass which has 30 methods in it.
I also have an interface ...
3
votes
3answers
110 views
jquery replaceWith() and delay() to fadeOut()
I'm trying the following in order to replace existing element with the message and after a short delay fade out the message, but for some reason I cannot get it to work:
...
3
votes
1answer
136 views
Why does it take so long to retrieve the frontmost process via AppleScript?
I recently wrote a utility program called WindowTiler which moves around the currently focused window using global shortcuts. I move around the window via AppleScript and use the following script to ...
3
votes
3answers
114 views
How to change a textview text with a delay without using threads in android?
I need to sequentially show a changing text with 1 second or half a second between changes. How can i achieve this without using threads in android?
3
votes
2answers
59 views
Making delay() work with a plugin
I have a small plugin for setting the height of an element, based on several variable factors. On the page load, I wanted a delay in order to prevent the height from being set for a number of seconds. ...
3
votes
2answers
361 views
Playing audio is too slow in Android
I'm having a problem with Android's MediaPlayer in that it is too slow when calling the prepare method. I've tried to simply keep a Vector of the few MediaPlayer objects (with their preloaded data ...
3
votes
1answer
67 views
ASP.Net delay, how can I tell if it is the client or the server?
I've got a generic handler on a site. When I go directly to it it responds immediately. When I try to get to it from a .Net program, there is a long (10 second give or take) pause before the server ...
3
votes
3answers
108 views
Adding delay between separately started animations
I have an array with image URLs I add to a page as img tags. I add them hidden and fade them in when they are loaded. This works, but I'd like to add a bit of delay between each of them so it's not so ...
3
votes
6answers
232 views
How can I make this jQuery faster than what I have?
Currently, I am using this script for a type of "tab" system. When one tab is clicked, it hides all the others. They are all div's. But right now, I don't think it's fading fast enough before the ...
3
votes
3answers
529 views
How can I trigger click after a short delay in my html button?
There is a technique called duell and it is used for accessibility reasons in websites. It is used from people that can only move a device (i.e mouse.) and it works like this. On hover effect hovering ...
3
votes
6answers
1k views
Need to create a 30 second delay in Visual Basic
How can I create a 30 second delay in visual basic. I simply want VB to wait 30 seconds before moving on to the next line of code!!
Thanks,
--Steve--
3
votes
4answers
517 views
How to delay an alert?
I'm trying to delay an alert but can't get it to work, it always pops up when #foo is hovered over and is increasing in size:
$('#foo').hover(function() {
$(this).animate({width :'400px'}, 'slow');
...
3
votes
1answer
343 views
How to set a Delay on imageSwitcher image change (Android)
I'm working on a menu for my app that is made of a Gallery and sliding it I select a different background image.
gallery.setOnItemSelectedListener(new Gallery.OnItemSelectedListener() {
@Override
...
3
votes
5answers
964 views
javascript setTimeout or jquery delay - neither are working for me
I have a div like this
<div id="sale">
........
</div>
and I tried to use both
$('#sale').delay(3000).slideDown(500);
and
setTimeout(sale(), 3000);
function sale() {
...