When buttons are clicked (in pdf), they flash instead of remaining solid

Page-turn buttons (mouse click action) with two appearances (white, and with mouse over, grey) flash from the grey back very briefly to white when clicked. Is there some way to avoid this? It's a bit nit-picky, but the flashing makes the buttons in an swf or pdf seem clunky and less smooth.

Hello,
I checked your file and I was able to preview it in Browser properly.
However as I can see, you have Hyperlinked the Labels of Accordian which is why Accordian functionality does not work. When user clicks on it, before expanding it takes the user to the hyperlinked page.
I would suggest you to Export it as HTML on your computer on a different location and then check if it works or not.
Regards,
Sachin

Similar Messages

  • Hide Textbox when buttons are clicked

    Hi all,
    Im trying to create a form for our customer service reps to make their lives easier. Which is a plus for me.
    I tried googling and playing with some Validation scripts and nothing seems to work.
    Here is what im trying to accomplish.
    There is 3 Radio buttons ( Credit, Repair, and Replacement), I need to have the ability to only have 1 of the three selected
    So if a button is clicked it would make a series of text and text boxes visible and Hide the others
    I am not quote sure how to do this.
    Found this article but im not sure if it applies. Im using Acrobat X Pro.

    So i found this thread
    http://forums.adobe.com/thread/908481?start=0&tstart=0
    var f = this.getField("c1");
    var g = this.getField("Text2");
    if (f.value==(Yes))
    g.display = display.hidden;
    else
    g.display = display.visible;
    it works but the box does not disappear when I uncheck. It mentions how to do it also in the thread but it doesnt seem to work?

  • How can I remove "click" sounds when buttons are clicked?

    I have created a Captivate project for an online tutorial.
    There is no audio in the project but Captivate has embedded a
    "click" audio which occurs when the user clicks on "Next", "Back"
    and "Menu" buttons.
    How can I remove these "click" sounds?

    Hi dyageme and welcome to our community
    Fellow Adobe Community Expert Paul Dewhurst offers up just
    such a fix.
    Click
    here to visit Paul's site.
    Cheers... Rick

  • Text blinking when buttons are clicked in Acrobat

    I have an interactive pdf that has buttons and layers. I am on a mac, and it works as it should. When an icon is clicked text changes out (shifts between layers) But my client is on a PC and is saying that when she clicks the icon, all the text on the page blinks off and then on and then changes. (even the text that is not associated with the button)
    Does anyone know what is causing this, and is there a solution?
    thank you!

    I have an interactive pdf that has buttons and layers. I am on a mac, and it works as it should. When an icon is clicked text changes out (shifts between layers) But my client is on a PC and is saying that when she clicks the icon, all the text on the page blinks off and then on and then changes. (even the text that is not associated with the button)
    Does anyone know what is causing this, and is there a solution?
    thank you!

  • When links are clicked, they do not fully display the NEW page until the mouse is moved.I know it is a current bug, and appears in no other browsers that I know of.

    It was pointed out that my links do not function correctly on Firefox on a Windows platform. When links are clicked, they do not fully display the NEW page until the mouse is moved! I have now observed it for myself on my fathers PC running Windows XP on Firefox.My PC is on Windows7
    It is the 5 version of Firefox, so I know it is a current bug, and appears in no other browsers that I know of.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4+ you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Is it possible to fire an event when radio buttons are clicked in a report?

    Hi All,
    I have got a requirement. In the selection screen i have certain input fields and three radio buttons. When radio buttons are clicked i have to grey out certain input fields. Is it possible to fire an event when i write program through se38??
    Thanks
    Rakesh

    Hi Rakesh,
    Check this code.
    SELECTION-SCREEN BEGIN OF BLOCK FINPUT WITH FRAME TITLE TEXT-001.
    PARAMETERS  : FILENAME(132) TYPE C LOWER CASE  NO-DISPLAY,
                  FDLOAD RADIOBUTTON GROUP RAD1
                  USER-COMMAND R1 ,
                  FUPLOAD RADIOBUTTON GROUP RAD1 .
    SELECTION-SCREEN END OF BLOCK FINPUT.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-002.
    PARAMETERS : FUNAME(132) TYPE C LOWER CASE MODIF ID AA.
    SELECTION-SCREEN PUSHBUTTON /33(30) ACTION USER-COMMAND
                     BTNACT MODIF ID AA VISIBLE LENGTH 8 .
    SELECTION-SCREEN PUSHBUTTON 43(30) CANCEL USER-COMMAND
                     BTNCAN MODIF ID AA VISIBLE LENGTH 8  .
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
    PARAMETERS : FDNAME(132) TYPE C LOWER CASE MODIF ID BB.
    SELECTION-SCREEN PUSHBUTTON /33(30) ACTIONS USER-COMMAND
                     BTNACT1 MODIF ID BB VISIBLE LENGTH 8.
    SELECTION-SCREEN PUSHBUTTON 43(30) CANCELS USER-COMMAND
                     BTNCAN1 MODIF ID BB VISIBLE LENGTH 8.
    SELECTION-SCREEN END OF BLOCK B2.
    DATA : ACTNAME(8) TYPE C,SCRGRUP(2) TYPE C.
    INITIALIZATION.
    ACTIONS = 'Download'.
    CANCEL = 'Cancel'.
    ACTION = 'Upload'.
    CANCELS = 'Cancel'.
    ACTNAME = 'Download'.
    SCRGRUP = 'AA'.
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD1.
    IF FUPLOAD = 'X'.
         MOVE 'Upload' TO ACTION.
         MOVE 'Upload' TO ACTNAME.
    ELSEIF FDLOAD = 'X'.
         MOVE 'Download' TO ACTION.
         MOVE 'Download' TO ACTNAME.
    ENDIF.
    AT SELECTION-SCREEN.
    IF SY-UCOMM = 'R1'.
        IF ACTION = 'Download'.
          SCRGRUP = 'AA'.
         MESSAGE S007(ZMESSAGE).
        ELSEIF ACTION = 'Upload'.
          SCRGRUP = 'BB'.
         MESSAGE S008(ZMESSAGE).
       ENDIF.
    ELSEIF SY-UCOMM = 'BTNCAN' OR SY-UCOMM = 'BTNCAN1'.
      LEAVE PROGRAM.
    ENDIF.
    *AT USER-COMMAND.
    CASE SY-UCOMM.
       WHEN 'ACTIONS'.
         LOOP AT SCREEN.
           IF SCREEN-NAME = 'FUNAME'.
           ENDIF.
         ENDLOOP.
    ENDCASE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR FUNAME.
      PERFORM call_filedialog CHANGING FUNAME.
    PERFORM call_filedialog CHANGING FUNAME.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = SCRGRUP AND ACTNAME = 'Download' .
      SCREEN-ACTIVE = 0.
      MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = SCRGRUP AND ACTNAME = 'Upload'.
      SCREEN-ACTIVE = 0.
      MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    FORM call_filedialog CHANGING fname.
      DATA: li_filetable TYPE STANDARD TABLE OF file_table,
        lv_return TYPE i,
        lw_filetable TYPE file_table.
      CALL FUNCTION 'TMP_GUI_FILE_OPEN_DIALOG'
        TABLES
          file_table = li_filetable
        EXCEPTIONS
          cntl_error = 1
          OTHERS     = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      READ TABLE li_filetable INDEX 1 INTO lw_filetable.
      fname = lw_filetable-filename.
    ENDFORM.                    "call_filedialog
    Reward Points, if useful.
    Regards,
    Manoj Kumar

  • Refresh BSP Page when button is clicked

    Hello friends,
    I am developing a BSP application in which on page1, when button is clicked, new popup window(page 2) for caculating one field is displayed.
    At the same time I want to update value of the field(Calculated in page 2) to be updated in calling page(Page 1).
    Your help would be appreciated.
    Best regards,
    Dharitree

    I think it would be possible using javascript code.
    Try following javascript code:
    Write following 2 javascript functions in Page1.
    function openPopup()
    document.open(u2018page2.htmu2019, u2018page2u2019, "height=450 width=500 left=320 top=200 status=no")
    function transf(calculatedvalue)
    document.getElementById("<ID OF YOUR ELEMENT(INPUTFIELD)>").value = calculatedvale;
    In Page1, onClientClick event of the Button call openPopup() function Javascript
    Write following function in Page2.
    function getCalcValue()
        opener.transf("<%=CALCULATEDVALUE%>");
        window.close();
        return true;     
    In Page2, after the calculation, call getCalcValue Javascript function.
    Let me know if you need any further clarification on this.
    ~Salil
    Edited by: Salil Patel on Aug 8, 2008 2:51 PM

  • HT1430 How do I restart iPad when buttons are not responding?

    How do I restart iPad when buttons are not responding?

    GIve the reset another try; nothing to lose.
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • When I downlaed photos in photoshop they flash  black- i  have to downlaod and retart photoshop so that I can work on pictures .

    Hi There I am have the following issue with Photoshop:
    I am using Photoshop on a windows system.
    1) when I open pictures they flash black and flash black as I am trying to crop and clean.
    2) The tiles are very small compared to illustrator, how do I make tiles larger- have looked in preferences where do I find?
    Your help would be deeply appreciated!
    Kate

    Hi Chris,
    Re:  I meant to say open pictures- needless to say it is annoying.  I will try to update driver card.
    Re; Photoshop tiles/tool are very tiny when compared to Illustrator...have a look at the screen shots.

  • Scripting for when all buttons are clicked

    Im quite new to flash well at least the scripting part of it.
    I'm much more of a designer and I'm having big problems I know that
    it is prob very simple but I am totally useless at it! Can some1
    please just point me in the right direction thank you xxx

    If you're testing in flash you should see some trace outputs
    in the output panel. If you don't then there's something not
    working right.
    When you press each of your buttons, you want the main
    timeline to go to a different frame right? You need to set those
    frame targets in the code.
    example for but_bat:
    {button:but_bat, gotoFrame:2},
    this sets things up so that when but_bat is pressed, the
    timeline goes to frame 2.
    You will need to set the others for their correct frame
    targets. Just change the numbers for gotoFrame:
    number here
    Is what you want to happen when
    all of the buttons have been clicked that a congratulations
    sign movieclip is played? (You haven't said what you wanted it to
    do at that point, so I'm afraid I couldn't know that ;-) ) At the
    moment I've set the script up so that it checks... but all it does
    is trace an output:'I would normally want to do something special
    from this point' where whatever you want to have happen when
    they're all pressed would be requested by actionscript. If you tell
    me what that is, I can tell you the code to do it.

  • URGENT:Expected behaviour when two buttons are clicked on a page?

    Hello,
    I have developed a search page. In the search results region, I have option to delete and update a record. What is the expected behaviour if I first click on the delete icon of one record and then click on the update icon of another record?
    I am getting an error page starting with the following line : oracle.apps.fnd.framework.OAException: java.lang.NullPointerException.
    Could anyone guide me about how I can correct this situation?
    In Dev guide, I saw the section 'PPR Event Queuing'. They have mentioned the below lines in this section :
    Note: To disable this feature, set the value of the profile FND_PPR_EVENT_QUEUE_DISABLED to Y. In this
    case, when a PPR event fires, all subsequent events on the page are ignored.
    Is it possible to set the profile FND_PPR_EVENT_QUEUE_DISABLED to Y in the PR of the search page? Or should I set the profile value through front end for the responsibility for which I'll be adding this search page?
    Thanks,
    Anju

    I had looked through the error message but I couldnt find anything related to the coding I have done.
    I have pasted the entire error message below:
    Exception Details.
    oracle.apps.fnd.framework.OAException: java.lang.NullPointerException
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.fnd.framework.webui.OAPageBean.releaseRootApplicationModule(OAPageBean.java:5448)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseApplicationModule(OAPageContextImpl.java:2491)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseRootApplicationModule(OAPageContextImpl.java:2439)
         at oracle.apps.fnd.framework.webui.OAPageBean.performReleaseApplicationModules(OAPageBean.java:4151)
         at oracle.apps.fnd.framework.webui.OAPageBean.finalizeRequest(OAPageBean.java:3926)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:552)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.lang.NullPointerException
         at com.evermind.server.http.EvermindHttpServletRequest.getSession(EvermindHttpServletRequest.java:2343)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.deleteValue(OAHttpSessionCookieImpl.java:825)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.releaseApplicationModule(OAHttpSessionCookieImpl.java:526)
         at oracle.jbo.common.ampool.SessionCookieImpl.releaseApplicationModule(SessionCookieImpl.java:584)
         at oracle.apps.fnd.framework.webui.OAPageBean.releaseRootApplicationModule(OAPageBean.java:5439)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseApplicationModule(OAPageContextImpl.java:2491)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseRootApplicationModule(OAPageContextImpl.java:2439)
         at oracle.apps.fnd.framework.webui.OAPageBean.performReleaseApplicationModules(OAPageBean.java:4151)
         at oracle.apps.fnd.framework.webui.OAPageBean.finalizeRequest(OAPageBean.java:3926)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:552)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    java.lang.NullPointerException
         at com.evermind.server.http.EvermindHttpServletRequest.getSession(EvermindHttpServletRequest.java:2343)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.deleteValue(OAHttpSessionCookieImpl.java:825)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.releaseApplicationModule(OAHttpSessionCookieImpl.java:526)
         at oracle.jbo.common.ampool.SessionCookieImpl.releaseApplicationModule(SessionCookieImpl.java:584)
         at oracle.apps.fnd.framework.webui.OAPageBean.releaseRootApplicationModule(OAPageBean.java:5439)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseApplicationModule(OAPageContextImpl.java:2491)
         at oracle.apps.fnd.framework.webui.OAPageContextImpl.performReleaseRootApplicationModule(OAPageContextImpl.java:2439)
         at oracle.apps.fnd.framework.webui.OAPageBean.performReleaseApplicationModules(OAPageBean.java:4151)
         at oracle.apps.fnd.framework.webui.OAPageBean.finalizeRequest(OAPageBean.java:3926)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:552)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)

  • Can't write, reply or forward messages as screen will not open when these function buttons are clicked

    I can receive emails but when I try ti write a new one or reply or forward existing emails, the usual screen does not open. Instead a small window opens in the small task bar at the bottom of my screen in Thunderbird and whilst I can hover over them to see them no amount of clicking will bring them on to the full size to use. I am on Windoes 8.1

    ''CONWAYHALL1743 [[#question-1036740|said]]''
    <blockquote>
    I can receive emails but when I try ti write a new one or reply or forward existing emails, the usual screen does not open. Instead a small window opens in the small task bar at the bottom of my screen in Thunderbird and whilst I can hover over them to see them no amount of clicking will bring them on to the full size to use. I am on Windoes 8.1
    </blockquote>
    Thanks for your quick reply but although it did not solve my problem, I found that other functions were not working this morning and after a good deal of head scratching I found out that it was the remote Microsoft keyboard attached to my laptop which was causing all problems! It was only a few months old but I have now bought another but Advent this time and all is back to normal. Thanks once again. Conway Hall

  • Layers' actions disappear when pages are replaced in PDF?

    When I replace pages in an existing PDF with updated ones, my actions for layers seem to not keep the actions they had set to them. I check the properties, and they seem to be there, but the action does not work.
    I am replacing the exact amount of pages and the exact amount of layers.
    Any ideas? Am I missing something when I replace the pages?

    I think you will have to reestablish the actions. Layers are not like annotations that are left in place when the underlying page gets replaced. Layers (OCGs) are page contents, so when they're replaced with something new, the connection is broken.
    Consider what would happen if you replace a page that had OCGs with one that doesn't. Since the OCGs are no longer present, any actions that control them would naturally not work. So even when replacing a page with one that contains the same OCSs, they are still not considered to be identical at a lower level and the actions can no longer work.

  • Adobe does NOT automatically open when attachments are 'clicked'

    Thanks for reading this post.  When openning a PDF file attachment within an email or a link from a website, Adobe does not automatically launch to view the documents.  In fact, the file conversion screen pops up instead when I select the 'open' tab from the attachment.  When I click the 'save' option, the save file type only includes HTLM and ALL Files..... this is odd why PDF is not a save type option.   Anyway, any assistance to alievate this problem will be helpful. This is very frustration.... I was also wondering if this could be my Norton 360 that is causing these problems....

    Bill was suggesting an alternative approach, making this the default setting in distiller. This is a preference settings in Distiller. I don't have Acrobat 9 on my Windows machine, but this is what is looks like on the Mac:
    You want to check the View PDF when using Distiller Check box.

  • Displaying Image and even hiding after few seconds when button is clicked

    Hi All,
    How to perform an action with a JButton.When clicked image should be displayed and after span of 10 seconds it should get invisible???
    Thanks in advance.
    regards,
    Viswanadh

    kevinaworkman wrote:
    For creating an image, look at the getImage() function of the Toolkit class: [http://java.sun.com/javase/6/docs/api/java/awt/Toolkit.html#getImage(java.lang.String)|http://java.sun.com/javase/6/docs/api/java/awt/Toolkit.html#getImage(java.lang.String)]
    Or use the more modern [ImageIO |http://java.sun.com/javase/6/docs/api/javax/imageio/ImageIO.html] class, which is generally preferred over the older Toolkit methods.
    As for drawing it, I'd suggest extending a JPanel and overriding its paintComponent functionOr simply use a JLabel that displays only the image. There is no need to subclass JPanel simply for displaying an image, that is re-inventing the wheel.
    As for having the image fade away over a few seconds, use a [Swing Timer|http://java.sun.com/javase/6/docs/api/javax/swing/Timer.html] . It ensures that your rendering updates are done on the EDT.
    Try some stuff out and post back with an SSCCE if you are still having problems. We will not write the code for you.

Maybe you are looking for

  • Adobe 6 won't refresh after printing.

    I have a client who prints to her pdf device. The option is set to open additional pdfs in a new window. When she prints the first document displays without a problem. But the next time she prints if she doesn't close adobe the window will pop up but

  • Re: Constant inconsistency and problems

    I have a similar problem. Business of my late husband in process of dissolving now, so BT push to to agree to put my name with the company name 6 month ago. now I must to change the house and BT asked me to pay £130 for a new land line and a new cont

  • Reading the next element with sam name

    Hi, i have xml file which looks like <Response> <params> <param> <value><array><data><value><string>ok</string></value> <value><string>41408241257406373</string></value> </data></array></value> </param> </params> </Response> I need the value of eleme

  • Apple Pay: The last 4 digits of my device account number is not showing up on my phone.

    My credit card company needs the last 4 digits of my device account number, and only ***** (stars) show up under my divice account number.  I have 8.1 installed, and have tried restarting my phone.  Any suggestions on how to get my divice account num

  • Importing Arri DNG raw files into Premiere Pro CC

    Any suggestions on how to do this?