Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
5answers
50k views

How to pause / sleep thread or process in Android?

I want to make a pause between two lines of code, Let me explain a bit : -> the user clicks a button (a card in fact) and I show it by changing the background of this button : ...
14
votes
1answer
467 views

.NET Garbage Collection and Native Threads

It’s fairly well documented that when .NET's automatic garbage collector runs, it will temporarily pause all running managed threads associated with the application domain. What I haven't been able to ...
13
votes
3answers
582 views

Can you repro this 64-bit .NET 4 GC bug?

Update: Microsoft have now reproduced the bug and are working on a fix. Whilst evaluating the viability of the .NET platform for low latency software development, we have discovered a serious bug in ...
10
votes
3answers
471 views

Sending pause to dialer

In a similar vein to Sending Pause and DTMF input in android, I'm trying to send the pause character "," to the dialer. This works on HTC Sense phones and even on the Xoom, but not on "stock ...
10
votes
1answer
378 views

Delphi2007: Crash when continuing paused app in debugger

We often experience crashes when starting an app in the D2007 debugger, pausing it and continuing it (by pressing F9). E.g create a VCL app drop a TButton and a TEdit on the main form add this ...
7
votes
1answer
4k views

How do you pause an R script / animation?

How do you pause an R script for a specified number of seconds or miliseconds? The intended purpose is for self-timed animations. The desired solution works without asking for user input.
6
votes
2answers
428 views

Pausing a process?

Is there a way to pause a process (running from an executable) so that it stops the cpu load while it's paused, and waits till it's unpaused to go on with its work? Possibly in python, or in some way ...
6
votes
2answers
3k views

jQuery Looping Animation pauses each time. How to keep from pausing?

I am trying to cause a block to "pulsate" between 100% opacity and some partially transparent opacity. I want to do this with the functionality that is built into the jQuery core, if possible. I would ...
5
votes
1answer
184 views

pausing and resuming child activities in ActivityGroup

I am making a first try att creating a custom ActivityGroup. I am getting everything working except the activity lifecycle methods of the groups child activities. How can i call the onResume/onPause ...
4
votes
6answers
110 views

Pausing a for loop in java

Is there a way to pause a for loop in java? So is there a way to only go forward one iteration when prompted? I read this http://answers.yahoo.com/question/index?qid=20100212201605AAazS73 and the ...
4
votes
1answer
267 views

Detect headset button click on iPhone SDK

Is there a way to detect the headset's play/pause button click? I managed to detect the volume buttons clicks using: AudioSessionAddPropertyListener( ...
4
votes
2answers
127 views

iPhone Game pause and resume, is it worth implementing?

Allow me to describe my situation: I want to develop a game, that is round-base, and pay-to-play. That means you pay one coin, for one round of game, like Pinball etc. The problem is, when there is ...
4
votes
2answers
181 views

Problem in pausing/resuming Timer

I have a maze game. After you press Enter, you can enter a cheat code, also, the timer will pause. But after entering the code, my timer resumes but it decrements 3x each second. Here's the condition ...
4
votes
1answer
128 views

Why does my script stop executing commands after calling an .EXE?

Here is the relevant code from a Python script where a few commands are executed to copy an executable file and then execute it: exe_file_path = os.getcwd() + r'\name_of_executable.exe' temp_loc = ...
4
votes
5answers
1k views

How to add pause between each iteration of jQuery .each()?

I'm grabbing an array of jQuery objects and then via .each() modifying each individual jquery with in the array. In this case I'm updated the class names to trigger a -webkit-transition-property to ...
4
votes
1answer
472 views

Android application will Pause and Resume the music of other music player app, is that possible in Android?

I want to wright an Android application. Where I am playing different mp3 files With "MediaPlayer" class. Now User Is playing his/her own music with a default music application. I want to pause the ...
4
votes
1answer
2k views

How to know when the MPMoviePlayerController has been paused in iPhone?

I want to add an overlay view for my video when the video is paused by the user. Is there any way to get the pause notification from MPMoviePlayerController? According to Apple Doc, there should be ...
4
votes
1answer
2k views

Javascript pause problem in a loop, ajax, jquery

Hi I'm trying to create a simple animation. Long story short, I've got a list of 20 small divs and one outside div. I want to display five small divs within a large div at the time. Ideally, I would ...
4
votes
2answers
2k views

Cocos2D Director Pause/Resume Issue

I am trying to play a .gif animation in cocos2D. For this i am using the library glgif. Now, to display the animation i am pausing the Director, adding a subview to show the animation and after the ...
3
votes
2answers
135 views

Make a single if-statement wait before executing in Java?

I am trying to make Java wait for 1 second before evaluating an if statement to see if it should change a boolean. I have it set up where if Rectangle r intersects Rectangle y, a boolean "Intersect" ...
3
votes
1answer
257 views

Why is there a time lag for document.write of script tag ? And why is the script tag execution delayed?

In my code, I created 5 iframes with script tag in them to get responses from server. we need to do this in parallel. Also because of the cross-domain issues, we did not choose Ajax tech, just ...
3
votes
1answer
607 views

Android Animation pause and play problem

I have created an animation using the following code. private AnimationSet rootSet = new AnimationSet(true); private int xstart=258; private int ystart=146; for(; k<points.length; k++) { ...
3
votes
0answers
387 views

Find out what MediaPlayer is playing and stop it onPause or onStop?

Does anyone know a good way to find out what MediaPlayer is currently playing and stop/pause it using the onStop or onPause override? Or just stop MediaPlayer when the app is in the background? I have ...
3
votes
3answers
132 views

How can I be sure I'm not losing signals when using pause()?

I'm writing a program that uses fork to create child processes and count them when they're done. How can I be sure I'm not losing signals? what will happen if a child sends the signal while the main ...
3
votes
1answer
405 views

Is there a way to pause (or mute) the default music player from within my Android app?

I have an app that has the capability to play audio through a mono (SCO) headset as well as a Stereo BT headset. When playing through SCO, I use ...
3
votes
2answers
561 views

C# : How to pause the thread and continue when some event occur?

How to pause the thread and continue when some event occur? I want the thread continue when the button click. Someone tell that thread.suspend is not the proper way to pause the thread. Then another ...
3
votes
2answers
519 views

What is the difference between scheduler's standby() and pauseAll()?

I'm using Quartz Scheduler v.1.8.0. What's the difference between scheduler.standby() and scheduler.pauseAll()? standby() - Temporarily halts the Scheduler's firing of Triggers. ...
3
votes
4answers
659 views

C# .NET: how to pause and resume a program execution on a keypress?

it's a .NET non GUI application. It is specified as a console application, but the console is not really used. what the application does is GUI testing of other applications
3
votes
5answers
187 views

how to implement a step-by-step button in c#?

I implemented an algorithm in c# and I want to make a gui for it, in my gui i want to put a button that with any click the gui shows a step forward in algorithm, so i think i need to put something ...
3
votes
2answers
2k views

Using html5 video events on the iPhone, how do I tell “Done” button click from a simple pause?

I've got a web page for the iPhone that uses the HTML5 video tags. On the iPhone, such embedded videos are played in the native player. I wanted to notice when the video had ended and when the user ...
3
votes
2answers
2k views

Is it possible to pause a playing SWF file in Adobe Flex? How?

I just wanna know if it is possible to pause a playing SWF file in adobe flex? I have an SWF Loader and it plays my SWF file however, it does not have any capability (or built in function) that pauses ...
3
votes
1answer
148 views

Pause-able download

I have an Apache server running which hosts a php web application. Also, its provides provisions for downloading a file of size around 900MB from it. However, while testing the application I found out ...
3
votes
5answers
509 views

C++ - Totally suspend windows application

I am developing a simple WinAPI application and started from writing my own assertion system. I have a macro defined like ASSERT(X) which would make pretty the same thing as assert(X) does, but with ...
3
votes
2answers
1k views

C# How to pause/suspend a thread then continue it?

I am making an application in C# which uses a winform as the GUI and a separate thread which is running in the background automatically changing things. Ex: public void run() { while(true) ...
3
votes
2answers
363 views

Pausing Game when someone calls/SMS you

I want to implement this function on my apps but i cant seem to figure out how to use this line of codes. - (void)applicationWillResignActive:(UIApplication *)application { //our app is going to ...
3
votes
3answers
1k views

How to make Background thread pause and then continue on button click?

I have a Windows Form and a class with two simple methods that run recursively in a nondeterministic way (meaning that it's unknown which recursion will be called, both can call the other)... Now, ...
3
votes
3answers
127 views

How can I solve “world writable” issues with modules uploaded to PAUSE (CPAN) from Win32?

Does anyone one know how not to get the "world writables" fail message from PAUSE when I upload a module to PAUSE? I packed it with make dist on Windows. I haven't got access to a Linux box at work ...
3
votes
9answers
10k views

Is there a decent wait function in C++?

One of the first things I learned in C++ was that #include<iostream> int main() { std::cout<<"Hello, World!\n"; return 0; } would simply appear and disappear extremely quickly ...
3
votes
3answers
5k views

How to pause / resume any external process under Windows?

i am looking for different ways to pause and resume programmatically a particular process via his process ID under Windows XP. http://www.codeproject.com/KB/threads/pausep.aspx does it with ...
2
votes
5answers
102 views

How to pause the code until I want? [something like Thread.Sleep(int);]

I think the best way to make my point is to give you these examples: Console.ReadLine(); Process.WaitForExit(); These functions will pause the application (without freezing the UI). I need ...
2
votes
3answers
60 views

Java pause during a loop

I am running a for loop and at each iteration, I execute a SwingWorker in background (who lasts around 5 minutes). I have an attribute who is the number of Worker running in background at the same ...
2
votes
0answers
91 views

How pause/resume FSCopyObjectAsync

There is a way to cancel FSCopyObjectAsync with calling FSFileOperationCancel(fileOp) by checking BOOL cancelClicked in statusCallback, but is there a way to pause/resume it by another flag? main{ ...
2
votes
1answer
30 views

Java - Pause initComponents from running?

I am building a JApplet in NetBeans. When the application is initially ran it needs to download some files onto local PC first for it to properly work. Once it is done downloading these files than the ...
2
votes
2answers
169 views

Pause jquery animation on mouseover

I am using a jquery script to fade in and out a bunch of <p>....</p> tags which works fine but I need the animation to pause on mouseover and resume on mouse out! Is there any method I can ...
2
votes
1answer
131 views

How to pause animation along with the activity?

need all your suggestions for this. I am implementing some basic animations in my activity . Now i am in a situation where i want to pause the activity along with the animations when i started the ...
2
votes
2answers
58 views

Can concurrent collection be run in Young Generation for minor collection

Or in other words, is there any algorithm like 'concurrent copy algorithm' which can help in low pause for minor collections?
2
votes
1answer
457 views

How to stop and play jquery script

I'm using slidesjs to create 5 different slideshows/galleries on a single-page site. They all have the class '.slides' and have their own ID. I do not want any of the slideshows to play until a play ...
2
votes
2answers
306 views

Is there pause available in mediarecorder class

Is there a way to pause the recording and start after a while.
2
votes
3answers
256 views

How do I fix my “self-deleting” .exe from deleting itself early?

For the sake of testing and personal proof of concept, I have a .exe file that only outputs a simple string and then calls a system pause (literally system("pause") in C++). I have a simple Python ...
2
votes
3answers
1k views

Andengine onScreen Pause button

I want to create an onscreen pause button in andengine What I do now is add an sprite and when I touch it, I do engine.stop(), the problem with this, is that the engine doesn't handle more ...

1 2 3 4 5 6