HT5457 can anyone share more info about the Passbook feature.  seems like it would be useful, but nothing happens when i try to launch it on my iPhone

how do you use the new passbook feature that appears on your iPhone with the new iSO6?  i cant seem to get it to launch, i have no ideas how to use it, it seems like it would be a great tool, HELP!

You need to download apps that are compatible with passbook.  There are less than 20 available right now I'd say
Such as:
Target
American Airlines
Fandango
Ticket Master
If you click the link to the app store through passbook and get an error, use this article to fix it: http://www.macworld.com/article/2010185/fix-passbooks-app-store-error-in-ios-6.h tml
You can also use this site: http://www.passsource.com/ to create your own cards such as Blockbuster card, petco card, petsmart card, etc
To add to passbook once you've downloaded compatible apps try the following:
So if you have the target app you need to go into the target app > my target> mobile coupons > scroll to bottom of page  and click "add to passbook"
My assumption is that you need to add things to passbook through the target app or american airlines app and so on.

Similar Messages

  • How can I quit the photos app? It has been trying to create a library for hours but nothing happens. when I try to quit, it won't let me.

    How can I quit the photos app? It has been trying to create a library for hours but nothing happens. when I try to quit, it won't let me. Have just upgraded from iPhotos so don't want to lose any content.

    How can I quit the photos app? It has been trying to create a library for hours but nothing happens. when I try to quit, it won't let me. Have just upgraded from iPhotos so don't want to lose any content.
    Force-quit Photos as recommended by Arsenal1607.
    Make backup of your iPhoto Library and run the iPhoto Library First Aid tools to repair the permissions on your library and rebuild the iPhoto Library.
    To launch the First Aid Tools hold down the  alt/option and the command key simultaneously while double clicking the iPhoto Library to launch the iPhoto Library First aid tools. You'd to hold down both keys firmly and long enough, until the First Aid panel will appear.
    Try both the options "Repair Permissions" and "Rebuild library".  Then try again to migrate the iPhoto Library to Photos by dragging it onto the Photos icon in the Dock.
    Make sure, you have plenty of free storage. Don't try the migration, if you are running out of storage.

  • I uninstalled my desktop CC app because nothing happenes when I try to launch it.  How do I go about getting it downloaded and reinstalled?

    I uninstalled my desktop CC app because nothing happened when I try to launch it.  How do I go about getting it downloaded and reinstalled?

    clean first - Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    then reinstall, https://creative.adobe.com/

  • How can i get more info about the sent data in RTP?

    Hello.
    I'm working with the examples AVTransmitt2 and AV Receive2 and i want to get more information about the data that it is being sent to de receiver side. In AVTrasmitt2 i only see a calling to processor.start();. How could i know each packet that AvTransmit2 sends to the other side. I want info like the size of the data, the quality, format, etc..

    Hi!
    As I mentioned above. RTPSocketAdapter has two inner classes, SockOutputStream and SockInputStream.
    SockOutputStream have a write method which is called when RTP data is sent over the NET. SockInputStream have a read method which is called when RTP data is received.
    If you for instance want to know exactly what is sent you can parse the byte array that comes into write.
    Like this:
    * An inner class to implement an OutputDataStream based on UDP sockets.
    class SockOutputStream implements OutputDataStream {
         DatagramSocket sock;
         InetAddress addr;
         int port;
         boolean isRTCP;
         public SockOutputStream(DatagramSocket sock, InetAddress addr, int port, boolean isRTCP) {
              this.sock = sock;
              this.addr = addr;
              this.port = port;
         public int write(byte data[], int offset, int len) {
              if(isRTCP){
                   parseAndPrintRTCPData(data);               
              }else{
                   parseAndPrintRTPData(data);
              try {
                   sock.send(new DatagramPacket(data, offset, len, addr, port));
              } catch (Exception e) {
                   return -1;
              if(debug){
                   System.out.println(debugName+": written "+len+" bytes to address:port: "+addr+":"+port);
              return len;
    private void parseAndPrintRTPData(byte[] data) {
         // part of header, there still left SSRC and CSRC:s
         byte[] rtpHeader = new byte[8];
         System.arraycopy(data, 0, rtpHeader, 0, rtpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // extension
         int x = (word & 0x10000000) >>> 28;
         System.out.println("extension: "+x);
         // CSRC count
         int cc = (word & 0x0F000000) >>> 24;
         System.out.println("CSRC: "+cc);
         // marker
         int m = (word & 0x00800000) >>> 23;
         System.out.println("marker: "+m);
         // payload type
         int pt = (word & 0x00700000) >>> 16;
         System.out.println("payload type: "+pt);
         // sequence number
         int seqNbr = (word & 0x0000FFFF);
         System.out.println("sequence number: "+seqNbr);
         // timestamp
         int timestamp = buffer.getInt();
         System.out.println("timestamp: "+timestamp);
    private void parseAndPrintRTCPData(byte[] data) {
         // this only works when the RTCP packet is a Sender report (SR).
         // All RTCP packets are compound packets with a SR or Receiver report (RR) packet first.
         // part of header, there is still the report blocks (see RFC 3550).
         byte[] rtcpHeader = new byte[28];
         System.arraycopy(data, 0, rtcpHeader, 0, rtcpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtcpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // reception report count
         int rc = (word & 0x0F000000) >>> 24;
         System.out.println("reception report count: "+rc);
         // payload type, which is 200 in this case (SR=200)
         int pt = (0x00FF0000 & word) >>> 16;
         System.out.println("payload type: "+pt);
         // length
         int length = (word & 0x0000FFFF);
         System.out.println("length: "+length);
         // SSRC of sender
         int ssrc = buffer.getInt();
         System.out.println("SSRC: "+ssrc);
         // NTP timestamp
         long ntp_timestamp = buffer.getLong();
         System.out.println("NTP timestamp: "+ntp_timestamp);
         // RTP timestamp
         int rtp_timestamp = buffer.getInt();
         System.out.println("RTP timestamp: "+rtp_timestamp);
         // sender's packet count
         int nbrOfSentPackets = buffer.getInt();
         System.out.println("sender's packet count: "+nbrOfSentPackets);
         // sender's octet count
         int nbrOfSentBytes = buffer.getInt();
         System.out.println("sender's octet count: "+nbrOfSentBytes);
    }I added a boolean isRTCP to the constructor so to know what sort of data is sent.
    Hope this clarifies things.

  • Can I get more details about the buys I seem to have made by itunes (credit card)

    I had amounts written of my credit card for apps I did not buy (I think). Can I somehow get a more detailled review of what I bought?

    Look at your purchase history.
    iTunes Store & Mac App Store: Seeing your purchase history and ...

  • I downloaded photoshop and it appears on my orders but nothing happens when I try to open the program

    i downloaded photoshop after using it as a trial and it appears on my orders under items with serial number but I cannot open application. Nothing happens when I try to start program. I click on photoshop elements and nothing happens

    You say you downloaded it, but did you install it? Are you using windows or a mac? And is this PSE 13?

  • After a HD crash, I have to reinstall Photoshop Element 12 and Premier Element 12. I still see the link in my purchases history but nothing happens when I click on the link. How can I get my softwares back?

    After a HD crash, I have to reinstall Photoshop Element 12 and Premier Element 12. I still see the link in my purchases history but nothing happens when I click on the link. How can I get my softwares back?

    Jeanval have you tried a different web browser?  For more information on how to download your purchased software please see http://helpx.adobe.com/creative-suite/kb/find-download-link.html.

  • I am trying to view my pay stubs online but nothing happens when I click on the link. Does anyone know why, I never had a problem viewing them with my pc?

    I am trying to view my pay stubs online but nothing happens when I click on the link. Does anyone know why, I never had a problem viewing them with my pc?

    Nobody knows why because you have not provided sufficient information. Web site? Browser? How do you see your pay stubs online? Company web site? Unsecure?

  • Supposedly you can play or download songs using the icloud download button, a cloud icon with a downward arrow inside. But nothing happens when I click or double click on it.

    supposedly you can download or play songs using the icloud download button, a cloud icon with a downward arrow inside. But nothing happens when I click or double click on it.

    You have to have music in your iCloud account to do that...when you open the Music app on your iPad, for example, you can access all music from iCloud that you have already placed in the iCloud or associated with iCloud.  That is not for downloading music you have not already purchased or downloaded.

  • TS1368 I recieve a message that I need to review my information because I've never used my ID in the store, but nothing happens when I click 'review'. So how CAN I review the account!?

    I recieve a message that I need to review my information because I've never used my ID in the store, but nothing happens when I click 'review'. So how CAN I review the account!?

    How to Change the Country for iTunes & App Store Accounts
    http://osxdaily.com/2013/05/24/change-country-itunes-app-store/
     Cheers, Tom

  • Can't delete favorites from face time. Hit the edit button at top of list, but can not delete. The red circles appear next to contact , but nothing happens when touch the delete button???

    Ok, new to this forum. I pad 2 FaceTime, new user.
    Have list of favorites in the face time app, but when hit edit at top of list, red circles appear, but nothing happens when touch delete,
    The delete red oval appears for fraction of second.
    This has to be software issue???
    Thx

    Click the Home button
    Then double click the home button again
    Hold your finger on the Phone App until it wiggles
    Click the minus button
    Reopen the App and try again

  • Help! My iPod 5th gen all the sudden will not turn on. I was using it earlier today, it has a full battery and worked fine earlier. Nothing happens when I try to restart/turn off, it just remains black. I plugged it into my pc and nothing happened.

    Help! iPod Touch 5th gen.
    It worked fine earlier today, I was using it with no issues. I just picked it up to use it again and it's dead...nothing happens when I try to restart/shut off. I plugged it into my PC and nothing happens, my pc doesn't acknowledge it. Please help, I have 1500 pic of my daughter on here and they aren't backed up ..

    If your iPod Touch, iPhone, or iPad is Broken
    Apple does not fix iDevices. Instead, they exchange yours for a refurbished or new replacement depending upon the age of your device and refurbished inventories. On rare occasions when there are no longer refurbished units for your older model, they may replace it with the next newer model.
    ATTN: Beginning July 2013 Apple Stores are now equipped to do screen repairs/replacements in-house on iPhone 5 and 5C. In some cases while you wait. According to Apple this is the beginning of equipping Apple Stores with the resources needed to do most repairs for iPhones, iPads, and iPod Touches that would not require major replacements. Later in the year the services may be extended as Apple Stores become equipped and staffed with the proper repair expertise. So, if you need a screen repaired or a broken screen replaced or have your stuck Home button fixed, call your local Apple Store to see if they are now doing these in-house.
    You may take your device to an Apple retailer for help or you may call Customer Service and arrange to send your device to Apple:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Contacting Apple for support and service - this includes international calling numbers.
    You will find respective repair costs in the appropriate link:
    iPod Service Support and Costs
    iPhone Service Support and Costs
    iPad Service Support and Costs
    There are third-party firms that do repairs on iDevices, and there are places where you can order parts to DIY if you feel up to the task:
    1. iResq or Google for others.
    2. Buy and replace screen yourself: iFixit

  • I need to update my InDesign but the screen just keeps on saying InDesign downloading now but nothing happens, HELP PLEASE

    I need to update my InDesign but the screen just keeps on saying InDesign downloading now but nothing happens, HELP PLEASE

    Nobody can tell you anything without proper system info or other technical details.
    Mylenium

  • I have signed in to my account and am able to brouse media but not download or purchase anything. The "buy" button is also white instead of blue and nothing happens when I click to buy. I am able to make purchaces on the same account on my I phone as well

    I have signed in to my account and am able to brouse media but not download or purchase anything. The "buy" button is also white instead of blue and nothing happens when I click to buy. I am able to make purchaces on the same account on my iphone as well. What might be causing this issue?

    Having the same problem and i just thought it was me ? So frustrating went to my local Apple store and they told me to re-load Itunes again,Done that but still can not buy songs???????????

  • I am trying to finishing downloading a free app i just "agreed" to and it says DownloadNow but nothing happens when i press the OK button

    I am trying to finish downloading a free app.
    I already agrred to the terms.
    the next says Download Now but nothing happens when I press the OK button

    Hi helpcmo,
    Thanks for visiting Apple Support Communities.
    If your free app isn't downloading, first try restarting the iPhone:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Next, you may want to verify whether the issue is due to the iTunes Store connection:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    If the behavior persists, try the remaining steps in our iPhone assistant:
    http://www.apple.com/support/iphone/assistant/phone/
    All the best,
    Jeremy

Maybe you are looking for

  • Migration 10.1.3 to 11 Error

    I migrated application from jdeveloper 10.1.3 to 11 amd I got the next error. Can you help me please? Regards Jose [11] Accumulated view/DataBindings.cpx from file:/C:/oracle/Middleware/jdeveloper/system/system11.1.1.0.31.51.88/o.j2ee/drs/SosTUSA/Sos

  • How do you get rid of Facemoods Enchanced search when you open a new tab? I want Bing.

    My homepage is Bing but every tme I open a new tab Enchanced search appears.

  • Problems in startup class (MDB on Weblogic 7.0 / IBM MQ)

    Hello friends,           I am trying to communicate with IBM MQ through Weblogic 7.0 SP2 and           using MDB.           This is a bit strange but I had to reinstall Weblogic and I tried to           deploy the Startup class . However I am getting

  • Ship To addresses Template

    Hi, Although there are several post threads on this issue, i got confused to actually use which template. I want to add the ship to address to my existing BP database. Previously, i only upload the bill to address. My question is, which template shud

  • External loading

    Hi guys.  Just have a couple of questions about external loading. Firstly, in order to reduce the file size of my swf, I want to place all the video and image content on a server and just loading it in using as.  Is this done using a standard URLRequ