delay

unexpected delay between splash screen and first view controller

i have a tabbar application. here is my code - (void)applicationDidFinishLaunching:(UIApplication *)application { [application setStatusBarHidden:YES animated:NO]; [self showSplashView]; } - (void)showSplashView { //If i don't use black view it displays white screen thats look so bad... UIView* blackView = [[UIView alloc] initWithFra...

jQuery keyup delay event

Hi, I'm trying to creat special event for jQuery. I want to make controled delay, which will work when user stops fo 0.5s. But I can't use setTimeout. jQuery.event.special.keyupdelay = { add : function(handler, data, namespaces) { var delay = data && data.delay || 100; return function(event) { ...

UIView Animation wont Delay!

I have a simple UIView backgroundColor transition running on its own thread as such: - (void)colorLoop_thread { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; // [self performSelector:@selector(changeColors)]; [self performSelectorOnMainThread:@selector(changeColors) withObject:nil waitUntilDone:NO]; [pool release]; } ...

Using jQuery delay() with separate elements

I want to fake a simple animation on page load by sequentially revealing several pngs, each appearing instantly but with unique, precisely timed delay before the next one. Using the latest version of jQuery (1.4.2 at writing), which provides a delay method. My first (braindead) impulse was: $('#image1').show('fast').delay(800); $('#imag...

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){ if(data.length > 0) { $('#suggestions').show(); $('#autoSuggestionsList').html(data); }else{ $('#suggestions').hide(...

Flash computeSpectrum() unsynchronized with audio

I am using Flash's (CS4, AS3) SoundMixer.computeSpectrum to visualize a DFT of what supposed to be, according to the docs, whatever is currently being played. However, there is a considerable delay between the audio and the visualization (audio comes later). It seems that computeSpectrum captures whatever is on it's way to the buffer, an...

Jquery timeout on each

Hi guys, I'm trying to write a jQuery function to change out href of a link, but I'm not quite sure how to do it. I've implemented a slider, but I have a link which lives outside of the slider (outsideLink) which needs to change as the slider changes. I'm trying to achieve the following: for each link in sliderList get currentLin...

Tell jQuery to ignore clicks during an animation sequence

I'm in the midst of writing a slide show app (click a button, and you slide through a list of images) for jQuery, but I've run into a little bug where it will respond to the click() request even while an animation is happening. I'm using the animate() function already, so that isn't staving off the additional animation requests. Any way...

Delaying emails in PHP to avoid exceeding server limit

Okay, so here's my problem: I have a list of members on a website, and periodically one of the admins my site (who are not very web or tech savvy) will send a newsletter to the memberlist. My current memberlist is well over 800 individuals long. So, I wrote an email script that sends the email to the full memberlist, with the members l...

Introduce Delay after keyReleased() event

So, I'm working with swing and I need to find a clean (non-CPU-hogging-way) to introduce a delay on a text field. Basically, users will enter a number into this field and the keyReleased() event checks that the input fits a few parameters and then assigns the value to a data storage element in the program. If the data is invalid, it di...

C# - Repeating a method call using timers

In a VSTO add-in I'm developing, I need to execute a method with a specific delay. The tricky part is that the method may take anywhere from 0.1 sec to 1 sec to execute. I'm currently using a System.Timers.Timer like this: private Timer tmrRecalc = new Timer(); // tmrRecalc.Interval = 500 milliseconds private void tmrRecal...

Jquery delay on fadeout

I have this code that changes the opacity of the div on hover. $("#navigationcontainer").fadeTo("slow",0.6); $("#navigationcontainer").hover(function(){ $("#navigationcontainer").fadeTo("slow", 1.0); // This sets the opacity to 100% on hover },function(){ $("#navigationcontainer").fadeTo("slow", 0.6); // This sets the opacit...

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? ...

Windows Workflow Foundation 4 (WF4) Delay

I'm working with the the Release Candidate of Visual Studio 2010 using Wf4 to write a new workflow for approving resource requests. In my workflow, I would like for a request to expire after a few days if no approval has been made for the request. We did this in WF 3.5 (Visual Studio 2008) by adding a Delay timer into an EventDrivenAct...

How to execute a function called many times, only once !

Hello, is there a way to execute a function that is called thousand of times only once ? I have a function that adds items in a container of sort, and there is code in there, that updates lists and other windows (GUI staff). So, if i have to add a million items (the number of which is impossible to tell, anyone could call the function ...

mvc redirect after delay

Hi guys, I'm recently new in MVC technology and i'm with a difficult I have a UI to create a user, and when i submit the content and all content is valid i pass a message into Viewdata["INFO"] and return a View called Info with Viewdata Informing than the user was sucefully created. But in this moment i want to Regist a some script th...

SSRS 2008 Resuming from Sleep

Does anyone know a way to prevent SSRS 2008 from sleeping, after not being used for a while (not sure of the time-out) it takes quite a while to wake up, which is causing a timeout issue? ...

Insert wait in VS2008 web test.

Hi everyone, How can I insert time wait value in web test in Visual Studio 2008 test edition? I have recorded a web test that I want to use in Load test. Now I need to put some time delay between pages in web test. Thanks a lot. ...

JQuery delay()-function breaks loop?

I'm trying to fade an element in and out, but with a slight pause in between, it works without the pause, but when I add the pause using the jQuery delay()-function, it just stops after the first fadeOut(); Here's the code: $('#headerimage2').each(function(){ for(i=1;i<50;i++){ $(this).fadeOut(1200).delay(1000).fadeIn(1000).delay(1...

jquery time delay

i used this <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"&gt;&lt;/script&gt; <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"&gt;&lt;/script&gt; <script> $(document).ready(function() { $( "#navigation" ).accordion( "option", "active", -1 ); }); </script> i am devel...