Iphone tutorial doesn't match Cocoa Touch template

I started going through apple's tutorial located here http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhone 101/Articles/chapter3_section3.html
and I found that on the page that I've referenced, there is no MainWindow.xib file like the tutorial expects. what gives?

I'm going to bump this since it's so far down the list now.
In particular--any thoughts on where the rest of the apps I own have disappeared to? I own in the neighborhood of 300 apps, however only the 20something currently installed on my iPhone are in the list on iTunes. This has never happened before!!

Similar Messages

  • What is the temperature limit of the finger to work on iPhone touchscreen? I'm asking this, because I've noticed that when my finger gets too warm (about 104oF) the screen of my iPhone 5 doesn't recognize its touch. Thank you.

    What is the temperature limit of the finger to work on iPhone touchscreen? I'm asking this, because I've noticed that when my finger gets too warm (about 104oF) the screen of my iPhone 5 doesn't recognize its touch. Thank you.

    I understood. Emphasizing that this is still a guess, when you touch the screen it compares your fingerprint at that time to the one you originally recorded. The fact that the finger is warmer may have a small effect on the fingerprint making it appear different than the original colder one. Temperature differences cause things to expand and contract and that may be having an effect on the comparison. You could try recording a fingerprint after doing what you are doing and then see if it will be recognized when you do the same thing to log into the phone. I know that prior to iOS 7.1 for a few minutes after I would wash my hands the phone had difficulty recognizing the fingerprint. Don't know if it was temperature or moisture that caused the temporary change induced by the hand washing. That improved with version 7.1 I think.

  • HT6154 hi, my iPhone 5 doesn't respond with touch screen. I went to Apple store they offer me new one, however I don't want to get new phone because my phone works with headphones and Suri. The problem it that my phone has passcode.

    I just want to find out if I buy any keyboard dock would I be able to unlooked my phone since the screen doesnt respond?

    Why do you not want a fully functional device?  That seems really silly.

  • Iphone 5 system serial no doesn't match with outer box? Case of misprint? i see only one latter is serial no doesn't match

    I recently bought iphone 5 32gb white. Was surprise to see the outer box serial no doesn't match with iphone 5 system.
    They have print XXXXXXTXXXX on box and on phone its XXXXXX7XXXXXX. Only one latter is mixprint though.
    I check coverage status at apple site. The box serieal no is not found in apple system while the iphone 5 inside serial no i can see warrenty.
    plz help is it normal to have serial no unmatched on phone and box or the phone is not genuine

    You are correct. The SIM Tray of iPhone 5 does not have the Serial #  printed on it. So your Serial # is the one in the Settings app About. This is your true Serial #. A 7 and a T from a box label are not distinct enough to matter. Apple will only honor the Settings About Serial # and the ones located inside the iPhone 5, which will be the same as the About Serial #.

  • When we miss a call, the "Slide to Unlock" doesn't respond to touch. The only way out is to have someone call your iphone and then "Slide to Answer" will respond and once u end the call it will start responding to "Slide to Unlock" this started happening

    When we miss a call, the "Slide to Unlock" doesn't respond to touch. The only way out is to have someone call your iphone and then "Slide to Answer" will respond and once u end the call it will start responding to "Slide to Unlock" this started happening after upgrading to IOS 7.
    iphone 4S IOS 7.0.3.

    In your first post you mention you have done a reset and a restore. Those are the last two processes in the user troubleshooting. If those do not work, then the last thing is to go to the Genius Bar. You say you went to Apple and they opened the phone and re-seated the connectors? That sounds unusual, because if there was a hardware issue,they would replace the hardware. You say you cannot get a replacement, is that because you are out of warranty? An out of warranty replacement is only $199 plus tax. It seems to me since you mention the fact you need to press hard to get the screen to react there is something going on with the hardware. If this problem has been going on for over a year, have you been reporting this to Apple. You say you cannot get a replacement and you are on the second phone, I wonder why they are denying you a replacement. Is there something you are not telling us??

  • The pt 3 tutorial code doesn't match the pt 2 tutorial code.  Nowhere to insert head in pt 2 code.

    At the end of the part 2 tutorial, this was the code:
    @charset "utf-8";
    /* CSS Document */
    #container {
    width: 968px;
    background: #FFF;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    }#main_image {
    background-image: url(images/main.jpg);
    background-repeat: no-repeat;
    #container #main_image {
    height: 376px;
    width: 968px;
    #left_column, #center_column, #right_column {
    width: 316px;
    float: left;
    #center_column, #right_column {
    margin-left: 10px;
    The part 3 tutorial instructed this:
    Copy the <script> tags from the Edge Web Fonts site, and paste them into the <head> section of index.html in Dreamweaver just above the <link> that attaches the style sheet like this:
    <head>
    <meta charset="utf-8">
    <title>Check Magazine</title>
    <script src="http://use.edgefonts.net/sarina.js"></script>
    <link href="styles/check_cs6.css" rel="stylesheet" type="text/css">
    </head>
    As you can see from the code at the end of part two (listed at the top), there is no reference to <head> anywhere in the code; therefore, I am uncertain as to where to insert these code instructions.

    I assume that the embedded tags are in the index document, not the styles type document?   I appreciate the information, but I don't see how it relates to my question.  Maybe your answer was just over my head? My original question was: If the instructions say this:
    Copy the paste them into the  section of index.html in
    Dreamweaver just above the  that attaches the style
    sheet like this:
    and there the word does not appear anywhere on the index file that I can see it (whether it's embedded or otherwise), where do I insert the code?
    Date: Fri, 8 Feb 2013 10:29:29 -0800
    From: [email protected]
    To: [email protected]
    Subject: The pt 3 tutorial code doesn't match the pt 2 tutorial code.  Nowhere to insert &lt;head&gt; in pt 2 code.
        Re: The pt 3 tutorial code doesn't match the pt 2 tutorial code.  Nowhere to insert  in pt 2 code.
        created by Nancy O. in Dreamweaver - View the full discussion
    The pair of and  tags are an integral part of any HTML document. When you create a new page in DW, it automatically creates the core HTML tags for you, so in that regard, there's nothing for you to add except content and styles. Embedded CSS styles are inserted inside the document's  tags like so:       body      #LeftSideBar       #RightSideBar      #MiddleContent
    External CSS is a separate physical file to which all your HTML pages are linked. Similar to above, links to external style sheets go inside the  tags like this:
      HTML & CSS Tutorials - http://www.html.net/http://w3schools.com/  Nancy O.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5058678#5058678
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5058678#5058678
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5058678#5058678. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • My Iphone 5 touch screen doesn't respond to touch

    Although I can hard reset, my iPhone 5 suddenly stopped responding to touch. Calls come in and texts, but I can't answer or open the phone since the screen doesn't respond to any touch. I am unable to get to AT&amp;T or Apple right now. Any advice would be greatly appreciated! Thank you.

    Put it into recovery mode and set it up as new device:
    iOS: Unable to update or restore
    How to back up your data and set up as a new device

  • IPhone (Cocoa Touch) Button that plays sound file on click?

    Hello.
    I am trying to create a button that, when clicked, it plays a given sound file in the app's filesystem.
    This is what I have set up thus far:
    Regular Rectangular button -> connected to NSObject Called "sounds" -> with the Event "playsound1" chosen as the event.
    I then wrote the class files, brought them into Xcode file project under classes, and now I'm staring at sound.h and sounds.m with no idea what to do next.
    I was able to create in a regular Mac OSX Cocoa, a button that plays the system beep using NSBeep. However, I don't know how to achieve this similar objective with using a given sound file in the iPhone Cocoa Touch.
    Thanks

    I have tried so many things. I'm so lost.

  • My new iPhone 4 doesn't work at all

    You are definitely not alone with your issues. I'm on my second iPhone 4 unit, and am still having the same problems. I've had proximity sensor insanity, battery draining after 8 hours of stand-by (NO USE, just sleeping) to the point that my phone goes into a coma and has to be plugged in to be revived, the grip of death dropping calls....
    But the single most irritating and infuriating problem is the signal strength/reception fluctuation. I share a house with two iPhone 3Gs users, and I had an original silverback iphone until July 2010. They all work fantastically well with no issues when I'm at home (where I am just about 24/7, since I work from home). *_My new iPhone 4 doesn't work at all.*_. Signal strength is all over the place. I did a test where I sat watching the bars showing signal strength for five minutes. In that time, I saw it switch from E (edge?) with full bars to 3G with full bars to 3G with 1 bar to 2 bars to 4 bars to 1 bar to "Searching." Then back to 3G, with degradation of bars from 3 to none, then E network appears again, this time with full strength. This all with the phone sitting on a table, not being touched by human hands.
    It seems that my iPhone is constantly switching actual physical networks, and as a result signal strength is all over the place from one 30 second period of time to the next. This drains the battery like crazy, and means that all incoming calls go to voicemail--usually without my phone ever ringing.
    The 3G phones in my house work great. The 1st G iPhone I have had since the week it came out worked great (though its battery doesn't hold much of a charge anymore, after three years). On my new IP4, games are awesome. The videos and photos are amazingly clear and high quality, and editing on the phone is out of sight. iPhone Apps rule. MobileMe syncs my contacts quickly and easy. The only thing I love more than the iP4 features is my iPad--it rocks.
    Everything works on my IP4 at home BUT THE ACTUAL TELEPHONE FUNCTIONS. This is unacceptable. In late August, after two weeks in which I had 4 minutes of phone use, the nice folks at the Apple store switched me to a new phone, no questions asked. The phone worked so much better, I could send texts and place calls most of the time (this was now the first part of September)...except that now that I was using my IP4 to make phone calls, I started having a problem with the proximity sensor during those calls. I'd be talking and my cheek would mute the phone, turn on speaker, open contacts and edit info (with gobbledygook), and of course, hang up on people.
    So around Sept. 18 I was told by Apple phone support to update to iOS 4.2, restore as new, and do two complete power up and drain down cycles. This would fix the proximity sensor and any other issues.
    Well, I would love to see if iOS 4.2 actually did fix the PS, but I can't get the signal strength to stabilize long enough to have an actual phone conversation. I'm back to watching the signal strength go up and down at random (with me touching/holding it carefully to avoid grip of death, and also when I leave phone on the table with screen lock off --no touching). It is back to switching between E network and 3G and varying strengths of wi-fi from my home network. This eats up battery from 100% to low enough to turn off in under 10 hours of standby (usually 6-7). Essentially, my IP4 is back to being unusable as a phone.
    So I did another long, involved call to Apple tech support on 9/18. They tell me that I have to turn off wi-fi, turn off 3G, turn off push/fetch and notifications, shut all apps (no multi-tasking) and do everything but switch my phone to airplane mode--and see if the battery holds up for 24 hours in standby. If that didn't work, I should restore from new, but not load any contacts or network or data or anything--just leave it as it would be out of the box new.
    As a test, I turned everything off as advised: 3G, wi-fi, push, etc. Now my battery life is back to normal, where I can have the IP4 on stand-by for up to two full days before needing a recharge. Fabulous. BUT IT'S NOT A SMART PHONE if I have to turn off 3G, turn off wireless, and not use email push and so forth.
    I'm so frustrated I could scream. I'm quickly coming to the conclusion that there is a significant flaw in the new iPhone. Or perhaps it is just an issue for iPhone 4 users in areas where the signal strength is marginal, or where there are two types of overlapping network coverage (E and 3G in my case). I know that the networks themselves are in good condition--though I'm in a semi-rural area, the state capital is 4 miles away, and I know they have a new tower and good coverage for the politicians and power brokers around town. The phone coverage area I live in has Edge network in the south part of the network area and 3G in the north part, which is the state capital. I'm right in between. Could this be the problem? AT&T says no, it's Apple's fault.
    Message was edited by: HighSierra

    So what to do besides complain? Troubleshoot?
    I just wonder if all of us who have had chronic signal strength and "Searching for network" issues that totally drain the battery might have something in common, despite being all over the world? I'm using wi-fi 95% of the time, and live in a semi-rural area with overlapping networks run by same carrier. Apple folks hinted that maybe in my area the network usage is nearing capacity (resulting in getting kicked off of 3G and down to E as new calls are placed that strain capacity). They also hinted there could be interference from mountains or other objects. But here's the thing--3G phones work fine, and my IP4 works fine when I'm away from home, usually in the capital city on strong 3G network. (When I say "works fine I mean the signal is good and calls go through, I haven't tested battery drain away from home yet).
    I have to conclude that the problem is the IP4 itself--something about the hardware or the software (namely, the way it connects to the phone network) is horribly wrong. Other folks who live in urban areas or with strong networks that (likely) aren't over-utilized don't seem to have this issue. After reading through these pages, it also seems the wi-fi may be a major culprit in draining the battery and in varying signal strength (this is from Apple phone support, which said that varying signal strength and the constant pinging off the home wi-fi is creating a "power struggle" and keeping the phone constantly looking for the best connection option). Mind you, 3G iphones on the same home network have no problems whatsoever.
    So while I'm not a technical expert, it seems like the problem HAS to lie in the differences in the way the IP4 connects to the cellular and/or wi-fi network. And since the connection/signal strength problem was "resolved" on my replacement phone, but then "broken" again by the software update of iOS 4.2, I'm leaning toward this being a software issue. I've offered to help Apple troubleshoot, and I'm trying to be patient--because the IP4 is a work of art and I've never had an issue with an Apple product before. But all they want me to do is restore, restore, reload, restore, and then drive 1 hour to the nearest Apple store (in Reno, NV) and get a new phone...and start the whole process over again. I don't have time for this, I need my phone back.
    I'm this close to trading in my beautiful but flawed IP4 for a 3G. Maybe I should just get a new battery for my original iPhone from 2007?
    I understand that Apple can't test for every possible variable of use all over the world, but they don't even seem to acknowledge that they have a problem with the IP4 that will not be resolved by replacing it with a new unit. They want me to believe it's a fluke, or it's just me...but I've been combing these threads and see a lot of people reporting the same issues I am--battery drain and wildly fluctuating signal strength issues, wi-fi problems, and dropped calls. Can't someone get on this? Because otherwise Apple is going to have to admit that their IP4 is not a good solution for people who live in areas of less than perfect signal strength or use wifi or whatever demonic combo I have in my home/work setting.
    Or people will have to do what I have done--if you who want the cool IP4 non-phone features, you will have to dumb down your IP4 in order to have it be even moderately useful as *a phone.* For $599 I expected better.
    My (temporary) workaround?
    To spare the battery:
    *Turn off wi-fi (which *****, because now I have to burn minutes when I'm at work using the email, downloads, safari, etc--and it's E network, so it's SLLOOOOOOOW)
    *turn off push and fetch, have mail get new messages manually
    *turn off data roaming
    To keep the signal somewhat stable (making it easier to complete calls and spare battery)
    *Turn off 3G (this leaves me on E network--fabulous, I had that with my 3 year old iPhone)
    *grip IP4 between two fingers placed at the top of the phone, away from death zone. Tough for us lefty phone users.
    *pray the free bumper will a) come soon and b) help. I'm not optimistic.
    To keep proximity sensor from going nuts and dropping calls, muting, turning on speaker etc:
    *use headset or bluetooth (unless you are also having one of the known bluetooth issues!)
    *keep phone pressed to one ear and don't move it a millimeter. Don't shift sides, don't hold phone with your shoulder, just keep it to one ear and talk fast).
    I'm about out of patience. I understand that lots of folks have and love their IP4s. I'd love to be one of those people. I'm open to suggestions and have spent many hours on phone with tech support, restoring my phone, reloading data and apps--there has to be a better way.
    Sorry for the thread-jacking, but someone from Apple has got to be following these threads--help us!
    null

  • Imac 10.7.5 doesn't recognize iPod touch 32gb 5th gen, iPad and iPad mini all work ok

    imac 10.7.5 doesn't recognize iPod touch 32gb 5th gen, iPad and iPad mini all work ok.
    Itunes 11.3
    7.1.2 iPod touch 32gb, V/ 5th generation
    I just don't get it. I got the iPod from a friend which didn't use it at all. If I connect my iPad or iPad mini to my mac, they all get connected well and iTunes sees them too. iPod touch not for some reason
    The iPod touch is completely new, no missing contacts etc. It works on other macs as well. Only my iMac doesn't see the iPod Touch. Maybe I can repost this problem in The IMAC section in stead of the iPod Touch, since I think its a iMac problem from now on...
    please help!

    Iphone 5 lightning port charging problem - SOLUTION!
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • TS1286 At my PC startup, I get an error message "AppleSyncNotifier.exe--Entry Point Not Found"  My iPhone now doesn't show up as a Device in either iTunes or My Computer on my PC. I've uninstalled/ reinstalled iTunes & run diagnostics-no luck. Ideas?

    At my PC startup, I get an error message "AppleSyncNotifier.exe--Entry Point Not Found"  My iPhone now doesn't show up as a Device in either iTunes or My Computer on my PC. I've uninstalled/ reinstalled iTunes & run diagnostics-no luck. Ideas?

    I think my problem is fixed now.
    For the fun of it, I reinstalled iTunes 9.2.1 today (using the exact same installer as I did yesterday), but this time I didn't uninstall iTunes first. As expected, iTunes recognized my iPhone (as I expected it to, until my next reboot).
    A few minutes later, Software Update showed up and among the updates is "iPhone SDK Compatibility Update". The description indicates that installing this should fix an issue where iPhones and iPod touches aren't recognized by iTunes. Isn't that interesting?
    I installed that update and most of the others waiting for me (including Java, Safari 5.0.1, and a few others - not 10.6.4 though, due to the issues with nVidia graphics cards). After the reboot, I started iTunes, and it saw my iPhone!
    So, if you're having this same problem, I'd recommend tracking down this update and see if that does the trick for you. Hopefully it will.

  • On my iphone 5s, in "photos" when I touch to enlarge, random new photos taken with 5s appear as old photos taken with 4 years ago - that aren't even on the laptop that I plug into. How do I correct this?

    On my iphone 5s, in "photos" when I touch to enlarge, random new photos are showing as old photos. For example, let's say I'm looking in an album at a photo of a dog I took today. If I touch to enlarge- that photo of a dog is suddenly a photo of a family member taken three years ago (on my old iphone 4). This is random and has happened to about a dozen photos. This has caused me to accidently delete new photos thinking they were old ones until I figured out this was some sort of glitch. The old photos that are posing as new photos aren't even on my laptop that I plug into - they've been on my external hard drive for awhile so I don't even know how they're linking! Any suggestions??

    I've tried both ways.  My Computer locates the device but doesn't see the old photos, only listing the new photos.
    I no longer have the iphone3; I just transferred the photos from the 3 to the 4. 
    Was there a format change or file type change or did the transfer process create something different?  I can still see and access the old photos if I go to that album on the phone.  But that's the only place where I can see them or access them.

  • Video copied to DVD doesn't match project I can see

    Okay,
    Probably another basic question but I can't find an answer in the Adobe manual. I just discovered (after burning 8 copies of the same file) that the movie on the DVD doesn't match what I see in the Project screen. The dropdown of the Organize>Project looks like what I want to see except that it seems to have the original avi file that I subsequently edited as well as the edited file. The sceneline looks correct. The timeline looks correct. I have tried eliminating the "markers" but there weren't any to eliminate - the menu drop down only gave me the option to add markers. One hint is that the DVD is picking up a menu template that I was playing with but couldn't get to work and then deleted. I ended up using the very basic title screen with black video from the top line Title dropdown menu instead of the Template option in Edit. I can see the new title in scene and timelines. Again, per previous question just posted, I see nothing in the clip screen
    (i.e. th boxes) under "organize". Also, the video clip on the DVD appears truncated by approx. half the play time.
    At one point I could get only the old menu template clip  to show up just below the montor screen but couldn't figure out how to delete.
    thx

    Camcorder is a Sony Handcam D8 Digital Video, not minidvd. Tape was transferred using Adobe Premiere elements 9 with brand new firewire.
    First screen capture below shows only one of two black screen titles upon opening program. Nothing in media boxes. Second Capture shows frame of video clip as a result of double clicking on the third sceneline box. Third screen capture shows what the DVD opens with when played after burning. I have tried to create this from scratch but can't get rid of the fancy menu screen in the third screen capture below. Replaying the movie using the sceneline or timeline prior to burning the DVD doesn't show the "fancy picture frame" with the "play movie" option shown in the dvd playing in the third capture below. Does this help? It seems to be something like an invisible preset that I can't get rid of.
    C

  • Artwork doesn't match song/artist

    I purchased iTunes match recently and then turned it on my iPhone. Now some of the artwork doesn't match the artist. For example, whenever I play a Cher song the artwork for Rihanna shows up. This is not the case on my iMac. The artwork is correct in iTunes or if there is no artwork it is blank like it's supposed to be.
    So far I am not impressed with iTunes match. There are too many problems with it. I wish I wouldn't have purchased it.
    My question is: how can I get the artwork to match the artist? I've seen other suggestions, such as deleting the song and downloading it again, but it didn't work.

    I had that problem also. what worked for me was finding the album art that you want from the internet and save it to the desktop and then goto itunes and right click on the album then get info then drag the album art onto artwork then click ok. after you do that to all the albums that you want it done to then goto store then update itunes match. after it is finish updating then goto your iphone and quit the music app and then open it back up. once it loads up then the art should be there. It might seem like alot but try doing that for 13000 songs like i had to do.

  • Why do they make apps for iPhone and dont make matching apps for the mac?

    So I lovvvvveeee my MacBook Pro! I have wanted one for many years and finally got to get it. I have also been a iPhone user for many years, sense the 2nd. one came out. I have a huge issue though! I love all the different types of apps that they both have. I just dont get why it is that you can use a app for the iPhone that doesn't crossover to my Mac. That is so dumb! If they make it for one product say the iPohne then they should make it for all of them! Why don't they do so?????

    Hi Jenn,
    I see you already had a discussion about this and its really terrible that newsstand isnt there, but i thought I might share a few apps that do exist on both ios and mac in order to sync the two or atleast make your iphone a bit more of a sidekick to your mac or viceversa as I faced the same problems  (some of them are stock apple apps but they are the best solution in my opinion).
    Calendar: Use the normal reminders and calendar apps on the iphone and mac, they do a neat job syncing up
    Browser: Chrome, you do need to have a gmail account for this but icloud for safari isnt as good as chromes syncing for your bookmarks and open tabs and saved passwords.
    To Do lists: Wunderlist/Producteev, I suggest two here because both are excellent with the former more aesthetically appealing but the latter allowing for more functionality
    Mail: Mail for Mac is generally good, but the syncing here is achieved by setting up as IMAP so make sure you always setup all your accounts as IMAP.
    Notes: Dashnote, the stock notes on Mac are a bit inaccessible at times and you often lose them, so i suggest using dashnote, please note that dashnote is a widget in the dashboard on the mac and not a dedicated program but it is an app on ios
    Music: Stream to me / itunes match, both of these are paid services but they allow you to share your music across both the iphone and the mac and they seem to be worth it for the price
    News articles and interesting weblinks: Pocket, not a lot to say except for that its nice
    Storage, and arguably a good way to read pdfs and docs on your iphone: google drive/skydrive
    Messaging: Apple messages, skype
    There are many more apps but these are just the ones i know and use. Hope you find some of these apps handy.

Maybe you are looking for

  • Printing to PDF Printer in batch mode is slow!

    I work for a company that is evaluating Adobe Acrobat XI Pro to use as a batch PDF printer/creator.  The problem is that with our evaluation trail version when we drop more than 30 print jobs to the printer it takes 12 to 15 seconds to process each o

  • Multiple pay slips in a single page

    Dear Experts, We have a requirement to print two payslips in a single A4 paper, This because the payslip which is being printed takes only a half of the A4 paper, The client doesn't what to waste the paper because the number of employees is huge. So

  • I Am Done With Adobe

    Enough is enough. Another late night project trying to burn a DVD after 100+ hours editing....I've come to the end.  It's really a shame - after spending thousands of dollars w/ these guys I just can stay up late praying I don't get an 'Adobe' error

  • Master password dialog inconsistent after update

    After the latest update (v12.0), the master password dialog box is no longer come up immediately on visiting a password enabled site (like gmail). It now seems to pop up randomly -- sometimes appearing AFTER visiting one or two PW enabled sites, some

  • I can't remember my apple id or password that was used to start my ipad

    i am trying to reset my nieces ipad but we cant remember the apple id or password that wasd used to start it up when we 1st got it,how do we bypass this or reset it?