HT2476 apps preview was hang when scroll thru the pdf documents

I have upgraded my mbpro to mountain lion but application "preview" was hang when scroll thru the pdf documents. can somebody help me with solutions?

From the Safari menu bar, select
          Help ▹ Installed Plug-ins
Besides the following, what plugins are listed?
          iPhotoPhotocast
          Java
          QuickTime
          Shockwave Flash
          WebKit built-in PDF (absent in OS X 10.9 and later)

Similar Messages

  • How do I search and zoom to a text in a PDF document when I call the PDF document (in a shared location) from a web application(written in C#)?

    The location is something like this:
    \\XXX.XX.com\YY_YY_Docs\images\ZZZ_00001.pdf
    and I tried ( http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf)
    \\XXX.XX.com\YY_YY_Docs\images\ZZZ_00001.pdf#zoom=800&search=22-55
    but it only opens the document in the browser but does not zoom to it or search the text. How do I achieve this?
    Assuming not all the users have acrobat reader installed and opening the PDF in a browser with the Adobe reader add-on installed.

    Well, you need a PDF viewer – and that would be Adobe Reader.
    Those parameters only work for web-served documents, not for local ones.

  • I have a version 7.0.4.  I can't connect to the server.  My capacity is 13.5  with 10.4 GB available.  Diagnostics and usage data, when scrolled to the bottom, tells me I have low memory.

    I have a version 7.0.4.  I can't connect to the server.  My capacity is 13.5  with 10.4 GB available.  Diagnostics and usage data, when scrolled to the bottom, tells me I have low memory.How cani fix this?

    Clear Safari, close all apps on the iPad and reboot. Then see if you can connect.
    Go to Settings>Safari>Clear Cookies and Data.
    Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to each app then swipe "up" on the app preview thumbnail to close it.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    If you still can't connect to the internet, you need to do some more troubleshooting with the network connection, but report back with more details if that doesn't work and don't just repeat the question in the text box are that you have to describe the problem. That serves no purpose at all.

  • Is there anyway to get an App Tab to stay when I close the program then reopen it?...they always disappear when I open a new window etc.

    Is there anyway to get an App Tab to stay when I close the program then reopen it?...they always disappear when I open a new window etc.
    And I thought the whole point of an App Tab was to always have those tabs there no matter what window is open all the time period.
    It's a minor complaint but I would really appreciate the option to permanently have them there.

    I thought that app tabs would be more persistent, like pinning programs to the taskbar in Windows, but this is not the case.
    Instead, once you close a Firefox window, all its tabs and app tabs are lost.
    Essentially, this means that the close button in the upper-left corner of a Firefox window is now a "kill all open tabs and loose all App Tabs without warning++ " button. That is not cool.
    I realize that "Firefox > Quit Firefox" behaves as intended, but many people use the more obvious red close button instead of the menu to close windows on a Mac. And it is easy to forget that the red button is now also an app-tab-death button. I've lost my app tabs many times to this issue. It is an unforgiving user interface decision which hampers the usability of app tabs. Why should I go through the extra clicks of setting up app tabs if I can loose them so easily?
    Ideally, App Tabs could be saved separately from the currently open windows (perhaps create an option to save then to a special Tab Group that opens on startup?). App tabs would be exceedingly useful to me if they weren't so easy to loose.
    On that note, saving Tab Groups would also be a useful functionality.
    ++ You will get a "closing multiple tabs" warning if you have only one window open, and that one window has multiple non-app tabs open, and you have enabled the warning in Preferences. But this too unreliable to help prevent the loss of app tabs.

  • Trying to find the painting app that was on a ipad2 in the apple store.. Help  please :)

    Trying to find the painting app that was on a ipad2 in the apple store.. Help  please :)

    Ya I was going to call them tomorrow but I wanted to play it tonight lol :)
    But it had color pencils and crayons on the left side of it.. It would show the tips of the colors pencils and you could scroll up and down to choose color..
    Thanks for your help tho :)

  • Call failed. Error: An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.

    Hi All,
    I am trying to add a new task to a Tasks list called CATasks. The list was created via Visual Studio “Add > New Item > List” process and not by custom code. The code I am using to add a task is shown below.
    What I have noticed is if I use my code to add a Task to a Task List created by Visual studio “Add > New Item > List” process, I get an error. Error message when adding an item:
    Call failed. Error: An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.
    But if I create the same list using custom code I don't get an error.
    Am I missing something in my custom code or is this a bug?
    I hope you can help.
    CEStar
    App.js Code:
    function createItem() {
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/?$select=Title,CurrentUser/Id&$expand=CurrentUser/Id",
    type: "GET",
    dataType: "json",
    headers: {
    Accept: "application/json;odata=verbose"
    call.done(function (data, textStatus, jqXHR) {
    var userId = data.d.CurrentUser.Id;
    addItem(userId);
    call.fail(function (jqXHR, textStatus, errorThrown) {
    failHandler(jqXHR, textStatus, errorThrown);
    function addItem(userId) {
    var due =
    new Date();
    due.setDate(due.getDate() + 7);
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getByTitle('CATasks')/Items",
    type: "POST",
    data: JSON.stringify({
    "__metadata": { type:
    "SP.Data.CATasksListItem" },
    Title: "Sample Task",
    AssignedToId: userId,
    DueDate: due
    headers: {
    Accept: "application/json;odata=verbose",
    "Content-Type":
    "application/json;odata=verbose",
    "X-RequestDigest": jQuery("#__REQUESTDIGEST").val()
    call.done(function (data, textStatus, jqXHR) {
    var div = jQuery("#message");
    div.text("Item added");
    call.fail(function (jqXHR, textStatus, errorThrown) {
    failHandler(jqXHR, textStatus, errorThrown);
    function failHandler(jqXHR, textStatus, errorThrown) {
    var response = JSON.parse(jqXHR.responseText);
    var message = response ? response.error.message.value : textStatus;
    alert("Call failed. Error: " + message);
    Create List Custom Code:
    function createList() {
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists",
    type: "POST",
    data: JSON.stringify({
    "__metadata": { type:
    "SP.List" },
    BaseTemplate: SP.ListTemplateType.tasks,
    Title: "CATasks"
    headers: {
    Accept: "application/json;odata=verbose",
    "Content-Type":
    "application/json;odata=verbose",
    "X-RequestDigest": jQuery("#__REQUESTDIGEST").val()
    call.done(function (data, textStatus, jqXHR) {
    var message = jQuery("#message");
    message.text("List added");
    call.fail(function (jqXHR, textStatus, errorThrown) {
    var response = JSON.parse(jqXHR.responseText);
    var message = response ? response.error.message.value : textStatus;
    alert("Call failed. Error: " + message);

    Hi,
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thanks 
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • Hi from the last two days my iphone have very slow to open the apps and very slow when i check the notification window , it taking too much time to open when i tap to down . help me to resolve the issue.

    Hi,  from the last two days my iphone( iphone 4 with ios 5) have very slow to open the apps and very slow when i check the notification window , it taking too much time to open when i tap to down . help me to resolve the issue.

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore...
    iPhone Reset
    http://support.apple.com/kb/ht1430
    Try this First... You will Not Lose Any Data...
    Turn the Phone Off...
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    Turn the Phone On...
    If that does not help... See Here:
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • With my i phone 4 , the Push notifications doesn't work for apps like (fb viber , whatsapp etc ) it only works for the official apps like message  even when im using the phone, has  this probleme with the iOs 6.0.1 and also with the iOs 6.1

    With my i phone 4 , the Push notifications doesn't work for apps like (fb viber , whatsapp etc ) it only works for the official apps like message  even when im using the phone, has  this probleme with the iOs 6.0.1 and also with the iOs 6.1

    This isn't an issue. Notice the screen prior to the one that shows usage has an iCloud section and a Manage Storage button. For this button to activate ios needs to download a few kb from icloud. Switching back to this screen forces ios to download those few kb.

  • Firefox no longer loads home page or deletes cookies. I have repeatedly checked both settings and they are correct. It always goes to the last page I was on when I closed the browser ..

    Firefox no longer loads home page or deletes cookies. I have repeatedly checked both settings and they are correct. It always goes to the last page I was on when I closed the browser .

    Go to '''TOOLS''' then''' OPTIONS''' then in '''GENERAL''' panel in '''STARTUP '''session choose '''Show my home page''', then click '''OK''' to save it, exit firefox and restart-it.
    see for more info: [https://support.mozilla.org/en-US/kb/Options%20window%20-%20General%20panel Options window - General panel]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • After Upgrading to 10.6.8 my aperture app starts but hangs trying to read the Lib. I removed the old lib and start with new. but still have the problem. 10.6.8 also made my Shark FX7 do the same thing. Any Ideas? Thanks

    After Upgrading to 10.6.8 my aperture app starts but hangs trying to read the Lib. I removed the old lib and start with new. but still have the problem. 10.6.8 also made my Shark FX7 do the same thing. Any Ideas? Thanks

    Verifying volume “Macintosh HD”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Checking extents overflow file.
    Checking catalog file.
    Checking multi-linked files.
    Checking catalog hierarchy.
    Checking extended attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Macintosh HD appears to be OK.

  • How to I stop the Preview Pane in Windows 7 retaining control when I open a PDF document using Adobe Acrobat (Reader is NOT installed)

    I have the preview pane active when selecting PDF Documents.  When I open a PDF document I am unable to save any changes. the error message I receive:
    "The documents could not be saved. The file ma be read-only,or another user may have it open. Please save the document with a different name of in a different folder"
    The document is not read only and no other user has it open.  If I turn the preview pane OFF there is no problem saving changes.  I have also un-installed Adobe Reader.
    Other programs (such as Excel, Word) do not experience the same problems as the PDF documents.
    Does anyone have a solution?

    Hi snoreaustralia,
    It sounds like you just need to associate the PDF filename extension with Acrobat, rather than Preview. Please see this document from the Microsoft Help for instructions on choosing the default program for opening a particular file type (in your case, PDF): Change which programs Windows uses by default - Windows Help
    Best,
    Sara

  • When install iTunes 11.1.4   It says Apple Mobile Device Service service will not start.  It was started when I began the installation.  Is this an Apple software bug?

    When install iTunes 11.1.4   It says Apple Mobile Device Service service will not start.  It was started when I began the installation.  Is this an Apple software bug?

    I have this issue. It isn't the MSVCR80 issue. No matter what I do nothing will let me even INSTALL Apple Moblie Device. Further details are in my thread:
    https://discussions.apple.com/thread/5831093

  • My iphone froze last nite and i was unable to exit the app i was on, it then switched the screen off as if it was not in use, now i am unable to open my iphone or switch it off, calls are still comin thro as phone is vibrating but im unable to answer

    my iphone froze last nite and i was unable to exit the app i was on, it then switched the screen off as if it was not in use, now i am unable to open my iphone or switch it off, calls are still comin thro as phone is vibrating but im unable to answer as cant activate the screen?????
    pls help

    See Here for  >  Frozen or unresponsive iPhone
    Try this First...
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    http://support.apple.com/kb/ht1430
    More Info here...
    https://discussions.apple.com/message/19521062

  • Acrobat Professional hangs when converting word to PDF

    I am using Acrobat Professional version 7 and when i use the Convert to PDF option for a large word document it goes through the motions of converting the document but then seems to hang and i get no PDF document created. Also the Word document then says read only in the title as well.
    It works fine for small word documents just not large files with pictures.
    I have tried uninstalling Acrobat Prof and Office 2003 and re-installing both and it makes no difference.
    Can anyone provide any information on what i can try to fix this issue as
    i am out of ideas.
    Thanks
    Lawrence

    Empty the TEMP folder or print to the Adobe PDF printer. The latter might be worth trying to be sure things are working.
    You may have to uncheck a lot of the options in the PDF Maker preferences, particularly tags. Keep in mind that large graphics require a lot of disk space in the translation as the PS format is not very memory efficient for graphics (at least from what I have seen). You might also make a copy of the DOC file and then select a graphic and choose format. In the lower left corner of the general tab is a compress button. Try that to reduce the graphics resolution and see if that solves the problem.

  • When sending a pdf as an attachment I cannot scroll through the pdf.  Nor can I look at Outlook 2010

    Frequently I create a pdf and then I want to send it.  After clicking send and the email pops up I compose the message.  However, as I compose it, I have a question requiring me to look at the pdf.  However, I can't page through the document because it's locked by Outlook.  Also, I can't look at other emails while this message is open.
    A workaroud is to save the document in Outlook.  Then I can scroll through the pdf or view other emails but I have to go to the drafts folder and reopen the email to edit it.
    What I'd really like to see is a way to set the default when sending a pdf in Outlook to have it always send a copy.  That way the pdf isn't locked and I don't have to go throught this workaround.  I encounter this every day.  Isn't there some solution to this?

    Edit>Preferences>Email accounts>List of email accounts. Click the drop-down that says "add account" and select Gmail. After adding it, you can go to the account area and change it to default.

Maybe you are looking for

  • New tab in XD01 only when company code data button is selected

    Hello all, I added a new tab in XD01 with the help of BADIs CUSTOMER_ADD_DATA and CUSTOMER_ADD_DATA_CS. But the new tab is appearing at all levels i.e general as well as company code level. But my client needs the new tab to be displayed only when th

  • Errors 1722,  DW050 & DW063

    Got these errors when installing CS5.5 creative suites.  In one case the error indicates a file could not be found.  Is the missing file a problem with the download or the file extraction?

  • Loading data via ftp

    Hi, From my reading of XML Db papers, it seems to indicate to me, that it is possible to load XML datafiles via ftp. Please could someone give me an example of how this would be done, as I cannot find a concrete example in the documentation. Thanks f

  • Is there a possibility to retreve Data from the OPC Server with the XML Interface

    Is there a possibility to connect a OPC/DA server with the help of the XML interface with Labview? I need to retrieve Data from a OPC Server running on Linux, so i got no Dcom System an I need to use XML. The server is running and with OPC client-too

  • How do i select the file extension type?

    using imovie '11. i've finalised a project and exported it. it automatically saved as a .m4v (itunes) file. my question is: is there any way to manually select the file extension when saving/finalising a project? for example, i might be required to s