Having trouble getting appleworks 6 to open. When I have tried to update, I am getting a shared library error.

Appleworks 6 will no longer open. When I have tried to update appleworks, I am getting a  message saying a shared library error is preventing it from updating.
Any suggestions?

Might be worth repeating the question in this forum:
AppleWorks

Similar Messages

  • I have just downloaded firefox 3.6.11 and adobe flashplayer update and adobe reader update. Now I cannot get firefox to open. I have tried removing the program but when I try to do that it says that I need to close firefox - but of course it is not open

    I have just downloaded firefox 3.6.11 and adobe flashplayer update and adobe reader update. Now I cannot get firefox to open. I have tried removing Firefox but when I try to do that it says that I need to close firefox - but of course it is not open. I have waited a long time but nothing has happened so I am getting desperate Thanks -- Jerry

    Do a clean (re)install:
    * Download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Don't remove personal data when uninstalling.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can initially skip the step to create a new profile, that may not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • I keep on getting this unresponsive script error "Script: chrome://greasemonkey/content/prefmanager.js:55" . I have tried to update everything and it still showing that error and then crashing. What can I do?

    I am running Facebook and leaving it on..when I come back to it or sometimes when i am using it i get this Unresponsive Script Error - Script: chrome://greasemonkey/content/prefmanager.js:55. If i click continue or stop it will go away but many times the page is frozen so i have to restart Firefox. I am not using Chrome so i am surprised about that part of the error. I have read the other posting and have tried to change the time under config......can't remember the rest and it has not worked. Please advise what else i can do.

    In Firefox the use of the term chrome refers to the user interface and other elements that are not part of the web pages.
    See https://developer.mozilla.org/en/Chrome
    Your problems seems to be caused by the GreaseMonkey extension.<br />
    See [[Troubleshooting extensions and themes]]

  • I am having trouble with firefox and adobe reader. Also when I have tried to update firefox, it will never finish. Very frustrated

    I just can't do anything that needs adobe reader

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!

  • HT204266 I have an iPhone 4s and I have been having troubles with the downloaded apps. I have tried everything from re installation to restarting and deleting but nothing is working. When I press the icon, there is a flash and I return to my home screen.

    Exactly as I mentioned above, the app just gives a flasha nd returns to the home screen, I have tried everything and nothing has really worked. Any suggestions?

    Basic troubleshooting steps straight out of the User Guide are restart, reset, restore from backup, restore as NEW.  Have you been through ALL of these steps?

  • How do I fix it when I have tried to update from Firefox 3.6.23 to Firefox 7 but when I try to run the update I keep getting a msg that I need to restart my system to update a previous version

    I downloaded Firefox 7 and when I ran the program and got to the Setup Wizard and click Standard setup I get this message "Your computer must be restarted to complete a previous upgrade of Firefox. Do you want to reboot now?" I click on yes to reboot but am still not able to install the newest version.

    Be certain you understand before attempting anything.
    There's nothing wrong with asking clarification questions... but the links are to detailed information,,.. it would be redundant to copy/paste the entire contents here.
    You may want to print out the directions.
    First try booting into safe mode to see if the kernel panic still occurs.
    If it does you have hardware issues, or disk corruption... .  Disk corruption can often be solved by Disk Repair (sometimes it cant ... then it means replacing the SSD)
    If the problem goes away in a safe boot we are possibly looking at a corrupt (or weird) 3rd party extension.
    Take it in stages.

  • Getting error message when i am trying to update the excel file using script task in ssis package

    Hi Guys,
    I am getting error message when I am trying to update the excel. Please find the error messages as below
    Error at Update File [Update File]: Failed to compiled scripts contained in the package. Open the package in SSIS Designer and resolve the compilation errors.
    Error at Update File [Update File]: BC30002 - Type 'Microsoft.Office.Interop.Excel.Application' is not defined., ScriptMain.vb, 32, 32
    Error at Update File [Update File]: BC30002 - Type 'Microsoft.Office.Interop.Excel.Workbook' is not defined., ScriptMain.vb, 33, 25
    Error at Update File [Update File]: The binary code for the script is not found. Please open the script in the designer by clicking Edit Script button and make sure it builds successfully.
    Warning at Update File [Update File]: Found SQL Server Integration Services 2008 Script Task "ST_050fcae972904039b4f0fe59b7528ece" that requires migration!
    and the code that   I am using is
    Dell - Internal Use - Confidential
    ' Microsoft SQL Server Integration Services Script Task
    ' Write scripts using Microsoft Visual Basic
    ' The ScriptMain class is the entry point of the Script Task.
    Imports System
    Imports System.Data
    Imports System.Math
    Imports Microsoft.SqlServer.Dts.Runtime
    Imports Microsoft.Office.Interop.Excel
    <System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="",
    Description:="")> _
    <System.CLSCompliantAttribute(False)> _
    Partial
    Public Class ScriptMain
    Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
    Enum ScriptResults
                Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success
    Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
    End Enum
    Public Sub Main()
            Dts.TaskResult = ScriptResults.Success
    'Dim proc As System.Diagnostics.Process
    'kill all instances of excel
    'For Each proc In System.Diagnostics.Process.GetProcessesByName("EXCEL")
    ' proc.Kill()
    'Next
    Dim excelnacomm As
    New Microsoft.Office.Interop.Excel.Application
    Dim wbnacomm As Microsoft.Office.Interop.Excel.Workbook
            wbnacomm = excelnacomm.Workbooks.Open("http://test.xlsx")(renamed
    the excel)
            wbnacomm.RefreshAll()
            wbnacomm.Save()
            wbnacomm.Close()
            excelnacomm.Quit()
            Runtime.InteropServices.Marshal.ReleaseComObject(excelnacomm)
    End Sub
    End
    Class
    Please let me know what could be the reason
    Smash126

    Download:
    Microsoft Office 2010: Primary Interop Assemblies Redistributable
    How to: Add or Remove References By Using the Add Reference Dialog Box  /  How to:
    Add and Remove References in Visual Studio (C#)
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Having trouble with Tiscali/TalkTalk site when accessed with 'FireFox', can't 'reply' to emails or report 'spam', other functions seem ok

    Having trouble with Tiscali/TalkTalk site when accessed with 'FireFox',
    can't 'reply' to emails or report 'spam', other functions seem ok
    == This happened ==
    Every time Firefox opened
    == On/Off few months now all time

    Try deleting cookies and cache:
    1. Tools| Clear recent history
    2. Time range to clear: Everything
    3. If it isn't already selected, select '''Cookies''' and '''Cache'''
    4. '''Clear now'''
    <u>Check cookie exceptions</u>
    1. Tools | Options | Privacy Panel
    2. Set '''Firefox will: Use custom settings for history''' Insure Accept cookies for sites and accept third-party cookies is selected
    3. Click '''Exceptions'''. If the misbehaving site is in that list, select it and click '''Remove site'''
    Also see [[Updating Firefox]]

  • Is anyone else having trouble setting up messages with the new mountain lion software? I keep getting a notification that i cant sign in and it is saying, check network connection and try again, but i have full wifi bars, thanks, Justin

    is anyone else having trouble setting up messages with the new mountain lion software? I keep getting a notification that i cant sign in and it is saying, check network connection and try again, but i have full wifi bars, thanks, Justin

    Install this to get X11 functionality back in 10.8
    http://xquartz.macosforge.org/landing/
    Worked great for me and others.
    Jerry

  • How do I get Firefox to open when I dial up to connect to the internet, instead of internet explorer for the internet service provider?

    I have a dial up connection for the internet through Netzero.com, and when I click on it to dial up to the internet, it brings up the Netzero home page on Internet Explorer. I've changed my default home page from Internet Explorer, to Firefox, but when the internet is connected, Internet Explorer is the one that brings up the Netzero home page, not Firefox, so I have to click on the icon for Firefox, and then it opens, with Netzero home page on it, so I have to go through 2 different processes to get to use Firefox. I downloaded Firefox because it's suppose to be faster that Internet Explorer, especially since Internet Explorer keeps not responding when I'm in the middle of doing something. So I thought I'd try Firefox, but it doesn't seem to be faster than Internet Explorer, since the ISP that I have has a web accelerator, but it doesn't work on Firefox for some reason, I can see on a meter on my desktop when it's accelerating, and Firefox doesn't accelerate ever, if I change over to Internet Explorer, I can see the meter accelerating the web page. Hope you can help me with this problem, as I like Firefox. Thank you very much.

    Try changing firefox to the default browser: [http://kb.mozillazine.org/Setting_Your_Default_Browser]. That will probably get firefox to open when you dial up.
    I'm not sure what you mean by "the meter accelerating the web page". Can you explain that?
    Thank you

  • Appleworks 6 will not open I get a "shared library error" message. What can I do

    Appleworks 6 will not open. I get a "shared library error" message. What can I do?

    Hi, Bob. Welcome to Apple Support Communities.
    Try posting in AppleWorks Discussions:
    https://discussions.apple.com/community/applications/appleworks?view=discussions

  • HT1918 I'm having trouble viewing my account in iTunes, I'm signed in but can't get passed the next login window - any ideas?

    I'm having trouble viewing my account in iTunes, I'm signed in but can't get passed the next login window - any ideas?

    carolinechx wrote:
    i know the description may be a little bit too confusing
    Mostly because you are not using any capital letters or paragraph returns and your post is difficult to read.

  • How do I get Firefox to open when using MSOutlook?

    I open an email with a link in MSOutlook and it always opens that goofy MSExplorer.

    Try changing firefox to the default browser: [http://kb.mozillazine.org/Setting_Your_Default_Browser]. That will probably get firefox to open when you dial up.
    I'm not sure what you mean by "the meter accelerating the web page". Can you explain that?
    Thank you

  • I cant get iCloud to open when starting pages

    I cant get iCloud to open when starting pages with MacBook Air.  How can I turn this option on?

    Welcome to the Apple Community.
    That feature is only available in OSX 10.8. You'll need to upgrade or use iCloud.com.

  • Having trouble downloading acrobat x pro when i click on download on adobe's site; nothing happen

    having trouble downloading acrobat x pro when i click on download on adobe's site; nothing happen

    Please try a different web browser.

Maybe you are looking for

  • Setting Path and Classpath in Linux environnement

    Hello, I use to develop with JAVA under Windows platform, now i am using j2sdk under Mandrake 8.0 , i dunno how to set my PATH end Classpath variables, could you show me how? Thanks

  • Simple problem with encoding

    Which encoding does HTTP use ? I'm building a web-site. A response to a question asked to the client is given in a HTML text field. My HTML page uses utf-8 encoding. This response is transmitted to a servlet as an HTTP request parameter. When this re

  • Hebrew language is written backwards in LR cc, is there a fix for that?

    When typing in Hebrew language (e.g. in identity plate or text for slideshow), the text is written backward (i.e. from left to right i/o right to left), so the words are scrambled. In PS I can control the text adjustment and direction, but I don't se

  • Pasting files into Illustrator

    Hi, I am running Illustrator CS 11.0.0 on a MacBook Pro OS 10.6.7. I am suddenly having problems copying and pasting files from some graphic applications (DeltaGraph and Prism) into an open Illustrator file. I used to be able to do this easily. Is th

  • Upload and Manage Files missing from Tools area

    We are attempting to set up a new iTunes U site but have hit a roadblock when we get to the point of uploading content. All the instructions say to click on the "Upload and Manage Files" link in the Tools section of the iTunes page, but we have no su