roadbloc
Apr 9, 07:43 AM
I don't see a massive problem... but I guess this is just typical Apple.
weisjt
Apr 10, 06:48 AM
i cant wait to see how the silicon will help with reception issues.
bmorris
Jan 17, 09:48 PM
I'm a teacher who has brought his class every year to MacWorld. We always come on Friday. I don't think that any booths close down on Friday until the late afternoon. My kids like the fact that vendors are more willing to give away free stuff on Fridays.
So...I don't think it would be a waste of your time.
where do u teach?!
So...I don't think it would be a waste of your time.
where do u teach?!
paola105
Oct 19, 09:11 AM
I really want to but I don't think I will.
_bnkr612
Sep 30, 10:34 AM
Is there a college near by? Check to see if they offer any web classes and walk in there one day and say you are just there for the trial version of 30 days. They will understand. On day 28.5, take a copy of dreamweaver from one of their putes.
It should work.
It should work.
ActionableMango
Apr 25, 07:13 PM
If you order quickly you can try the following Superbiiz coupon code for 15% off, but it may have already expired.
RABBIT15
RABBIT15
alphaod
Oct 17, 04:46 PM
I usually go out with my camera and walk around taking pictures. Then I crop and make them into wallpapers.
ktbubster
Jun 23, 11:47 PM
added custom dying or painting to the cases - prices are in addition to the case pieces - and one rubber foot has been sold! 1 regular left and a few for the batter corner still.
Bond007
Jun 28, 11:21 PM
Hi all. I seem to be having a few problems with my powermac. Its a 1ghz with 1g of ram and the comp is about 4 months old.
Heres my problems...
iTunes: Whenever I use the visualizer it studders every 6 or so seconds. It never did this when I first got it, this problem just accured about a month ago. I thought it would just go away, but no such luck. Any idea's?
Microphone: I tried USB microphone, i tried the regular mic jack in the back of the comp, and nothing. The comp wont pick it up at all. I've been wanting to use my mic with iChat A/v. This problem is also hapening on my other G4. So I was wondering if maybe there was a setting or something I might be missing? Or is the only option I have the new camera mic from apple for 150.00.???
Any help would be great. Thanks!!!
-007
:cool:
Heres my problems...
iTunes: Whenever I use the visualizer it studders every 6 or so seconds. It never did this when I first got it, this problem just accured about a month ago. I thought it would just go away, but no such luck. Any idea's?
Microphone: I tried USB microphone, i tried the regular mic jack in the back of the comp, and nothing. The comp wont pick it up at all. I've been wanting to use my mic with iChat A/v. This problem is also hapening on my other G4. So I was wondering if maybe there was a setting or something I might be missing? Or is the only option I have the new camera mic from apple for 150.00.???
Any help would be great. Thanks!!!
-007
:cool:
nec207
Apr 15, 03:26 AM
I'm trying to fix 5 year old Macbook for some one .The problem is hard-drive space used up but the person has very little pictures ,music and work on the computer.
Some how only 7GB free of the 80GB hard-drive.
There is a similar thread http://forums.macrumors.com/showthread.php?t=672477
Thread never got resolved.
well normally when I'm trying fix the same problem on PC running windows it is do to.
1.Bad sector
2.swap file /page file
3.hidden OS system support files
4.malware
5.windows files to keep OS running and windows needs lots of files and I mean lots, lots and lots of files!!!
But do not have that much experience here. What could the problem be.
Some how only 7GB free of the 80GB hard-drive.
There is a similar thread http://forums.macrumors.com/showthread.php?t=672477
Thread never got resolved.
well normally when I'm trying fix the same problem on PC running windows it is do to.
1.Bad sector
2.swap file /page file
3.hidden OS system support files
4.malware
5.windows files to keep OS running and windows needs lots of files and I mean lots, lots and lots of files!!!
But do not have that much experience here. What could the problem be.
zildjansg
Oct 24, 07:54 PM
nice!
-aggie-
May 3, 05:27 PM
For what it is worth, I have to say I have always gone with crucial and had no issues
I second this. Crucial just works.
I second this. Crucial just works.
iRach
May 2, 12:12 PM
Is that a brushed metal back I spy? I much prefer the coloured backs :( I like the shape though.
shenfrey
May 6, 11:40 AM
honestly, it feels like Lion is more of an experiment then an actual upgrade. Maybe preparing not just for the future of IOS but Mac OS to.
ashwinr87
Apr 19, 11:57 AM
Thank you.. I also figured out the same thing some time back but forgot to post it here...
I would like to ask another thing.. whatever value I give in the options: does not seem to have any effect on my animations.. say If i had given[UIView animateWithDuration:0.8 delay:0.0 options: UIViewAnimationTransitionFlipFromLeft animations:^ { popContents.view.frame = CGRectMake(160, 70, 350, 350);
[self.view.superview bringSubviewToFront:self.view];
[self.view.superview addSubview:popContents.view]; }
completion: ^(BOOL finished) {
NSLog(@"DONE");
}
]; I thought by adding options:UIViewAnimationTransitionFlipFromLeft , it should have added an extra effect to my animation in addition to the zooming effect..
would you be able to help me out?
Something like this should work. You may need to tweak the UIViewAnimationOptions.
[UIView animateWithDuration:0.8 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut | UIViewAnimationOptionAllowUserInteraction animations:^(void) {
popContents.view.frame = CGRectMake(320, ypos-70, 350, 350);
} completion:^(BOOL finished) {
[self.view.superview addSubview:popContents.view];
}];
Don't forget you can nest animations inside of each other.
I would like to ask another thing.. whatever value I give in the options: does not seem to have any effect on my animations.. say If i had given[UIView animateWithDuration:0.8 delay:0.0 options: UIViewAnimationTransitionFlipFromLeft animations:^ { popContents.view.frame = CGRectMake(160, 70, 350, 350);
[self.view.superview bringSubviewToFront:self.view];
[self.view.superview addSubview:popContents.view]; }
completion: ^(BOOL finished) {
NSLog(@"DONE");
}
]; I thought by adding options:UIViewAnimationTransitionFlipFromLeft , it should have added an extra effect to my animation in addition to the zooming effect..
would you be able to help me out?
Something like this should work. You may need to tweak the UIViewAnimationOptions.
[UIView animateWithDuration:0.8 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut | UIViewAnimationOptionAllowUserInteraction animations:^(void) {
popContents.view.frame = CGRectMake(320, ypos-70, 350, 350);
} completion:^(BOOL finished) {
[self.view.superview addSubview:popContents.view];
}];
Don't forget you can nest animations inside of each other.
ThunderLounge
Oct 27, 08:21 AM
I thought I read (in one of these threads somewhere) where someone had stuck it on a PowerBook and it was faster then it had been before the upgrade.
I might try it on my wife's iMac G4, just for kicks. I haven't upgraded it at all (it's still on Jaguar) so it might be an interesting time.
Anybody going down to Ft. Worth next weekend? :D
I might try it on my wife's iMac G4, just for kicks. I haven't upgraded it at all (it's still on Jaguar) so it might be an interesting time.
Anybody going down to Ft. Worth next weekend? :D
CubeHacker
Apr 30, 09:14 AM
Hard to tell, but looks like a spec of dust under the screen to me.
iDesigner
Jul 7, 09:40 PM
Oh I would definitely advise you to switch to Earthlink. AOL is satan, I had to report them to the BBB because they refused to give me a refund when I cancelled service. Then, 3 months after I cancelled, they re-activated my account and started trying to draft money from my credit card. It was a big nightmare and my bank had to suspend AOL from charging me.
Earthlink is great because they are simple and don't BS you all the time. The only downside is they try to send you junk mail about their services, even when you don't want it. But I don't use their email, so it's not a problem.
Good luck!
Earthlink is great because they are simple and don't BS you all the time. The only downside is they try to send you junk mail about their services, even when you don't want it. But I don't use their email, so it's not a problem.
Good luck!
Chundles
Sep 20, 06:34 AM
Fingers crossed they update the PBs or drop prices :D
Did you read the rest, it was down for about 5 minutes to change the .mac page. That's it so far.
Did you read the rest, it was down for about 5 minutes to change the .mac page. That's it so far.
pcinfoman
Apr 29, 05:52 PM
Has anybody seen this problem before?
Has anybody got a solution?
Has anybody got a solution?
spekulanten
Apr 15, 03:32 PM
i downloaded fah for 10.5, i have 10.6, than system preferences, folding, start (with anonymus), and i have no screen saver or window application, why dosnt it? how do i get it started? :confused:
NZed
Apr 16, 08:13 AM
the problem is that I do not have even one, not to say two. Can you please give me some suggestion on which brand to buy?
You're on a Mac Rumors forum here. MBA 11" for extreme portability
You're on a Mac Rumors forum here. MBA 11" for extreme portability
benixau
Oct 17, 04:45 AM
Originally posted by dobbin
I guess this is the price we have to pay for having the coolest computer the world has ever seen :D
Cheers,
Dobbin
WHAT!!! As if. All of apples headline style computers are way cool. We shouldnt have to put up with faults. A fault would mean it is no longer the coolest looking machine ever.
I guess this is the price we have to pay for having the coolest computer the world has ever seen :D
Cheers,
Dobbin
WHAT!!! As if. All of apples headline style computers are way cool. We shouldnt have to put up with faults. A fault would mean it is no longer the coolest looking machine ever.
CharlC
May 5, 10:26 AM
Hi guys,
Tried to do a search, but couldn't find anything.
I want to extend my bluetooth range on an iMac in order to use peripherals in the next room.
Not very tech savvy wrt opening up the Mac and soldering on a new antenna. Are there any other options?
Thanks so much! :)
Tried to do a search, but couldn't find anything.
I want to extend my bluetooth range on an iMac in order to use peripherals in the next room.
Not very tech savvy wrt opening up the Mac and soldering on a new antenna. Are there any other options?
Thanks so much! :)
No comments:
Post a Comment