Questions tagged [timedelay]
225 questions
0
votes
1 answer
jQuery UI Tooltip delayed loading
When hovering over a link, I'd like to wait at least a second before showing a tooltip with dynamically loaded tooltip.
What I've created is the follow jQuery Code:
$(document).ready(function () {
$("div#galleries ul li:not(.active) a").tooltip({
…

DominikAmon
- 892
- 1
- 14
- 26
0
votes
2 answers
Time Delay in VBScript
i want to introduce a 3 hour delay between two consecutive lines in my VB script code.
I am using the following code snippet for this:
WScript.Sleep 10800000
But I think the code is stopping for a long time, much more than 3 hours. I used 10800000…

user2862496
- 227
- 5
- 12
- 21
0
votes
3 answers
How to add time delay in java code in android
I am making an app and i want to add time delay to my code to make to delay an action .
Is there something that you can set the delay in millis ?
Please help.
I want to do something like :
for(int i=1;i<100;i++){
Delay(1000); // I want to add…

mremremre1
- 1,036
- 3
- 16
- 34
0
votes
1 answer
Adding Time Delay to Character Movement
I've been looking to make an animation using ActionScript 3.0 in Adobe Flash Professional where a character (John) can be moved by the viewer using the arrow keys. I've made two sprites, John (the default standing character) and JohnLeg (the…
0
votes
2 answers
Time delay between futures in Play framework 2.1
I have a number of consuming works that are fully asynchronous and started roughly at the same time. I mean something like this:
for (i <- 1 to n) {
Future { startWork("work" + i) }
}
But I need to add some time lag to start these works…

krispo
- 526
- 1
- 4
- 11
0
votes
3 answers
Time delay on element with fadeToggle()?
What's the best way to set a time delay on an element for it to display for a certain time, but with a fade-in and fade-out effect upon appearing and disappearing? Can this be done with the fadeToggle() function in jQuery?
The example of my current…

Charles
- 167
- 1
- 5
- 15
0
votes
2 answers
(Game Programming) How to add delay between attacks?
I'm making a game where you control your character with the arrow keys and attack with 'A'. My problem is that the attack has no delay so when I hold 'A' the enemy's hp depletes rapidly. How do I add delay? I tried adding delay, here is my code:…

Zik
- 1,556
- 7
- 22
- 31
0
votes
1 answer
How to force delays on starting each thread while using Grid?
I try to run in paralel TestSuites using Grid. This is part of my pom.xml.
How can I force 2sec delays between threads startings? Here are 4 threads max and only 3 Suites to run, so all 3 of them are started at the same time.
After starting node…

Invy
- 1,058
- 1
- 10
- 12
0
votes
1 answer
Time-Delayed MySQL "Update" for More Realistic Tally of Online Video Views
I'm creating a video embed page for a real estate site, where a user can go to watch a video tour of a given home. There is no other reason to visit that particular page, so I figured that I could use a simple MySQL Update to a "video view tally"…

jasonmklug
- 1,584
- 2
- 15
- 28
-1
votes
1 answer
Time delay in unity even when app not active - Calendar app in unity
so I'm making a calendar app in unity, but not just any calendar.. it's a custom calendar app for my friend because he doesn't like georgian, anyway my question is:
I have Date.TimeNow.Hour set to get the current hour in the device and i did the…

Younis
- 13
- 1
-1
votes
2 answers
Calculating delay in 8085 microprocessor
Calculate the delay calculated by executing the following code by 8085 microprocessor
having a clock frequency of 5 MHz
MVI C,08
Loop2: MVI B,09
Loop1 :DCR B
JNZ loop1
DCR C
JNZ loop2
HLT
I am new to microprocessor and I am really finding little…

Dakush Salve
- 7
- 2
-1
votes
2 answers
How do I show data in Textview for a 2 second (android Studio)?
I want to show data in Textview for 2 second time.So I recieved data from arduino that not have a delay between I use serialwrite.I use InputStream and DatainputStream for recieved data.It's still have a problem when data show in textview.It will…
-1
votes
3 answers
Set a String to TextView and wait for a while and set another String to same TextView
I want to set "First" word to TextView (textTT) and wait for a while set to "Second" to same TextView
but result is directly set "second" to TextView
but I need firstly set "First". How can I overcome this?
<>
private void applicationTest() {
…

OmerK
- 1
- 1
-1
votes
1 answer
AVR Countdown timer
I am trying to make a countdown timer using an ATmega32 clocked at 8 MHz.
I want to use the ATmega timer to start a countdown for 8 minutes when the switch is pressed and the output should turn on for 8 minutes and when the countdown hits zero the…

user9728254
- 1
- 3
-1
votes
3 answers
how to get varaiable if only have more than 3 letters javascript
var result="stackoverflow";
var string="22342st";
if(more than 3 letters)
{
var new=data;
}
1)how I can get variable if only have more than
using match() (function ) in javascript
2)what if I do getting variable in for time delay
some (because…

prabhakaran7
- 259
- 4
- 20