IPAD must-haves. And fun-to-haves.

Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini

Apple Wireless Keyboard

The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad

Apple unveils iPad mini: ‘Thin as a pencil, light as paper’

iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool

Lightning connector and FaceTime HD camera

Apple announces 4th generation iPad packing an A6X CPU

Pages

Showing posts with label active. Show all posts
Showing posts with label active. Show all posts

Tuesday, September 17, 2013

How long to active my developer account?

I bought developer account iOS, but i just want to know, how long to active my developer account?


View the original article here

Monday, September 16, 2013

Re: How long to active my developer account?

Apple seems to be having issues with activation right now. Best to contact Apple directly if you're not getting thru.

 

Otherwise, give it a week, unless you're outside the US, and then it could take twica as long. Be patient.


View the original article here

Sunday, August 18, 2013

Re: I cann't active my developer account with activation code


you mean i need wait another 5 business day?



thank u reply


View the original article here

Saturday, August 17, 2013

I cann't active my developer account with activation code


We have received your purchase information and will email you shortly to verify additional details.





what's the problem?



I have already waited for 5 days,just give me this?


View the original article here

Wednesday, March 20, 2013

Cannot Set Exchange Active Sync Email Account ot Default

OK, I am having a problem setting the Default Email Account as Exchange Active Sync. I am seeing this in iPhone and IPad both running 6.1.2. The Active Sync Mail account is installed on both devices and works fine. The problem is I am unable for some reason to change the Default Email Account from iCloud to the Exchange Active Sync Account installed. When I select the option to change Default Email Account, iCloud is there and checked however the Active Sync Account does not even show up as a selectable option here. Please help! Thanks


View the original article here

Saturday, March 9, 2013

Cannot Set Exchange Active Sync Email Account ot Default

OK, I am having a problem setting the Default Email Account as Exchange Active Sync. I am seeing this in iPhone and IPad both running 6.1.2. The Active Sync Mail account is installed on both devices and works fine. The problem is I am unable for some reason to change the Default Email Account from iCloud to the Exchange Active Sync Account installed. When I select the option to change Default Email Account, iCloud is there and checked however the Active Sync Account does not even show up as a selectable option here. Please help! Thanks


View the original article here

Thursday, February 28, 2013

Show Window without activating (keep application below it active)

I need to show a window (without title bar) above third party applications without my window taking focus.

I have tried using an NSPanel and setting enabling non-activating, but that didn't help.

I tried orderFront:self, but that didn't help either.

I always needed to add [NSApp activateIgnoringOtherApps:YES]; because the window wouldn't show otherwise.

I have here a sample project for just this functionality:
http://users.telenet.be/prullen/TopW2.zip

UIElement is set to true in the application's plist file, so there is no dock. You can activate the window by pressing ALT + SPACE at the same time. You will see that the app below it looses focus. Any thoughts on how to fix this? I've seen other apps do it so I know it's possible.

Edit: here's the code so far. Remember the window is a non-activating NSPanel. I still need that last NSApp activateIgnoringOtherApps line or otherwise it doesn't display. But of course that makes the window the active one.

_windowController = [[MyWindowController alloc] initWithWindowNibName:@"MyWindowController"]; 

[[_windowController window] setLevel:NSNormalWindowLevel+1];

[[_windowController window] orderFrontRegardless]; 

[_windowController showWindow:self]; 

[NSApp activateIgnoringOtherApps:YES];

I've also subclassed NSPanel and added two methods:

- (BOOL)canBecomeKeyWindow { return NO; }  - (BOOL)canBecomeMainWindow { return NO; }

(I also tried canBecomeKeyWindow return YES and several other levels (for setLevel).

 

Any ideas?


View the original article here

Tuesday, February 26, 2013

Show Window without activating (keep application below it active)

I need to show a window (without title bar) above third party applications without my window taking focus.

I have tried using an NSPanel and setting enabling non-activating, but that didn't help.

I tried orderFront:self, but that didn't help either.

I always needed to add [NSApp activateIgnoringOtherApps:YES]; because the window wouldn't show otherwise.

I have here a sample project for just this functionality:
http://users.telenet.be/prullen/TopW2.zip

UIElement is set to true in the application's plist file, so there is no dock. You can activate the window by pressing ALT + SPACE at the same time. You will see that the app below it looses focus. Any thoughts on how to fix this? I've seen other apps do it so I know it's possible.

Edit: here's the code so far. Remember the window is a non-activating NSPanel. I still need that last NSApp activateIgnoringOtherApps line or otherwise it doesn't display. But of course that makes the window the active one.

_windowController = [[MyWindowController alloc] initWithWindowNibName:@"MyWindowController"]; 

[[_windowController window] setLevel:NSNormalWindowLevel+1];

[[_windowController window] orderFrontRegardless]; 

[_windowController showWindow:self]; 

[NSApp activateIgnoringOtherApps:YES];

I've also subclassed NSPanel and added two methods:

- (BOOL)canBecomeKeyWindow { return NO; }  - (BOOL)canBecomeMainWindow { return NO; }

(I also tried canBecomeKeyWindow return YES and several other levels (for setLevel).

 

Any ideas?


View the original article here