Can someone please help? I need to delete an app but do cannot access the phone

I have an android device that registers on verizon as a samsung fascinate for my old phone number (number hasn't been active since early february). I attempted to download an app a few minutes ago to speed up my phone, but the app screwed up and will not let me exit out of it, and now I have lost access to the phone. I don't want to factory reset the phone so is there any possible way to fix this problem? If not is there at least a way to recover my contacts?

    Ryan_Gates97,
I'm glad that you have reached out to us today. With this device have you been able to power the device off and remove the battery to see if you can get out of the application? Was this an application that was downloaded from Google Play Store? Is the phone actually active on a number now? I hope to hear back from you soon.
KevinR_VZW
Please follow us on Twitter @VZWSupport

Similar Messages

  • TS1368 I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

    I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

    I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

  • Just updated my iPad to IOS5. It removed all my purchased applications. Can someone please help me to find my purchased apps?

    This is a so frustrating. I had an iPadfor over a year now and never had any problems. Changed the computer this months.
    Downloaded new iTunes and IOS5 for iPad. It removed everyting from my iPad (photos, music and all apps). I was able to get muisic and phtos back on, however purchased iPad apps are missing in actions. Can someone please help? Thank you.

    I have the same problem, since the update two days ago, appears when you always unlock the Apple logo and a loading bar (see file below). Have been three times all over itunes set to the factory settings and reload. Still the same. Now also in use, always on the screen with the Apple logo. Please help me, what's up?

  • Can Someone Please Help Me Create a Blog Reader App For My Blog?

    Hi ! I am trying to create a blog reader app by using RSS feed for my blog. I found this tutorial on MSDN here Create a Blog Reader using C# and XAML
    But the problem is, it says some parts will not work with VS 2013. I even tried to follow each step of the tutorial but get stuck with some "navigation parameter" type-casted to a class. I couldn't understand what do I replace that with as it was
    never declared earlier somewhere. Can someone help me with the code? Please, I will be very thankful.
    I am using VS 2013 Community update 4 and Windows 8.1

    Here is the code and the error i am facing. I tried my best to do other changes like styles for buttons, textblocks etc that are new in 8.1
    protected override string DetermineVisualState(ApplicationViewState viewState)
    // Update the back button's enabled state when the view state changes
    var logicalPageBack = this.UsingLogicalPageNavigation(viewState) && this.itemListView.SelectedItem != null;
    var physicalPageBack = this.Frame != null && this.Frame.CanGoBack;
    this.DefaultViewModel["CanGoBack"] = logicalPageBack || physicalPageBack;
    // Determine visual states for landscape layouts based not on the view state, but
    // on the width of the window. This page has one layout that is appropriate for
    // 1366 virtual pixels or wider, and another for narrower displays or when a snapped
    // application reduces the horizontal space available to less than 1366.
    if (viewState == ApplicationViewState.Filled ||
    viewState == ApplicationViewState.FullScreenLandscape)
    var windowWidth = Window.Current.Bounds.Width;
    if (windowWidth >= 1366) return "FullScreenLandscapeOrWide";
    return "FilledOrNarrow";
    // When in portrait or snapped start with the default visual state name, then add a
    // suffix when viewing details instead of the list
    var defaultStateName = DetermineVisualState(viewState);
    return logicalPageBack ? defaultStateName + "_Detail" : defaultStateName;
    errors:
    Error 1
    An object of the type "System.Object" cannot be applied to a property that expects the type "Windows.UI.Xaml.Data.IValueConverter".
    I am using it here
    <TextBlock Text="{Binding PubDate, Converter={StaticResource dateConverter}}"
    //DateConverter.csusing System;
    using Windows.Globalization.DateTimeFormatting;
    using Windows.UI.Xaml.Data;
    namespace WindowsBlogReader
    public class DateConverter : Windows.UI.Xaml.Data.IValueConverter
    public object Convert(object value, Type targetType, object parameter, string culture)
    if (value == null)
    throw new ArgumentNullException("value", "Value cannot be null.");
    if (!typeof(DateTime).Equals(value.GetType()))
    throw new ArgumentException("Value must be of type DateTime.", "value");
    DateTime dt = (DateTime)value;
    if (parameter == null)
    // Date "7/27/2011 9:30:59 AM" returns "7/27/2011"
    return DateTimeFormatter.ShortDate.Format(dt);
    else if ((string)parameter == "day")
    // Date "7/27/2011 9:30:59 AM" returns "27"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{day.integer(2)}");
    return dateFormatter.Format(dt);
    else if ((string)parameter == "month")
    // Date "7/27/2011 9:30:59 AM" returns "JUL"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{month.abbreviated(3)}");
    return dateFormatter.Format(dt).ToUpper();
    else if ((string)parameter == "year")
    // Date "7/27/2011 9:30:59 AM" returns "2011"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{year.full}");
    return dateFormatter.Format(dt);
    else
    // Requested format is unknown. Return in the original format.
    return dt.ToString();
    public object ConvertBack(object value, Type targetType, object parameter, string culture)
    string strValue = value as string;
    DateTime resultDateTime;
    if (DateTime.TryParse(strValue, out resultDateTime))
    return resultDateTime;
    return Windows.UI.Xaml.DependencyProperty.UnsetValue;
    Error 2
    The name "DateConverter" does not exist in the namespace "using:WindowsBlogReader".
    (DateConverter.cs is a class, I really don't understand why this error comes, i have decalared a local resource in app.xaml for it)
    <Application.Resources>
    <ResourceDictionary>
    <local:DateConverter x:Key="dateConverter"></local:DateConverter>
    Error 3
    'WindowsBlogReader.SplitPage.DetermineVisualState(Windows.UI.ViewManagement.ApplicationViewState)' is a new virtual member in sealed class 'WindowsBlogReader.SplitPage'
    Error 4
    'WindowsBlogReader.SplitPage.DetermineVisualState(Windows.UI.ViewManagement.ApplicationViewState)': no suitable method found to override
    Here is the visual state code for my 1st Page : ItemsPage.xaml
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscape"/>
    <VisualState x:Name="Filled"/>
    <!-- The entire page respects the narrower 100-pixel margin convention for portrait -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemGridView"
    Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="96,136,86,56"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The back button and title have different styles when snapped,
    and the list representation is substituted
    for the grid displayed in all other view states
    -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView"
    Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Visible"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemGridView"
    Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    Visual State code for SplitPage.xaml (2nd Page)
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscapeOrWide"/>
    <!-- Filled uses a simpler list format in a narrower column -->
    <VisualState x:Name="FilledOrNarrow">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="420"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="ItemTemplate">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NarrowListItemTemplate}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="60,0,66,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The page respects the narrower 100-pixel margin convention for portrait, and the page
    initially hides details to show only the list of items
    -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="100,0,90,60"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    When an item is selected in portrait the details display requires more extensive changes:
    * Hide the master list and the column is was in
    * Move item details down a row to make room for the title
    * Move the title directly above the details
    * Adjust margins and padding for details
    -->
    <VisualState x:Name="FullScreenPortrait_Detail">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.RowSpan)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="titlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailGrid" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0,0,0,60"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="100,0,90,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The back button and title have different styles when snapped, and the page
    initially hides details to show only the list of items
    -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="320"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="ItemTemplate">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NarrowListItemTemplate}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,0,0,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    When snapped and an item is selected the details display requires more extensive changes:
    * Hide the master list and the column is was in
    * Move item details down a row to make room for the title
    * Move the title directly above the details
    * Adjust margins and padding for details
    * Use a different font for title and subtitle
    * Adjust margins below subtitle
    -->
    <VisualState x:Name="Snapped_Detail">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.RowSpan)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="titlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailTitlePanel" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>-->
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailTitlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>-->
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,0,20,0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailGrid" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0,0,0,60"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource TitleTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemTitle" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemSubtitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource CaptionTextStyle}"/>
    </ObjectAnimationUsingKeyFrames>-->
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    and finally , a Basic Page(DetailPage.xaml)
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscape"/>
    <VisualState x:Name="Filled"/>
    <!-- The entire page respects the narrower 100-pixel margin convention for portrait -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!-- The back button and title have different styles when snapped -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentViewBorder"
    Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,5,20,20"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>

  • HT5037 Can someone please help me recover my pictures from iPhoto?  I upgraded to the newest version of iPhoto and now I can't get to my pictures.  I even downloaded the upgraded but I don't know what to do next.

    I recently upgraded to the newest version of iPhoto.  I used to have version 7, I believe.  Now that I have updated I can no longer see my pictures.  I downloaded the upgrader but I don't know what to do next.  Please help!

    Go to your Applications/ Utilities folder. Finder the upgrader app. Double click it to run it.

  • TS2776 Can someone please help me im getting a Error message when syncing with iTunes "The iPhone "name"cannot be synced. A duplicate file name was specified"

    can some one help pleace!

    In the course of your troubleshooting to date, have you worked through the following document?
    iTunes: Troubleshooting issues with third-party iTunes plug-ins

  • I've tried to install flash player several different times ans each time i get a connection error message.It downloads fine and when i run the file to start install,it installs up to 5% and then i get the connection error message.Can someone please help m

    I've tried to download the flash player several different times and each time i get a connection error message.It downloads fine and when i run the file to start install, it installs up to 5% and then i get the connection error message. I've tried disabling my antivirus software, closing my browser for install and nothing.Can someone please help me? I'm using Firefox.

    Hi!
    I had the exact same issue, being on a mac. If you are on a mac and the connection error message occurs, then use this link http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player_osx.dmg
    It allows you to download it offline, which is what I used.
    Hope I was help!
    -Haroon

  • HT4061 i have a iphone 3gs and recently I Erase All Contents and Settings, now my phone is asking me to update to itunes but when I do it comes up with the message...error 10.15, can someone please help?

    i have a iphone 3gs and recently I Erase All Contents and Settings, now my phone is asking me to update to itunes but when I do it comes up with the message...error 10.15, can someone please help?

    Your headline says iPhone 3GS, but your text says 3G.
    iPhone 3G is not compatible with iOS5. 3GS is.

  • I have iPad 4th Generation with iOS 6.1.3  Since my iBooks was updated to version 3.1.1 I cannot open pdf file attachment in my email.  When I tap of the attachment, the iBooks icon no longer show itself.  Can someone please help?

    I have iPad 4th Generation with iOS 6.1.3  Since my iBooks was updated to version 3.1.1 I cannot open pdf file attachment in my email.  When I tap of the attachment, the iBooks icon no longer show itself.  Can someone please help?

    Thanks for all (Ocean20 & Courcoul) who replied. 
    Reset the device did not help me but it does triggers me to attempt to resend the PDF file attachment on email--and it works the 2nd time.  My problem is now solved.
    The Adobe Reader is very helpful--it allows me to scroll through the document easily, unlike iBooks, where I cannot scroll straight up or down.

  • I can log onto Facebook ,and my yahoo mail but the page doesn't load up all the way.My messages and various things aren't showing up.Can someone please help?

    I can log into facebook and yahoo but the will not finish loading up, I had this problem with 1e9 but i switched to firefox 5.0.1 and the problem with ie9 was it said my javascript was turned off, but i had it turned on.Thats when I switched to firefox.I am running this on a windows vista home premium system. Can someone please help me?

    You may have to open Mail, go to the upper left corner of the screen and click on the word Mail, open Preferences, click on Accounts, and make sure your Gmail account is still fully set up properly with all proper account and incoming and outgoing Mail Servers properly completed.  When you added iCloud capability it may have upset the account settings for Gmail.
    Hope this helps

  • I tried updating my iPod 5th gen to iOS 8 but it only shows me a picture of the iTunes logo and a charger at the bottom, I'm not sure what this means or what I need to do. Can someone please help me?

    I tried updating my iPod 5th gen to iOS 8 but it only shows me a picture of the iTunes logo and a charger at the bottom, I'm not sure what this means or what I need to do. Can someone please help me?

    After restoring to factory settings/new iPod you will then have to restore from backup
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:                         
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • My iphone 4 won't connect to my mac. It says that I need to install the lastest version of itune (11.1) but when I try to update itunes it says that I have the current version 10.6.3. Can someone please help!

    Hi,
    My iphone 4 won't connect to my mac book, it says that I need to install to latest version of itunes 11.1. When I go to itunes and try to update, it says that I have the latest version (10.6.3). Can someone please help me!
    thanks

    You are probably running OS 10.4 or 10.5 on a PPC Mac.  No version of  iTunes higher than 10.6.3 is available for these older Macs.  I have the same problem, and while I can still use the PPC to sync my iPod, it can't be used to sync an iPhone 4 or higher.  The only solution, as I discovered after upgrading to the iPhone 4, is to buy a newer Mac.  I was able to get a 2006 MacBook running Lion for under $300, and that has been a lifesaver.

  • HT5824 My iPad has been stolen. I need the serial number to report it to the authorities. I dont have the box it came in or the receipt and its not on my itunes on the computer because I didnt use it or music, just pictures. Can someone please help???

    My iPad has been stolen. Someone broke into my house on Tuesday. I have already tried locking it through icloud.  I have reported this to the authorities but they cannot do much unless I give them the serial number to the iPad. With the serial number they can put it into a database and send that inormation to pawn shops, so i the theie tries to pawn it, the pawn shop employeee can convscate the iPad and hand it over to the authorites. I need the serial number to report it to the authorities. I dont have the box it came in or the receipt and its not on my itunes on the computer because I didnt use it or music, just pictures. Can someone please help??? btw, some words are misspelled becasue the letter that comes ater the letter E, doesnt work on my keybord.
    Thanks

    Serial Number
    http://support.apple.com/kb/HT4061
    Sign in to My Support Profile
    https://supportprofile.apple.com/

  • I need to download all of my photos from my iPhone 4S and my iPad 2 to my MacBook Air. I want to make sure all my photos are not lost and that they do not return to the original devices because of the cloud. Can someone please help ?

    I need to download all of my photos from my iPhone 4S and my iPad 2 to my MacBook Air because there is no more storage space available. I want to make sure all my photos are not lost and that they do not return to the original devices because of the cloud. Can someone please help ?

    Connect your devices to the computer with the USB cable (one device at a time) and import the photos via iPhoto or Image Capture.
    If you have not changed any default settings on your computer, iPhoto will automatically launch when you plug in the device. Then follow the import prompts.

  • When i turn on itunes, it crashes automatically with the error message saying "itunes has encountered a problem and needs to close." I've tried reinstalling itunes but its the same. CAN SOMEONE PLEASE HELP!!!

    when i turn on itunes, it crashes automatically with the error message saying "itunes has encountered a problem and needs to close." I've tried reinstalling itunes but its the same. CAN SOMEONE PLEASE HELP!!!

    Try:
    iOS: If you can't back up or restore from a backup in iTunes

Maybe you are looking for

  • Single iTunes with Multiple iPhones

    I have three iPhones. iPhone 3G 16GB, iPhone 4 16GB and iPhone 4 32GB I am having a problem syncing apps. I have different apps on each device, i sync the apps by using manual selection rather than automatic. The problem occurs when i buy new apps. S

  • Problems watching videos stored on TC

    I recently moved my video library from a firewire external hard drive to my new TC (dual band). My movies are stored as .avi files (ca. 700mb) and I watch them using VLC. Now, when watching files stored on the TC the video pauses, and has other incon

  • Why is my Mac running slowly

    Can anyone tell me why my computer is so slow.  Even typing suddenly stops on the screen.  Its a Mac OSX desktop.

  • My 4620 will not let me copy 8.5x15 help!!!!

    My 4620 will not hold the copy page size to 8.5x14 it defaults back to 11 and will not let me copy 14 ! I am stuck

  • /BIC/ namespace not modifiable, can't create PSA delete variant in process

    Hello, When I attempt to create a PSA delete process in a process chain, I get an error message as such: Namespace '/BIC/' must be set to 'changeable' (transaction SE06) Message no. R7063 I have had Basis dot his for me before and it worked, but it t