Can't click on buy-button in store for buying a movie from my iphone

when i go into the store i cant watch a trailer or buy a movie the field with the price is just grey
anybody a idea?

Hi ArisKrist_NL,
Thanks for using Apple Support Communities.
Use this article to troubleshoot the following iPhone Multi-Touch display.
For more information on this, take a look at this article:
iPhone, iPad, iPod touch: Troubleshooting touchscreen response
http://support.apple.com/kb/ts1827
Best of luck,
Mario

Similar Messages

  • How can I click Acrobat Form button from VB (Excel Macro)?

    I may be asking in the wrong forum, but I'm at my wit's end and think just about anyone with VB experience would be able to tell me what I'm doing wrong. Is there a forum for interapplication/ VB/ forms questions?
    Suffice to say, I know very little about VB (or any of the other languages behind the software), but I've adapted code which has allowed me to get almost everything I need done, thus far.
    I'm trying, desperately, to finalize a Macro which enables me to export a lot of Excel info into individual Acrobat Forms and save them all independently. This all works fine, but there is one last thing I've not been able to accomplish: I need to remote click (or 'focus on') a button in the Acrobat form in order to select the icon button (dynamically set image relevant to each individual form, base on excel cell). The button's name, in Acrobat, is 'Photo1' and it is located on the 3rd page of the form. I've several SendKeys commands in order to save each file with a unique, row specific name.
    Option Explicit
    Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
    Private Const SW_NORMAL = 1
    Public Const PDF_FILE = "Louisiana_Historic_Resource_Inventory Worksheet.pdf"
    Public Sub ClickMe()
        Application.Photo2_Click
    End Sub
    'this was an attempt to setup a sub which I'd call later...
    'all of the below stuff works fine- fills out the form, checks boxes, etc. as necessary
    Public Sub Export_Worksheet()
        Dim sFileHeader As String
        Dim sFileFooter As String
        Dim sFileFields As String
        Dim sFileName As String
        Dim sTmp As String
        Dim lngFileNum As Long
        Dim vClient As Variant
        Dim x As Integer
        ' Builds string for contents of FDF file and then writes file to workbook folder.
        On Error GoTo ErrorHandler
        x = 1
        sFileHeader = "%FDF-1.2" & vbCrLf & _
                      "%âãÏÓ" & vbCrLf & _
                      "1 0 obj<</FDF<</F(" & PDF_FILE & ")/Fields 2 0 R>>>>" & vbCrLf & _
                      "endobj" & vbCrLf & _
                      "2 0 obj[" & vbCrLf
        sFileFooter = "]" & vbCrLf & _
                      "endobj" & vbCrLf & _
                      "trailer" & vbCrLf & _
                      "<</Root 1 0 R>>" & vbCrLf & _
                      "%%EO"
        vClient = Range(ActiveSheet.Cells(989, 1), ActiveSheet.Cells(989, 90))
        Do While vClient(x, 1) <> vbNullString
        sFileFields = "<</T(Street Number)/V(---Street_Num---)>>" & vbCrLf & "<</T(Street Direction)/V(---Street_Dir---)>>"
    ''''''''''''theres a TON of the above correlations, all in the same format
            If vClient(x, 28) = "E" Then
            '     sTmp = Replace(vClient(1, 3), "-", "")
                sFileFields = Replace(sFileFields, "Cond-Excellent", "Yes")
            Else
                sFileFields = Replace(sFileFields, "Cond-Excellent", vbNullString)
            End If
            If vClient(x, 28) = "G" Then
                sFileFields = Replace(sFileFields, "Cond-Good", "Yes")
            Else
                sFileFields = Replace(sFileFields, "Cond-Good", vbNullString)
            End If
    ''''''''''''theres another TON of the above replacements, all in the same format
            sTmp = sFileHeader & sFileFields & sFileFooter
            ' Write FDF file to disk
            If Len(vClient(x, 1)) Then sFileName = vClient(x, 1) Else sFileName = "FDF_DEMO"
            sFileName = ActiveWorkbook.Path & "\Exports\" & sFileName & ".fdf"
            lngFileNum = FreeFile
            Open sFileName For Output As lngFileNum
            Print #lngFileNum, sTmp
            Close #lngFileNum
            DoEvents
            ' Open FDF file as PDF
            ShellExecute vbNull, "open", sFileName, vbNull, vbNull, SW_NORMAL
            Application.Wait Now + TimeValue("00:00:04")
            'Application.Photo2.Focus
    'PDF_FILE.Photo2.Focus
    'Application.Photo2_Click
            'Application.SetButtonIcon "Photo1", ActiveWorkbook.Path & "\Exports\" & "vClient(x, 1)" & "-1.pdf", 0
            'Application.Field.SetFocus "Photo1"
            Call ClickMe
    ''''above is where i'm trying to click the button, although I'd be just as happy if I could 'focus' on the button.
            Application.Wait Now + TimeValue("00:00:02")
            'Application.SendKeys (vClient(x, 1))
            'Application.SendKeys ("-1.pdf")
            'Application.SendKeys ("{ENTER}")
            'SetForegroundWindowap
            Application.SendKeys ("%fap")
            Application.Wait Now + TimeValue("00:00:03")
            Application.SendKeys (vClient(x, 1))
            Application.SendKeys ("{ENTER}")
            'If Len(vClient(x, 1)) Then PrintLine (vClient(x, 1)) ' Else sFileName = "_Check-Parcel"
            ''If Len(vClient(x, 1)) Then SendKeys = Len(vClient(x, 1)) Else sFileName = "_Check-Parcel" {ENTER}
            ''ShellExecute vbNull, "GetSaveFileName", sFileName, vbNull, vbNull, SW_NORMAL & vbCrLf
    '        ShellExecute vbNull, "print", sFileName, vbNull, vbNull, SW_NORMAL
            Application.Wait Now + TimeValue("00:00:02")
            Application.SendKeys ("^w")
            'ShellExecute vbNull, "close", sFileName, vbNull, vbNull, SW_NORMAL
            x = x + 1
        Loop
        Exit Sub
    ErrorHandler:
        MsgBox "Export_Worksheet Error: " + Str(Err.Number) + " " + Err.Description + " " + Err.Source
    End Sub
    I'm pretty sure one of many issues is that I don't know the fully-qualified name of the field/button, or how to properly identify it in the Macro.
    I have no doubt that my approach, if it's even possible, is clumsy and unfounded, but I am (obviously) flailing around for anything that can achieve clicking this confounded button. Any help appreciated.

    It was a button option - I haven't got access to Acrobat 8 here at home, but it was something like
    Add menu item
    File - attach to email
    When the button was clicked, the email application would open with a new email and the PDF would be attached, so you could enter the recipients email address and send.

  • How can I click on a button and make a text box appear or disappear

    How can I click on a button and make a text box appear or disappear?
    Thanks ahead of time for your help,
    Doug

    Hi Denes,
    I just thought that the example you pointed the OP to, is far more complex than what I understood he needs. The OP was talking about using a button, which I thought was a very basic and simple case. Your example is much more complicated. If memory serves, the radio group item, at the time (prior to 3.1 fieldset) behaved differently, so you needed to create a new value retrieving function, and then was the need to preserve the items show/hide status upon reloading the page. In short, I thought maybe I didn’t see the complexity in the OP post, but it seems that his requirement was indeed a simple one.
    Regards,
    Arie.

  • HT2729 if i buy a movie from itunes store how can i put it on my new ipad

    if i buy a movie from itunes store how can i put it on my new ipad

    Assuming it's in a supported format (which is likely), simply sync your iPad to iTunes on your computer.  Make sure you have specified that you would like to sync movies on the "movies" tab on the top right of the iTunes display (when your iPad is plugged in and its row highlighted).

  • I can't click the update button in Creative Cloud

    My Creative Cloud program says "one update" (Dreamweaver), but I can't click that update -button. Neither I can't click Update all -link or what's new -link.
    (My language is not english so I'm not sure those are the right words of buttons). Only links in top bar works normally.
    What's wrong with it?

    Please refer to:
    Creative Cloud Update fails due to DynamicLinkManager
    Re: Unable to install Creative Cloud Updates
    Creative Cloud desktop failed to update.(Error code: 50) Contact Customer Support!!
    Hope this helps you,
    Regards
    Rajshree

  • How to buy a movie from US iTunes store with Finnish credit card?

    Tried to buy a movie: "One Track Heart" which was advertised in the movies web page with "available on iTunes" button.
    Link leads to iTunes store page, where is error message like: not available in your country, you will be linked to another iTunes Store.
    When buying a movie from US iTunes store, purchase does not happend because of "you Apple ID is not valid for purchases in US iTunes Store, you will be redirected to the iTunes Store Finland".
    How come it´s easy to buy a DVD from states via Amazon, but very difficult via Apple?

    This is what Amazon-instant-watch service replied as a error message:
    "We are sorry...
    We could not process your order because of geographical restrictions on the product which you were attempting to purchase. Please refer to the terms of use for this product to determine the geographical restrictions.
    We apologize for any inconvenience this may have caused you."
    Apple should see something to learn in this Amazon answer.

  • I want to buy iphone4 8GB, but I am afraid that I buy a fake iphone, not the real iphone. So, what can I do if I want to check for sure it is a real iphone from apple?

    I want to buy iphone4 8GB, but I am afraid that I buy a fake iphone, not the real iphone. So, what can I do if I want to check for sure it is a real iphone from apple?

    Buy it from an Apple Retail Store or Apple Online or through an approved Carrier.

  • Hello, Could someone help me with lightroom 6.  I can't seem to buy the upgrade from lightroom 5 to 6 on the desktop. Thanks.

    Hello, could someone help me with lightroom 6.  I can't seem to buy the upgrade from lightroom 5 to six on my desktop?  Thanks.

    Products
    if that link doesn't work for you contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html

  • I can't ring ibooks in my App Store for my mac-what do i do, how do i download it in my mac?

    i can't ring ibooks in my App Store for my mac…what do i do, how do i download it in my mac?

    Are you running Mavericks 10.9?  That is required for iBooks.

  • HT1918 Can i use debit card in itunes store for purchase in india

    Can i use debit card in itunes store for purchase in india

    Debit cards are no longer accepted in the iTunes Store, it seems. The current valid payment methods are listed here:
    http://support.apple.com/kb/HT5552
    You can try contacting the iTunes Store and asking if there is any way to use your card, but they probably will tell you that it's not possible.
    http://www.apple.com/emea/support/itunes/contact.html
    Using a debit card in any online service where it stores your card is a bad idea in any case since if someone gains access to your account in the service, they can quickly drain your bank account. Credit cards limit your liability, as do prepaid iTunes cards.
    Regards.

  • How can I buy subtitled movies from outside the US?

    how can I buy subtitled movies from outside the US?

    People here are users, you need to contact Apple Inc. by phone and see if you can resolve this problem.
    http://support.apple.com/kb/he57

  • HT204370 If I buy a movie from apple tv, can I also see it from my iPad? Or if I buy it from my iPad, can I see it (or download it) on apple tv?

    If I buy a movie from apple tv, can I also see it from my iPad? Or if I buy it from my iPad, can I see it (or download it) on apple tv?

    Welcome to the Apple Community.
    To the best of my knowledge you cannot currently buy movies via the Apple TV 2. You certainly can't here in the UK, where rental is the only option for all available content.
    It's my understanding that US customers can purchase TV shows, but I don't believe they can currently purchase movies

  • When I try to buy a movie from my Apple TV it can't connect to the server at this time. Any ideas?

    When I try to buy a movie from AppleTV it can't connect to the server. Any ideas?

    No other good ideas ... since your signature block above says you're running iOS 5.1.1.
    I assume you have a reasonable connection.
    Here's Apple's troubleshooting reference: http://support.apple.com/kb/TS1368

  • I am at present in Spain. I have OS 10.6.8 on my applepro laptop. How can I upgradeto Mountain Lion? I can't get on to the apple store, for some reason.

    I am at present in Spain. I have OS 10.6.8 on my applepro laptop. How can I upgrade to Mountain Lion? (and then to Mavericks). I can't get on to the apple store, for some reason.

    Open the App Store application and use it to download Mavericks.
    No need to get Mountain Lion first.

  • Theres an app called Lomo Camera in the Play Store by Wise Shark Software and can I just ask if it can e available in the Apple App Store for FREE and if so, when can it be available?

    Theres an app called Lomo Camera in the Play Store by Wise Shark Software and can I just ask if it can e available in the Apple App Store for FREE and if so, when can it be available?

    You should talk to the App developer on their website.

Maybe you are looking for