Constant color gear turning, frequent message "Script needs debugging"

constant color beach ball (gear) turning for extended periods using Safari and Facebook. small window opens indicating "Script needs debugging" esp in Facebook.
Is this hardware or software? What to do?

Discovered the reason for no space to load..toram..
The SIZE statement of 800MB limits the loading to 800MB.,  thus, it must be changed to 2500MB in order to load the 2gb DVD DISC ..TORAM.
IT BOOTS AND LOADS TO DESKTOP IN 5MINS10SECS.  THERE IS 5gB OF PROGRAMS ..IN RAM.
I can now run my system without hdds or cd's and use USB "on call" and leave the system running day and night!!

Similar Messages

  • Turn off message "Script is trying to connect to SAPGui"

    Hi again everyone.
    I have small simple question.
    When I connect through Excel VBA to sap:
    Dim App, Connection, session As Object
    Set sapguiauto = GetObject("SAPGUI")
    Set App = sapguiauto.GetScriptingEngine
    Set Connection = App.Children(0)
    Set session = Connection.Children(0)
    The message, see attachement, pops up - you just have to click ok or press enter. I tried Sendkeys and application.displayalerts but neither of it works.
    Is there a way, how to jump it over/ skip it/ press the OK button via script.
    BTW: when I had older version of SAP - pre 7 version I think, It worked without note.
    Thanks for your advices.

    Ahoj Miroslav,
    this issue is so old as the SAP GUI Scripting. You can try the following:
    SAP GUI -> Alt / F12 (local layout tune) -> Options -> Scripting:
    - Notify when a script connects to SAP GUI -> deactivate
    - Notify when a script establishes a connection -> deactivate
    Regards ScriptMan

  • 2012 MacBook Pro running extremely slowly with constant color wheel

    I have a 2012 MacBrook Pro and yesterday it randomly began to function extremely slowly and has almost a constant color wheel. This does not just happen when on the internet, but happens with any function of my computer. Even the typing is lagging.
    The following information might be helpful in attempting to find a solution:
    -All of my updates are up to date
    -I have tried turning off my computer and restarting it a few times, including trying it in SafeMode and there was no difference.
    -My computer has never done this before.
    -I did not have an abnormal amount of activity happening on my computer when it began to function extremely slowly.
    Anyone have any ideas of what could be happening and how I can fix this?
    Thank you!

    Are these typical problems that happen when there are problems with a startup drive or another hardware component?
    Yes.
    When the slowdown is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • How can I turn off messages for certain Action Center items?

    I'd like to find a way to turn off messages for Windows Update, Network Firewall and Windows Backup. Ideally I'd like to do it with Group Policy however I can't find a policy for this. We're deploying Windows 7 right now and we'll need a solution that's domain-wide.Orange County District Attorney

    Here's a script I made to uncheck Windows Update, Network firewall, Windows Backup for Windows 7 machines: (Just comment or uncomment both the Hold__ = True lines below)
    Note: this only un-checks the boxes
    Option Explicit
    Dim WshShell:Set WshShell=CreateObject("Wscript.Shell")
    On Error Resume Next
    Dim HoldReg, HoldProblem, HoldWindowsUpdate, HoldSpyware, HoldInternet, HoldUAC, HoldFirewall, HoldVirus, HoldBackup, HoldCheckUpdates, HoldTroubleshooting
    HoldProblem = False
    HoldWindowsUpdate = False
    HoldSpyware = False
    HoldInternet = False
    HoldUAC = False
    HoldFirewall = False
    HoldVirus = False
    HoldBackup = False
    HoldCheckUpdates = False
    HoldTroubleshooting = False
    Err.Clear()
    'Windows Update
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.103\CheckSetting")
    If Err <> 0 Then
        HoldWindowsUpdate = True
    ElseIf uBound(HoldReg) < 220 Then
        HoldWindowsUpdate = True
    End If
    Err.Clear()
    'Spyware
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.102\CheckSetting")
    If Err <> 0 Then
    '    HoldSpyware = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldSpyware = True
    End If
    Err.Clear()
    'Internet
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.104\CheckSetting")
    If Err <> 0 Then
    '    HoldInternet = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldInternet = True
    End If
    Err.Clear()
    'UAC
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{C8E6F269-B90A-4053-A3BE-499AFCEC98C4}.check.0\CheckSetting")
    If Err <> 0 Then
    '    HoldUAC = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldUAC = True
    End If
    Err.Clear()
    'Firewall
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.101\CheckSetting")
    If Err <> 0 Then
        HoldFirewall = True
    ElseIf uBound(HoldReg) < 220 Then
        HoldFirewall = True
    End If
    Err.Clear()
    'Virus
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.100\CheckSetting")
    If Err <> 0 Then
    '    HoldVirus = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldVirus = True
    End If
    Err.Clear()
    'Windows Backup
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{01979c6a-42fa-414c-b8aa-eee2c8202018}.check.100\CheckSetting")
    If Err <> 0 Then
        HoldBackup = True
    ElseIf uBound(HoldReg) < 100 Then
        HoldBackup = True
    End If
    Err.Clear()
    'Check for updates
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{945a8954-c147-4acd-923f-40c45405a658}.check.42\CheckSetting")
    If Err <> 0 Then
    '    HoldCheckUpdates = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldCheckUpdates = True
    End If
    Err.Clear()
    'Troubleshooting
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{A5268B8E-7DB5-465b-BAB7-BDCDA39A394A}.check.100\CheckSetting")
    If Err <> 0 Then
    '    HoldTroubleshooting = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldTroubleshooting = True
    End If
    Err.Clear()
    If HoldWindowsUpdate+HoldSpyware+HoldInternet+HoldUAC+HoldFirewall+HoldVirus+HoldBackup+HoldCheckUpdates+HoldTroubleshooting <> 0 Then
        WshShell.run "rundll32.exe shell32.dll,Control_RunDLL wscui.cpl", 1
        Wscript.Sleep 1000
        WshShell.SendKeys("+{TAB}") 'shift-tab
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("{ENTER}")
        Wscript.Sleep 500
        WshShell.SendKeys("{TAB}")
        If HoldWindowsUpdate Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldSpyware Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldInternet Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldUAC Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldFirewall Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldVirus Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldBackup Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldCheckUpdates Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldTroubleshooting Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        WshShell.SendKeys("{TAB}")
        WshShell.SendKeys("{TAB}")
        WshShell.SendKeys("{TAB}")
        Wscript.Sleep 500
        WshShell.SendKeys("{ENTER}")
        Wscript.Sleep 500
        WshShell.SendKeys "%{F4}" 'alt-f4
        If HoldWindowsUpdate Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.103\CheckSetting")
            If uBound(HoldReg) < 220 Then
                MsgBox "Problem unchecking Windows Update"
                HoldProblem = True
            End If
        End If
        If HoldSpyware Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.102\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Spyware"
                HoldProblem = True
            End If
        End If
        If HoldInternet Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.104\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Internet"
                HoldProblem = True
            End If
        End If
        If HoldUAC Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{C8E6F269-B90A-4053-A3BE-499AFCEC98C4}.check.0\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Firewall"
                HoldProblem = True
            End If
        End If
        If HoldFirewall Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.101\CheckSetting")
            If uBound(HoldReg) < 220 Then
                MsgBox "Problem unchecking Virus"
                HoldProblem = True
            End If
        End If
        If HoldVirus Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.100\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Backup"
                HoldProblem = True
            End If
        End If
        If HoldBackup Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{01979c6a-42fa-414c-b8aa-eee2c8202018}.check.100\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Backup"
                HoldProblem = True
            End If
        End If
        If HoldCheckUpdates Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{945a8954-c147-4acd-923f-40c45405a658}.check.42\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Check Updates"
                HoldCheckUpdates = True
            End If
        End If
        If HoldTroubleshooting Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{A5268B8E-7DB5-465b-BAB7-BDCDA39A394A}.check.100\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Troubleshooting"
                HoldProblem = True
            End If
        End If
        If HoldProblem Then
            Wscript.Sleep 1000
            WshShell.run "rundll32.exe shell32.dll,Control_RunDLL wscui.cpl", 1
            Wscript.Sleep 1000
            WshShell.SendKeys("+{TAB}") 'shift-tab
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("{ENTER}")
            MsgBox "Please select options manually"
        Else
            MsgBox "Done"
        End If
    Else
        MsgBox "No changes made"
    End If
    Set WshShell = Nothing

  • Colored Pictures Turning Black and White in Certain Files (PSE 9.0)

    Hey guys, how's it going?
    I'll try to keep this breif, but it may take a little while to explain. I've been getting a problem with PSE 9.0 where an image or layer that is in color suddenly turns black and white when I paste it into an open file. It's a lot easier to explain with pictures, so here you go.
    Figure 1
    Figure 2
    (Before anything else is said, I would like to point out the reasoning behind relating a middle-finger, a hammer and sickle, and a pony from My Little Pony: Friendship is Magic into a single image; it's a parody project I'm working on. It's about 30 times weirder out of context, trust me.)
    As you can see, the source imagery with "APPA JAK" on it (figure 1) is in full color, but when I pasted it onto the layer with the hammer and sickle, it turned black and white. This has become the same with a few other images I have found, but I couldn't find any reliable way to recreate the problem. The problem is also the same weather I find the pictures from the internet, copy those to my clipboard, and paste them or simply paste them from my computer.
    If you need any more information (dxdiag, settings, etc. etc.) feel free to ask, and thanks in advance for helping me!

    Just a guess because I don't have the original images to play with, but the hammer and sickle is a grayscale image so images posted into it become grayscale. 
    Use Image / Mode / RGB Color to change the target image to color before pasting anything into it.
    Alternatively, use File / New to create a new image that is full color and paste everything into it.

  • Calendar script needed

    I need a recommendation for a PHP calendar script. It should
    have both a
    large display for use on a single page as well as a small one
    for use in
    a sidebar, like on a home page. The script needs to be able
    to handle
    links from within an event and must be easy for a user to
    update.
    And finally, it must integrate easily into an existing
    design.
    Any ideas?
    Thanks,
    Harvey Wasserman

    You're welcome!
    eclipsme wrote:
    > Thanks, MD
    >
    > Harvey
    >
    > Mad Dog wrote:
    >> If you want to be able to change the PHP files, then
    this is a
    >> problem. If you don't need to mess with them (and I
    don't know why
    >> you would when there are plenty of variables and CSS
    you can mess
    >> with the make the changes) then there's nothing to
    worry about.
    >> Installation is a breeze as long as you have Zend
    Optimizer or
    >> IonCube on the server. MD
    >>
    >>
    >> "eclipsme" <[email protected]> wrote in message
    >> news:ga8a3l$1o0$[email protected]..
    >>> Thanks for the reference. Yes, this looks
    interesting, but I don't
    >>> like that that the script is encoded. For
    instance, this line
    >>> bothers me: "DON'T GIVE UP! Installation of
    encoded files can be tough.
    >>> If you
    >>> haven't already, try the Auto-installer."
    >>>
    >>> Harvey
    >>>
    >>> Mad Dog wrote:
    >>>> www.easyPHPCalendar.com
    >>>>
    >>>> I've used it on several sites including
    integrating it into a
    >>>> Wordpress-run site.
    >>>>
    >>>> Mad Dog
    >>>>
    >>>>
    >>>> eclipsme wrote:
    >>>>> I need a recommendation for a PHP
    calendar script. It should have
    >>>>> both a large display for use on a single
    page as well as a small
    >>>>> one for use in a sidebar, like on a home
    page. The script needs
    >>>>> to be able to handle links from within
    an event and must be easy
    >>>>> for a user to update.
    >>>>> And finally, it must integrate easily
    into an existing design.
    >>>>>
    >>>>> Any ideas?
    >>>>>
    >>>>> Thanks,
    >>>>> Harvey Wasserman

  • Print All Colors As Black Using VB Script on CS3

    Is there a way to set all colors as black using a script? I have found the TextAsBlack option, but I also need it to work with images on the page. I have not figured out how to set the ink alias within a script (have not been able to find any information on how to so) and the print presets do not seem to include the ink alias setting. Below is what I have so far.
    Thanks,
    Archie
    Rem PRINT FILE
    Rem ----------
    Function myPrintFile (myInDesign, myDocument, myPrintToFile, myFileName)
    With myInDesign.ActiveDocument.PrintPreferences
    .Printer = myPrintToFile
    .TextAsBlack = True
    .ScaleHeight = 98
    .ScaleWidth = 98
    .PagePosition = idPagePositions.idCentered
    .PaperSize = "A4"
    .PrintFile = myFileName
    End With
    myInDesign.ActiveDocument.PrintOut False
    End Function

    I have no clue about the specific params, but from a conceptual point of view you will want to print to a grayscale destination profile (then everything else will simply fall into place).
    Olaf Drümmer

  • Illustrator scripter needed

    Illustrator scripter needed to write a simple script regarding layers in AI.
    If you are interested, please contact me at [email protected]

    hi all,
    this is my first time to this forum , I need your help friends .I want to apply background color to pageitem using javascriping
    (widows os). How can I do this?
    Please send the mail regarding to this to [email protected] or [email protected]
    Thanks in advance
    Dhananjay Patil

  • Message "you need to restart computer" when shutdown Mac OS X or WIN7

    On my book Pro with Mac OS X 0.7.2 i creted a new Bootcamp Partition and i installed WIN7 Ultimate. When installation was completed i installed Bootcamp driver. Now i'm able to login with OS x or with Win7 and both system seems to work properly.
    When i shutdown Win7 or OSX a gray window is displayed with this message "YOU NEED TO RESTART COMPUTER. HOLD DOWN YHE POWER BUTTON UNTIL IT TURNS OFF, THEN PRESS THE POWER BUTTON AGAIN."; this message is displayed in 5 different langueges; under the message is displayed a black  icon with the force shutdown / restart button of the mac book pro.
    I follow the required procedure: if i choose to restart with OS X an alert essage is dispayed : "COMPUTER WAS RESTARTED DUE TO A PROBLEM"; dialog suggest to send notification to Apple; this message is displayed in my original language: Italian.
    Some one can help me please?
    Thx
    carlo Casoli

    That is hardware and driver issue and to resolve you are probably going to have to find what was installed and uninstall, and disconnect the device.
    AppleHFS.sys can have trouble mounting drives.
    To write to Windows, NTFS driver (Paragon-Software)
    To stop using AppleHFS, again, replace with a Windows HFS driver
    - if that is the cause
    Apple does not support mounting RAID while in Windows.
    Reinstall won't help. And you can't avoid forever.
    Also boot from Windows 7 DVD and repair - go back to prior restore point.

  • During last weeks, when I connect my macbook it stays long time with the color wheel turning around. Finally I have to hard-reset. Any clue?

    during last weeks, from time to time, when I connect my macbook it stays long time with the color wheel turning around. Finally I have to hard-reset. Any clue?
    It's Mac OS X 10.7.3

    It's Mac OS X 10.7.3
    The startup disk may need repairing.
    Use Lion Recovery for that.

  • My brand new iphone 6 when charging for the first time gets a message "iphone needs to cool down before using" cannot even charge it

    My brand new iphone 6 when charging for the first time gets a message "iphone needs to cool down before using" cannot even charge it. Have offed and on several times, but same result. Any help on this.

    To resume use of your device as quickly as possible, turn it off, move it to a cooler environment, and allow it to cool down.
    You can read more on :Keeping iPhone, iPad, and iPod touch within acceptable operating temperatures

  • My second brand new iphone 6 when charging for the first time gets the message "iphone needs to cool down before using" cannot even charge

    My brand new iphone 6 when charging for the first time gets a message "iphone needs to cool down before using". I cannot even charge it. I offed it and on it several times, still the same message keeps on coming.

    To resume use of your device as quickly as possible, turn it off, move it to a cooler environment, and allow it to cool down.
    You can read more on :Keeping iPhone, iPad, and iPod touch within acceptable operating temperatures

  • I have the latest version of Pages installed, yet there are documents I try to open and the message "you need a newer version of Pages to open this document".  Help?

    When I try to open some of my documents, the message "you need a newer version of Pages" appears; yet, I have installed the latest/newest version. How do I clear this up? Thanks.

    You have 2 versions of Pages on your Mac.
    Pages 5.2 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.01 can not open Pages 5.2 files and you will get the warning that you need a newer version.
    Pages 5.2 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Once opened and saved in Pages 5.2 files can not be opened in Pages 5.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed over 95 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9alredy

    Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9 is alredy installed on computer. Is this a 64 bit ossue although I am sure I did not have this problem prior to a replacement hard drive being installed.

    What is your operating system, browser?
    What is the exact message you are getting?

  • When I try to open a recent document I get the following message "You need a newer version of Pages to open this document."  I have downloaded version Pages version 5.2.2 and the app store confirms this, but my Pages About reports that I am using 4.3

    When I try to open a recent document I get the following message "You need a newer version of Pages to open this document."  I have downloaded version Pages version 5.2.2 and the app store confirms this (and won't let me download it again), but my Pages About reports that I am using 4.3

    Here is the solution that I received from the chat line.
    When you update applications like Pages it usually keeps both versions on the computer. So what most likely happened is it didn’t put the new version on your dock. So to fix this, open a finder window. And go into applications which should be listed on the left. Scroll down and you will see Pages listed in here. And the icon should look different. You can drag that icon down onto your dock.Open that and you then can access your documents

Maybe you are looking for

  • Can I have both facing and non-facing pages in a document?

    I am trying to assemble a booklet with 11x17 spreads - some of these will be two facing 8.5x11 pages, but others will be a single 11x17 image, and would be better to treat them as a one page spread. We will be producing a hardcopy and an electronic v

  • QT Pro key - Migrating from PB to MBP

    Hello there, I just got a MacBook Pro and transfered (just about everything transferable) from my old PB using the Migration Assistant. I can see that my QT Pro key was transfered over with the migration process that was part of the original configur

  • How to identify which ALV triggered event in split ALV

    Hi all, I'm using a split ALV like this: CREATE OBJECT ob_custom   EXPORTING     container_name = 'CONTAINER'. CREATE OBJECT ob_split1   EXPORTING     parent      = ob_custom     orientation = cl_gui_easy_splitter_container=>orientation_vertical. CRE

  • Adobe Elements 11 does not open

    I just bought the Full Version of Elemts 11 and installed it on  my PC. There was no Prblem during the installtion and I could enter the serial number. The icon for Elemtens 11 is on my desktop, but when I click it ther comes a message, that tells my

  • Detecting inserts with OdiWaitForData

    Hi, I want to detect the inserts done from a source table using ODI's environment, and then export those changes to a xml file. How can I do that? I suppose that for the first step I have to use OdiWaitForData, but how is it used? Thanks in advance.