gkarris
Mar 28, 10:48 PM
If you are eligible, can you post a list of unopened boxes in Marketplace? ;)
Thanks...
Thanks...
Apple OC
Apr 17, 06:08 PM
go with the white ... and ditch the idea of the roses for Mom :cool:
DDustiNN
Apr 17, 11:30 PM
Cool thanks guys. :cool:
manueld
Mar 16, 01:10 PM
My first question would be frameset?! why are you using framesets?!
alan kelly
Aug 27, 10:36 AM
Hi guys.looking to record vocals and put effects on it with my zoom hardware but not sure how.. Can put software effects on tracks but am wondering about hardware.. Heard about bus recording but dont know what it is,, maybe im on the wrong idea altogether.. Will i have to use my output from my soundcard into my hardware effects unit and back on a new track? Any help would be great,, cheers
Jessica Lares
Aug 2, 11:10 PM
Hmmm...sorry - I'm all out of ideas beyond pulling it apart and removing the memory module and HDD. :(
I'll pull it apart tomorrow and take pictures. It had been in the garage for awhile, but was working when I last tested it afterwards. The battery however had bloated up and came apart. Doesn't seem to have done any damage in the slot, but could be somewhere else. All I know is that it gets hot in the back and it smells a bit like plastic (but my iPhone smells like that too, go figure :P.).
I'll pull it apart tomorrow and take pictures. It had been in the garage for awhile, but was working when I last tested it afterwards. The battery however had bloated up and came apart. Doesn't seem to have done any damage in the slot, but could be somewhere else. All I know is that it gets hot in the back and it smells a bit like plastic (but my iPhone smells like that too, go figure :P.).
MainStreet
Mar 26, 10:27 AM
Are you using VirtualBox? Or something else?
kylehayes
Oct 19, 07:55 AM
I will be there that night. No camping out though, probably just get there an hour or so early. When Tiger was out, I saw no need to camp out, just get there a little early.
-Kyle
-Kyle
steviem
Aug 1, 03:29 PM
So, I moved into the houseshare, so this is my room:
http://farm5.static.flickr.com/4097/4850786304_8b84bc81a3_b.jpg
http://farm5.static.flickr.com/4135/4850786962_aed020b364_b.jpg
Everything I own before I took it there
http://farm5.static.flickr.com/4098/4850785802_6515502ac1_b.jpg
The celebratory, crazy huge pizza my landlord bought because I was the last person moving in to complete the houseshare...
http://farm5.static.flickr.com/4134/4850171503_70919f6c63_b.jpg
http://farm5.static.flickr.com/4097/4850786304_8b84bc81a3_b.jpg
http://farm5.static.flickr.com/4135/4850786962_aed020b364_b.jpg
Everything I own before I took it there
http://farm5.static.flickr.com/4098/4850785802_6515502ac1_b.jpg
The celebratory, crazy huge pizza my landlord bought because I was the last person moving in to complete the houseshare...
http://farm5.static.flickr.com/4134/4850171503_70919f6c63_b.jpg
chazco
Apr 14, 11:21 AM
I haven't, but I did consider it after graduation last year.
While I worked for Apple retail in college I actually got to meet a young lady going through this program and I spoke with her about her experience. From what she said, it seems like a truly unique and worthy experience if you are interested in joining Apple in a retail aspect long-term. This could be in a retail store or with Apple's corporate retail division (or so she said).
It does sound like a great experience from what I've heard. I understand that it's a fairly new scheme.
Looking back, I wish I had applied. A word of caution though, she told me that the acceptance rate is very low at around 2% of applicants. Just a heads up.
Best of luck if you consider and apply for the program!
I've actually applied already :D
While I worked for Apple retail in college I actually got to meet a young lady going through this program and I spoke with her about her experience. From what she said, it seems like a truly unique and worthy experience if you are interested in joining Apple in a retail aspect long-term. This could be in a retail store or with Apple's corporate retail division (or so she said).
It does sound like a great experience from what I've heard. I understand that it's a fairly new scheme.
Looking back, I wish I had applied. A word of caution though, she told me that the acceptance rate is very low at around 2% of applicants. Just a heads up.
Best of luck if you consider and apply for the program!
I've actually applied already :D
vespasky
Jul 2, 12:11 AM
Computer:
Imac Flat screen running OSx10.2
Problem: The screen froze and I tryed to reboot it by holding the start-up button in on the side of the computer. Now when I try to start up the chime starts and stops playing half way through. The screen is blank, nothing happens.
I have tried various things
1. Checked power
2. manually put the system disc into the CD Drive to see if I could start up of another disc - result: you can hear the CD whirling but it eventaully gives up.
3. Tried to reset the PRAM but the system does not kick in enough for me to do that.
I am at wits end, any help would be appreciated.
Thankyou
Imac Flat screen running OSx10.2
Problem: The screen froze and I tryed to reboot it by holding the start-up button in on the side of the computer. Now when I try to start up the chime starts and stops playing half way through. The screen is blank, nothing happens.
I have tried various things
1. Checked power
2. manually put the system disc into the CD Drive to see if I could start up of another disc - result: you can hear the CD whirling but it eventaully gives up.
3. Tried to reset the PRAM but the system does not kick in enough for me to do that.
I am at wits end, any help would be appreciated.
Thankyou
ljg93
Apr 27, 04:41 PM
hey guys i am adding ads to my app
i have a tab bar application and put adds on three of the tabs
to do this i dragged a add from the libary to where i want it to be
for each view controller that corrisponded to the tab i made it a ad delegate imported the ad framwork and made it a property and IBOutlet, i linked everything up in interface builder the ad to delegate and delegate to add, but the ad only randomly runs on my device.. why? heres my code
#import <UIKit/UIKit.h>
#import "TableViewController.h"
#import <iAd/iAd.h>
@class TableViewController;
@interface AddViewController : UIViewController <UITextFieldDelegate,ADBannerViewDelegate>
{
UITextField *nameField;
UITextField *descriptionField;
TableViewController *delegate;
ADBannerView *banner;
}
@property (nonatomic, assign) TableViewController *delegate;
@property (nonatomic, assign) IBOutlet UITextField *nameField;
@property (nonatomic, assign) IBOutlet UITextField *descriptionField;
- (IBAction)cancel:(id)sender;
@property(nonatomic, retain) IBOutlet ADBannerView *banner;
- (void)save;
- (void)cancel;
@end
i have a tab bar application and put adds on three of the tabs
to do this i dragged a add from the libary to where i want it to be
for each view controller that corrisponded to the tab i made it a ad delegate imported the ad framwork and made it a property and IBOutlet, i linked everything up in interface builder the ad to delegate and delegate to add, but the ad only randomly runs on my device.. why? heres my code
#import <UIKit/UIKit.h>
#import "TableViewController.h"
#import <iAd/iAd.h>
@class TableViewController;
@interface AddViewController : UIViewController <UITextFieldDelegate,ADBannerViewDelegate>
{
UITextField *nameField;
UITextField *descriptionField;
TableViewController *delegate;
ADBannerView *banner;
}
@property (nonatomic, assign) TableViewController *delegate;
@property (nonatomic, assign) IBOutlet UITextField *nameField;
@property (nonatomic, assign) IBOutlet UITextField *descriptionField;
- (IBAction)cancel:(id)sender;
@property(nonatomic, retain) IBOutlet ADBannerView *banner;
- (void)save;
- (void)cancel;
@end
lavrishevo
May 4, 06:41 PM
Disconnect the charger and hold the power button down for 10 seconds. Reconnect the charger and try to power it on.
akm3
May 3, 12:12 PM
I have dealt with forms in Word for decades. I have never had a special issue with editable text in a form. However, some forms are setup with mostly non-editable text. However, your non-selectable text was created by you. It might be helpful to post a copy of the document or another that exhibits the problem so that we can examine it.
Certainly great idea.
So my problem again is that text WITHIN the form (Which I added some lorem ipsum to) I can't select individual sentences to copy/paste/edit etc. It chooses huge swaths of text or the whole form instead. This happened both in Mac Office 2008 and Win Office 2007.
Certainly great idea.
So my problem again is that text WITHIN the form (Which I added some lorem ipsum to) I can't select individual sentences to copy/paste/edit etc. It chooses huge swaths of text or the whole form instead. This happened both in Mac Office 2008 and Win Office 2007.
mdamour
Apr 25, 04:15 PM
Thank you!
hippy
Oct 14, 05:57 PM
John Lewis' website here in the UK also shows ZERO stock :)
mrgreen4242
Mar 31, 01:59 PM
I just bought a VGA cable for my 360 so my Wii can finally take it's permanent place using my sole component port on my lil LCD TV.
But I havea few little issues with it. My TV's actual resolution is 1440 x 900 so I figured that the 360 wouldn't offer that in it's resolution so I have it set as 1280 x 720. It works pretty decently. When I watch dvd's that are in 4:3 (like The Simpsons) it has the black bars on the side. I have to manually tell it to stretch it each time I click on an episode in which is a pain in the ass. It never used to do this with component. Any way around this?
Plus the colour quality is a little worse off. It looks a lot whiter I guess, kinda washed out a bit. I played with the colours and got it looking pretty close to how I had it with the component but it's just not quite there.
Any advice on how to make it look it's best? I haven't tried it with games yet, just with a few demo's I have on the system.
Get a TV calibration DVD and run through it to calibrate your TV's VGA input. Should get your color issues fixed. No clue about the black bars, except maybe chose a widescreen resolution on the 360 and let the TV scale that instead.
But I havea few little issues with it. My TV's actual resolution is 1440 x 900 so I figured that the 360 wouldn't offer that in it's resolution so I have it set as 1280 x 720. It works pretty decently. When I watch dvd's that are in 4:3 (like The Simpsons) it has the black bars on the side. I have to manually tell it to stretch it each time I click on an episode in which is a pain in the ass. It never used to do this with component. Any way around this?
Plus the colour quality is a little worse off. It looks a lot whiter I guess, kinda washed out a bit. I played with the colours and got it looking pretty close to how I had it with the component but it's just not quite there.
Any advice on how to make it look it's best? I haven't tried it with games yet, just with a few demo's I have on the system.
Get a TV calibration DVD and run through it to calibrate your TV's VGA input. Should get your color issues fixed. No clue about the black bars, except maybe chose a widescreen resolution on the 360 and let the TV scale that instead.
littleb2005
Apr 30, 03:20 AM
1. is the samsung grey out?
2. what filesystem does the samsung drive use? Go to applications then the utililes folder for this and double click disk utility the filesystem must be hfs or mac os journed
2. what filesystem does the samsung drive use? Go to applications then the utililes folder for this and double click disk utility the filesystem must be hfs or mac os journed
cinek
Apr 16, 06:52 AM
thanks :) I don't really have a problem typing on it when I'm looking at the keyboard - hopefully with a bit more practice it'll get better :)
rgwoehr
Jan 6, 07:24 PM
She left it unplugged for a day or two and it started to work again. Not sure what the problem was but I guess it's working fine now.
Mirage08
Mar 28, 03:33 AM
I've seen it work over usb though? so I'm so confused? Why can't I instal via usb dvdrom :'(
radiohed
Apr 26, 07:07 AM
I just purchased a refurbished 2010 mac mini server and got it up and running only to find that I cant bring my files over from the time machine backup that I had for my old macbook pro. It looks like SLS does not support this. Is there anything I can do to get my music, photos etc from the time machine backup on my usb drive to the server?
I originally wanted to just install SL client instead of server but could not get that to work. When I booted from the SL retail 10.6.3 disk that I bought, the apple would change to a "no entry" logo and do nothing.
I figure if I can at least get my files from time machine onto the mini, I can live with it for now. I would assume that when lion comes out, it will allow me to install it and access my time machine backups. That's a lot to assume! :eek:
Any help will be greatly appreciated! :D
I originally wanted to just install SL client instead of server but could not get that to work. When I booted from the SL retail 10.6.3 disk that I bought, the apple would change to a "no entry" logo and do nothing.
I figure if I can at least get my files from time machine onto the mini, I can live with it for now. I would assume that when lion comes out, it will allow me to install it and access my time machine backups. That's a lot to assume! :eek:
Any help will be greatly appreciated! :D
Bryan839
May 4, 03:44 PM
Ordered my first ever iMac yesterday, 27'' top bto, with i7, and 2gig graphics. Cannot wait.
I have spare ram from one of my macbooks, 2x 2GB modules, but they are 1033?, would they be compatable?
I have spare ram from one of my macbooks, 2x 2GB modules, but they are 1033?, would they be compatable?
MacBoobsPro
May 6, 08:30 AM
In Safari use AdBlock and Click2Flash extensions and also turn 'block pop ups' on and you will forget what adverts look like. I havent seen one (or havent noticed any) for ages. :)
Regarding scanning for potential malware already on your system - the risk of which is quite low - I too advocate ClamxAV.
Regarding scanning for potential malware already on your system - the risk of which is quite low - I too advocate ClamxAV.
Aucun commentaire:
Enregistrer un commentaire