Can I trade in my old iPad 2 for the new iPad 3?

I bought the iPad 2 about 4 months ago. It's near brand-new, with no scratches and no damage. I was hoping to trade it in to the Apple Store for a new one, either get the price of the iPad 2 taken of the price of a new one or get the new one free.
Thanks, Rob

How to Sell Your Old iPad
http://tinyurl.com/85d69lk
 Cheers, Tom

Similar Messages

  • How do I trade in my old Ipod Nano for the new one?

    How do I trade in my old Ipod Nano for the new one?

    You can trade in your old iPod at your local Apple Store for a 10% discount towards the purchase of a new one. 
    If you are referring to the 1G Nano recall, see this page.
    http://www.apple.com/support/ipodnano_replacement/
    B-rock

  • Can i trade my ipod touch 4g 8gb for the new 5g

    Hi i bought my ipod touch 4g 4 months ago and now i saw the ipod 5g and i really want to buy it but the bad thing is that my ipod is only 8gb while the ipod 5g is in 32 gb so what i was wondering is whether they would let me trade my old ipod for the new one or whether they would give me a discount. I have 200 dollars saved up but its still not enough to buy the new one.By the way i'm only 13 so please no harsh answers
    Thanks

    If you purchased it within the last 14 days you can return it for a full refund and then purchase the 5G. Otherwise Apple will only give you a 10% recycling discount if you turn in an old iPod and purchase a new one.

  • I have bought a new Mac Book Pro, and I need to know how I can move Aperture from my old Mac Book to the new one..

    I have bought a new Mac Book Pro, and I need to know how I can move Aperture from my old Mac Book to the new one..

    It begins with: F-285-NER-151-QBQ-and continues with 5 more 3 or 4 letters/numbers..
    Yes, that is the number. And what version of Aperture have you installed? The same version as on your old Mac?
    But it don´t work on my new Mac...
    In what way does it not work? Does it require you to enter a licence number for Aperture 2 as well? That will be necessary, if your serial number is an upgrade serial number. Then you will have to enter all previous numbers as well.
    Or does Aperture not accept the number as correct? Then check the spelling; some letters are easily confused like "I" and "1" and "O" and "0". Do not use the number pad to enter the numbers.
    See: Troubleshooting Professional Application Serial Numbers
    Regards
    Léonie

  • TS3992 I lost my iphone 4, i now have an iphone 5. I tried to restore the phone from the back up but i accidently restored the back up intead. now i can't seem to access the old back ups for the new phone. Does this mean Icloud has deleted the old back up

    I lost my iphone 4, i now have an iphone 5. I tried to restore the phone from the back up but i accidently pressed "restored back" up intead.
    Now i can't seem to access the old back ups for the new phone. Does this mean Icloud has deleted the old back ups?
    Help!
    xD

    Help for forgotten passcode >   iOS: Forgotten passcode or device disabled after entering wrong passcode
    When you have access to your iPhone again, FaceTime is a pre installed app that cannot be removed.
    Try a search >  iOS: Understanding Spotlight Search

  • I have a new ipod nano to replace a previous one. I can't copy over my old playlists on to the new ipod. have tried selecting the playlists I want to sync but when I click sync , nothing happens

    I have a new ipod nano to replace a previous one. I can't copy over my old playlists on to the new ipod. have tried selecting the playlists I want to sync but when I click sync , nothing happens

    You may refer to this tutorial, it's about how to fix iTunes sync problem with iPod. Hope it helps. Feel free to email me if you need further help.

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • How is it possible for me to turn in my old iPhone 4s for the new iphone 5 for the lowest price

    how is it possible for me to turn in my old iPhone 4s for the new iphone 5 for the lowest price

    You would have to sell your iPhone 4S for cash to then buy the iPhone 5.
    http://gizmodo.com/5934778/where-to-sell-your-iphone-4s-for-the-most-money

  • I have a new mac and want my old photoshop on it , how get i the old serial key for the new ?

    I have a new mac and want my old photoshop on it , how get i the old serial key for the new ? My old mac is deleted ...

    We would need to know the version of Mac OS you are running and the version of Photoshop you want to install.
    The serial number is the tricky part. If you have no idea where you placed it and did not register your product with Adobe, your chances are very low of retrieving it.

  • Can I exchange the old iPod nano for the new iPod nano?

    I was wondering if I can exchange my old iPod nano for a new one even if it costs a tiny bit extra.

    Hi Deborah,
    Your profile doesn't say what country you live in, but for example, if you go to the US Apple online store, you can click on the
    b Sales and Refunds
    link at the bottom of the page, to find Apple's policy.
    I'd suggest you dig a bit deeper into the online store site until you get to the appropriate
    b education store
    webpage, in case the
    b Sales and Refunds
    links at the bottom of that page leads to a modified policy.
    And even if you are past the stated
    b Refunds
    period, you have nothing to lose by calling the appropriate number (eg. in the US: 1-800-676-2775) to see if you can get a Return Material Authorization, especially since you wish to order a new computer at the same time. The worst they can say is "no".
    I'm assuming the iBook transaction was entirely online, but if it was instead bought through a campus bookstore to get the educational discount, the campus bookstore would then be another place to approach to see if they have different policies to the online store.
    best of luck,
    ...ben
    PS. I assume you know that this is a user-to-user discussion forum, and Apple won't respond to the questions you post here? But you will certainly find empathetic, fellow Mac owners who are happy to help you if they can.

  • Can i change my old iphone 5 for the new one even though i bought the old one around november?

    I bought my iphone 5 unlocked from a retail apple store around november of 2012. I have had it on simple mobile but i only get edge. I was thinking if i could go with tmobile and get a better speed with this iphone? And if not, if there is a way to change my iphone 5 for the new one for no cost or atleast a low one?

    No. Your "problem" isn't covered by the warranty. It's not malfunctioning. It's working exactly as it was designed to. Sell your phone and use the proceeds to buy a new one.
    You can't get a replacement from your car just because the newer models off the line are being built with a feature yours didn't come with.

  • If i were to trade in my itouch second gen for the new itouch will i get a dicount?, if i were to trade in my itouch second gen for the new itouch will i get a dicount?

    i have a i touch 1st or secong gen but i wann trade in my old one to get a new one with a discount is that possible?

    There are no trade ins.
    You can bring an old ipod in to Apple and they will have it recycled and they will give you a 10% discount on a new one for doing this.

  • Is there anyway to either trade in your old Macbook Pro for a new version, or get a new power cord when the old one has been damaged?

    Well i was just wondering.. since i do have a older version of the Macbook Pro.. and the fact that the power cord has been damaged

    You can always get a price on what an Apple affiliate would give you for your old MacBook Pro by going to http://www.apple.com/recycling/gift-card/faq.html and reading the instruction for the reuse program. Or you can sell your old one on eBay (that's what I did - you'll get more for it). Apple doesn't do a simple trade-in.
    Your cheapest route is just to buy a new adapter. If you don't know which adapter to get, call Apple and they can tell you, or visit your local Apple Store. They're about $80.
    Good luck,
    Clinton

  • HT1320 Could I trade in my old ipod nano for a new one or something?

    My ipod nano is from 2009. The hold button doesn't work anymore; The battery doesn't last me as long as it used to and it keeps crashing.

    Try trading in your iPod Nano with a company like http://NextWorth.com They'll give you cash for your old device (even if all the buttons aren't working). Then you can use that money to offset the cost for a new iPod.

  • Can I use my iphone as a hotspot for the new ipad thru Verizon?

    I currently own an iphone and have service thru Verizon.  Would like to purchase the new ipad.  I didn't know if I needed to spend the extra money for the wi-fi-4g cellular (verizon) and have to pay for the service monthly or could I use my iphone as my hotspot?  Any advise would be great!   Thanks!

    Verizon does offer Personal Hotspot (aka "tethering") for the iPhone. You will have pay extra for the service. Contact Verizon to get pricing.
    Regards.

Maybe you are looking for