Help a newbie with Apps!

Brand new at iPad and Mac. I tried to enter the apps page on the iPad, didn't have the right password, and now it is frozen, saying that required fields have been left blank...nothing on the page will move, and it is utterly frozen. Meanwhile, I got the Apple ID password, but how do I unfreeze the Apps page?

Try a reset:
Hold the home and power buttons at the same time until the Apple boot logo appears. No data will be lost.

Similar Messages

  • Help a newb with setting up Mail.app

    Im trying to set up my Mail app with my email account hosted with my shared hosting service.
    Ive used mail.app before...but i seem to be running into some issues.
    Ive used mail.app with .mac and mobileme email addresses and they functioned properly,my issue is that using the [email protected] doesnt seem to work so smoothly.
    For example when i send a message in Mail.app it stores it only in the Mail folder in Mail but in a new folder in webmail called Sent Messages.
    I use IMAP for Mail.app and with my iPod Touch (which uses the same EMAIL Address).
    When i send messages using the ipod touch i dont get the excess mailboxes and the sent messages/deleted messages etc get routed to the properly mailbox in the ipod touch and Webmail.
    These are the extra mailboxes i get when using Mail.app
    They show up in both Mail.app and my Webmail.
    SOO my question is; How do i properly set it up so i only have these mailboxes:
    INBOX
    SENT
    DRAFTS
    TRASH
    and that they all tie to gether?
    for example; send a message in Mail.app it goes into the Sent folder on both Mail.app and Webmail instead of a bogus Sent Mail folder automatically created.
    Any advice please????

    From Apple's web page on Exchange with Snow Leopard:
    Infrastructure requirements
    • Update Rollup 4 for Exchange Server 2007 Service Pack 1.
    • Exchange Web Services (EWS) must be enabled. EWS is on by default in Exchange 2007.
    • Exchange AutoDiscover must be turned on for automatic setup.
    • Snow Leopard uses SSL over port 443 to connect to EWS.

  • Help a newbie with Keyboard events

    Right so I'm just getting started with ActionScript (and Flash) and I'm getting a bit confused. I've got quite a bit of experience programming in other languages but I've never touched either actionscript or flash before.
    I've got various books and have tried searching around the internet but I can't find anything to help me with this problem... it looks to me like it SHOULD work (but obviously I'm wrong because it doesn't!) I'm just trying to get the base for a game set up, and want to be able to take in user input via the keyboard (I will want mouse control as well, but let's focus on this problem first).
    My code is:
    package {
        import flash.display.MovieClip;
        import flash.events.*;
        import flash.ui.Keyboard;
        public class Main extends MovieClip
            var isRunning:Boolean = true;
            public function Main()
                trace("Flash Project!");
                Initialize();
                //Game Loop
                while(isRunning)
                    Update();
                trace("Exiting...");
            public function Initialize():void
                trace("Initializing!");
                stage.addEventListener(KeyboardEvent.KEY_DOWN, OnKeyPressed);
            public function Update():void
                trace("Updating...");
            public function OnKeyPressed(evt:KeyboardEvent):void
                switch (evt.keyCode)
                    case Keyboard.ENTER:
                        trace("Enter!");
                        break;
                    case Keyboard.ESCAPE:
                        isRunning = false;
                        break;
                    case default:
                        trace("keyCode: ", event.keyCode);
                        break;
    The errors it is generating refer to the OnKeyPressed function, and say that I have tried to access the undefined properties Keyboard, escape and default. I thought I imported all the keyboard stuff at the top? Help would be much appreciated here, I'll be fine once I'm up and running but at the moment I'm feeling somewhat lost.

    Right, well at least part of my problem was that I had
    trace("keyCode: " event.keyCode);
    instead of
    trace("keyCode: " evt.keyCode);
    but it still doesn't like the word "default"? This is strange as it's coming up in blue so it's obviosly recognising it as a keyword...
    If I comment out the 'default' section of te switch case statement it get's stuck in an infinite loop, even if I press escape... which should set 'isRunning' false therefore exiting the loop...
    Help!

  • Help a newbie with her timeline

    (Something to keep in mind: I learned Flash 7 a few years ago
    (quite in depth, actually) but forgot it all. Just recently, I have
    picked up a tutorial book and have kind-of gotten back into it. I
    know the basics, but be gentle in your advice.)
    I need help! I have created an interactive flash animation on
    our company's landing page that shows you how the product exercises
    the muscles. I am having trouble with my timeline, I beleive.
    Check it out here, bottom of right column:
    Flash
    Animation In Need of Help
    Ideally, what I want to happen is the individual movie clips
    will spin and then stop. Once you click on them, it will show you a
    close up of a figure and highlight what muscles that exercise uses.
    Then, once you click on the next exercise, the one you were on will
    go back to a static (non-spinning) image of the exercise and will
    stay that way, no matter whether you skip around or go from first
    to last exercise (this only makes sense if you look at the above
    link).
    Right now I have one flash file that contains 4 movie
    clips/buttons (each of the exercises).They are in their seperate
    layers in the first frame. In each layer, there is the first movie
    clip (spinning) in frame 1; in the next frame I have the movie clip
    that highlights the muscle groups which plays once you click on the
    first movie clip. Directly after this, in the next frame, I have a
    button/jpg of the original exercise that does not spin, but when
    clicked will take you to the highlighted movie clip. The frames are
    stacked, so that each of the highlighting clips are one frame
    further down the line than the layer on top of it, so they don't
    play at the same time.
    Therein lies my problem. For example, if you click on the
    last exercise, then click on the second exercise, the exercises
    beneath it spin because on the second layer, the highlighting movie
    clip is on the same frame as these movie clips' spinning image (if
    that doesn't make sense, let me know and I'll show you an image of
    my timeline).
    What I need help on is how to keep this from happening.
    Again, this all might not make much sense, but please ask me if you
    need further clarification.
    ANY ideas?

    I think you've answered your own question José!
    The page is deeper than your monitor screen size (it doesn't move on my monitor set at 1350deep) and is producing a scroll bar at the right which bumps the page in to accommodate the bar size.
    Garry

  • Please help a newbie with simple equal methode

    With my little know how of java I have written this methode
    to test the equality of two LinkedSet data structures.
    provided that the linkedSet class and the iterator are
    implemented correctly , can some one help me please to
    figure out what is wrong or give an alternate solution.
    Thanks in advance
    * Return true if this set and the parameter contain
    * exactly the same elements
    public boolean equals(SetADT setADT) throws IllegalStateException
    boolean result=false;
    if(this.size()!=setADT.size())
    throw new IllegalStateException(" Two sets are not equal");
    Iterator a=this.iterator();
    Iterator b=setADT.iterator();
    LinkedSet temp1=new LinkedSet();
    LinkedSet temp2=new LinkedSet();
    while(a.hasNext())
    temp1.add(a.next());
    temp2.add(b.next());
    Iterator c=temp1.iterator();
    Iterator d=temp2.iterator();
    if(c.next().equals(d.next()))
    temp1.remove(c.next());
    temp2.remove(d.next());
    result=(temp1.isEmpty()&&temp2.isEmpty());
    return result;

    while(a.hasNext())
      temp1.add(a.next());
      temp2.add(b.next());
      Iterator c=temp1.iterator();
      Iterator d=temp2.iterator();
      if(c.next().equals(d.next())) // <- Watch missing braces !
         temp1.remove(c.next());
      temp2.remove(d.next());
      result=(temp1.isEmpty()&&temp2.isEmpty());
    }Whay are you doing all that extra iteration stuff?
    I mean, I see what you are getting at ...towards the empty final objects. But isn't that a really exhaustive way the get to the end of this problem? The end doesn't justify the means.
    Start assuming result = true
    In your while loop...
    Just test 'if (!(a.next().equals(b.next())) {'
    If it ever does, something didn't match.
    So set result = false and 'break' from the loop.
    At the end of the method, result will be either true or false accordingly.
    Code that up and it should work better. But ...can we assume the iterators traverse the set in the same order always? That is the question I would ask here.

  • Can anyone help a newbie with "An unknown error (-609)" message?

    I just bought my first iPod a week ago and so far, I haven't had any problems with iTunes. But today, I can't get any artwork for CD's I'm importing because of "An unknown error (-609)." I checked, and my iTunes is up to date. Is there anything I can do about this or is this the kind of problem that will come and go on its own?

    No. I bought it online. Still can't restore. Pls help me. Thanks!

  • Troubleshoot help (Macbook pro) with app store and messages app

    I believe I am having a problem connecting to the apple servers because many of my apps that connect to the apple servers don't work.
    Whenever I open the app store, it loads continously but nothing shows up. No apps open, it stays as a blank page.
    Also, when I open the 'messages' app a huge error message immediately pops up and the app doesn't open at all.
    However these apps both work when I login to a guest account.
    Anybody know what the problem could be? Thank you!

    Is your computer authorized in the Store menu in iTunes?
    If yes, try to deauthorize and authorize again.

  • Please help a newbie with a video render problem!

    Im new to After Effects so please forgive if this is a silly question.
    I have a Edge Animation with a background color of #ffa800
    I have imported a video into After Affects which has a transparent background.
    Research tells me that video is never really transparent so I am creating a solid layer in AE, placing video above it and setting the blend mode to "screen"
    I now have a video with a background color of #ffa800.
    However, when I export / render the video out and import into my Edge Animate project the background color of the video is off and does not match my Edge Animate background.
    I have spent all day experimenting with different export options rendering direct from AE and also via Media encoder. Im now completely stumped.
    I have also tried setting the video background to color #ffa800 and then masking my video. This saves me from having to use a blend mode of "screen" but I get the exact same results.
    Could anybody please give me some tips on where I am going wrong please. The back ground is so close but either slightly darker or lighter depending on what I have set which spoils the overall animation effect I am attempting to create.
    Thanks,
    Paul

    Without exact system information, render settings and so on nobody can tell you much. That aside, there are some fundamental failures in your plan. First, web colors mean nothing in AE or in most graphics programs for that matter due to the little subject of color management and possible quantization errors. Whatever colors you dial in, do so using the normal RGB sliders. Second, blending modes do not create transparency, even if for mathematical reasons the blending formula used may appear to eradicate certain colors. Third, you need to consider Gamma values. Video is not blending linear and both your computer screen as well as the video content itself may have a built-in Gamma. As a result, your blending operation could already produce wrong results like a slight haze, the encoding of the video file could introduce Gamma skew and then finally in the last step, whatever tool you use to display may apply dynamic corrections as well or in reverse, none at all. So it basically comes down to checking those things and properly calibrating/ adjusting your monitor and your system color settings and make use of color management in AE, if relevant. In the end, though, you will always see minor color deviations. It's inherent in how compressed formats like H.264 work. You can only try to minimize them as much as you can.
    Mylenium

  • Help this newbie with a 1067 error code on a SIMPLE ActionScript please

    Hi, I am new to this. I am creating a presention in flash and I want to link to the narration mp3 files as oppsed to embedding them as they will change in the future..
    I have two different books with 2 different  pieces of script to use though the overall process is the pretty much same. For both I get the exact same error.
    See below:
    1120: Access of undefined property nar1.

    Thanks Ned.
    It's the posting. I had a nice little post written up for my initial request but when I posted-it truncated and I had to retype everything (it's the kind of morning I am having ) I will fix my typing.
    I suppose I could add the mp3 files to the library and update that way but I was hoping to set the files up so that files could be overwritten as the slides were changed or swapped out without the extra steps.

  • My girlfriend just bought a new iphone and needs me to help from home with her apps.  How can i see them? When I log in i see my apps and my music

    My girlfriend needs me to log in to itunes to help her w her apps. but when i do all i see are mine. i am logged into her acct???

    Welcome to the Apple Community.
    You can't keep swapping iTunes accounts to use other people's apps or you will locked out of changing back to your own account. I'm not sure how you can help her with her apps from another device.

  • TS4040 I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs re

    I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs repairing. So I click on Repair, and once again I'm prompted for a password, which I enter, then the same error box opens, and so it goes. Can anyone help me with this problem? I'd greatly appreciate it.
    Thor

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click the following line to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -Rh $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Step 1 should give you usable permissions in your home folder. This step will restore special attributes set by OS X on some user folders to protect them from unintended deletion or renaming. You can skip this step if you don't consider that protection to be necessary, and if everything is working as expected after step 1.
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • HT4972 the apps weve downloaded are not working.  please help,  extremely frustrated with our ipod 4

    the apps we have downloaded are not working,  please help,  extremely frustrated with our ipod 4

    See my previous reply for for the apps closing.
    For the wifi problem:
    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect OK before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network       
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • I'm help a friend with a new 4S iPhone.  He's converting from an old 3GS.  We've gone throughout the activation, update to iOS 5.0.2 and restored.  Now I'm surprised to find that the Facetime app is not on his new 4S iPhone.  How do we fix this?

    I'm helping a friend with a new 4S iPhone.  He's converting from an old 3GS.  We've gone throughout the activation, update to iOS 5.0.2 and restored.  Now I'm surprised to find that the Facetime app is not on his new 4S iPhone.  How do we fix this?

    I would suggest you read the user guide.  There IS no Facetime App for the iPhone.
    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf
    < Edited By Host >

  • Help with App-World PLEASE

    I bought a second-hand Blackberry Curve 8520 today, and called my provider, Virgin asking them if they could help with App-World, they left me on hold for nearly 30 minutes so I hung up. I have got my BBM sorted, but when I try to use the App World it says that it is having trouble connecting to the Blackberry App World Server and that I should verify my network connections. I have no idea what this means and really need help.
    Thank you

    Sorted it now

  • Hello, I have problems with app store Your payment method is not valid in this Store. Please enter a new payment method. Could you help me, please?

    I have tried 3 cards already but still the same problem with app store Your payment method is not valid in this Store. Please enter a new payment method.
    Is there any ways to solve the issue?
    Thank you in advance for your help!

    If you still have problem, contact iTune Support
    https://ssl.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • Preview doesn't close file when app is "closed"

    Try this on Mountain Lion (any version): 1. Open a JPEG or PDF file in Preview, view the file (make sure it's a scratch file that you dont mind deleting). 2. Quit Preview. 3. Drag the just-viewed JPEG or PDF to the Trash. 4. Empty the Trash At step 4

  • 10g - Calendar Prompt -- once selecting date -go - timestamp is coming.

    10g - Once I select date in the calendar prompt and after click on GO it is appending timestamp. I am using col(datetime) < Calenderprompt value. Colum format - dd-mm-yyyy Could you please explain me how to work with calendar prompt on date,datetime.

  • New to RAC

    Hi, I have been using Oracle 9i and 10g for several years and have worked extensively in all DBA tasks for single instance databases. But I have never worked with Oracle RAC. I have read a lot of RAC details on internet, but it seems it is not possib

  • Materialized view being ignored

    Hi all Running Oracle 10.2.0.3 on Solaris 9. I'm not sure how much info to provide at this stage but i'm having a problem with a materialized view. The database contains tens of thousands of digitized books and an application to help manage all the d

  • Closing br tags in HTML5

    I'm working in HTML5, and don't want to declare my Doctype as XHTML. I do want my br tags formatted as <br /> without having to constantly use Replace. Is there any way to do this?