Quote:
Originally Posted by baw
I use Transmission.
I prefer the small footprint of Transmission, but Charter has begun packet filtering in my area, so encryption is an abs…
I've been using this version for a while and all has been fine. However, since the 10.4.6 update I've noticed after quitting an azureus program still runs (for ever too!)
Does an…
Got a Rev B. iMac G5 20". It froze today while in Safari. I powered it off after the fan just kicked in full blast.
I unplugged everything from it except the keyboard and mouse. …
Can you boot it up in safe mode?
Hold down the shift key right after you hear the startup tone, and let go after you see the gray screen with the Apple logo. If you have to enter …
Quote:
Originally Posted by volcano
Can you boot it up in safe mode?
Hold down the shift key right after you hear the startup tone, and let go after you see the gray screen wit…
has anyone else got a tip on what could fix this imac g5 (rev.b)??
i have same problem as original poster - the imac froze with dark screen, after forced shutdown it doesn't boot b…
My first(OK my second after doing what you have tried) thing is to get a hold of Apple. Online support will create a case # for you while you try to get a fix. Telephone support m…
... to a local apple tech shop here in berlin.
i couldn't work out what else to do, despite my nearly 2 decades of mac d-i-y usage
like many of us of course, my biggest concern is…
hello,
i replaced my ipods battery the other night and let it charge overnight. the next morning i went to listen to it, selected the song and hit play. before it would actually pl…
Hi,
Let's say I have the following:
code:
NSProgressIndicator* progress; (assume it's initialized and visible etc)
for (int i = 0; i < 5; ++i) {
[progress setDoubleValue: …
When you update the value of a progress indicator, it's marked as needing display the next time through the runloop (with setNeedsDisplay: YES). Your code, however, never returns …
Quote:
Originally Posted by smeger
When you update the value of a progress indicator, it's marked as needing display the next time through the runloop (with setNeedsDisplay: YES…
He already said that, for some reason, an NSTimer is really impractical for what he's doing. I'd think that indicates a problem with the program's structure, but y'know, whatever. …
Thanks for the responses. I was hoping to avoid pthreads as it's a bit overkill. As for some people who are unhappy with my design I can elaborate as to why it's uncomfortable to…
I don't think that would work. If I declared the array on the stack and then passed it into the user info of the timer wouldn't it already be popped off the stack by the time the …
Yeah, it would be off the stack; that's why I suggested an NSDictionary. Actually, the userInfo object is declared to be an id, so it should be an Objective-C object, anyway (it's …