Help - Fatal Error

I have about four spots (frames between a marker and a script that says stay at frame) - that anytime I click into one of the frames - the program crashes. So I worked around these spot. Now I started to publish and I get a Fatal Error - help -is there a way to delete these frames from somewhere other than the score (since clicking on the frame in the score) - crashes the program. When I recreated the missing pieces - I used the same cast members - and all is fine.

I did one - and it allowed me to click in that area -----thank you.
I will have to check the rest and then see if it allows me to publish - but this is definitely a step in the right direction.
What would cause this?
I have one other problem - I can live with it - but it is strange - 10% of the time when I save the file - it just spins - and says application not responding. I am on a Mac - Leopard. I have 11.5.  It happened even more frequently on 11.0 - any ideas?

Similar Messages

  • Help - Fatal Error When Loading New Updates of System Software

    Help please!!
    I have a 8120 and just logged in to sync ( as I do weekly) and was alerted to a Latest Update of Software, so I clicked yes etc. and it all started well, then when the software was part way through the install - suddenly it issued me with a Fatal Error Please try to reload the software message .
    Now I have no way of connectining to the BB as it appears I am now without any software (just a circle with a line through and the numbers 507 on the screen)
    Can anyone suggest what to do please?
    thanks
    Gavin

    Hi and Welcome to the Forums!
    Ouch...that sounds not so good. Here is a KB concerning the 507 code:
    KB02792 Error message "507" appears on the BlackBerry smartphone while upgrading BlackBerry Device Software
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Please Help Fatal Error

    Java(TM) Plug-in Fatal Error
    Cannot load class sun/plugin javaRunTime.
    The Bridge was installes at <C:\PROGRA~1\Java\JRE15~1.0_0> but the class is not there
    Modify the registry key to reflect the new bridge location
    the key is HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in or change your CLASSPATH to include the new directory
    Please consult the documentation for more information
    how do Solved the error?

    Nevermind, I solved it! I had to download carrier specific software from the Blackberry website first (link below), and THEN go to the Device Manager and finish the process there!
    https://www.blackberry.com/Downloads/entry.do?code=7D2A383E54274888B4B73B97E1AAA491
    Jeez, so complicated! But so relieved to finally have OS 6!

  • Itunes: Fatal Error During Installation (it wont download at all) HELP!

    Yesterday my iTunes (7.3.1) was working with no problems then the iTunes + Quicktime upgrade came up telling me to download the newer version but I didnt want to download it yet untill after i restarted my computer so I exited out of both the upgrade screen and iTunes then restarted the computer and when I tried to open up iTunes (after restarting), a little window came up saying:
    +*Preparing to install...*+
    Then after a minute or two it said: *+Please wait while Windows configures iTunes+*
    Then another window pops up saying:
    *+Error writing to file: C:\Program Files\iTunes\iTunesMiniPlayer.Resources\fi.lproj\iTunesMiniPlayerLocalized.dll. +*
    *+Verify that you have access to that directory.+*
    and I have no idea what that means so i closed it then a pop up shows saying: *+Fatal Error During Installation.+*
    so i deleted iTunes, Quicktime, iPod and everything i could (that my computer would let me) that had to do with Apple and restarted my computer then tried to download iTunes again but now when its reisntalling it says
    *+Error writing to file:+* +*C:\Program Files\Common Files\Apple\Mobile Device Support\bin\disnoted.exe.*+
    +*Verify that you have access to that directory.*+
    Then after this i went to the folder
    +*C:\Program Files\Common Files\Apple\Mobile Device Support\bin\disnoted.exe.*+
    and made sure that Read Only wasn't checked but everytime i go to uncheck it and click Apply and OK it doesnt stay it just goes right back to being checked...because when u click OK the window goes away so i immediately opened it back up to see if changed but it was filled again
    WHAT DO I DO?!?!? please can someone help me
    The details for my computer are:
    Microsoft Windows XP
    Professional Version 2002
    Service Pack 2

    if it helps at all...
    I downloaded Quicktime seperately from iTunes and i got that with no problem and it worked just fine but i cant get iTunes at all
    and i have follwed the instructions on the website about uninstalling everything but nothing seems to be working
    ...is there any possible way that anybody can help me out with this.
    any help that anyone can offer is very greatly appreciated,
    Please & Thank You.

  • Help with Error:  PANIC: fatal region error detected; run recovery

    Here's what I'm trying to do:
    I am trying to us BDBXML in a webapp using tomcat 5.5. I have a class that is responsible for opening and closing the db. This class is accessed by a servlet for some AJAX RCP stuff and it also serves as an access point for a Web Service (Apache Axis). This class looks like this:
    public class DG implements Serializable {
    private javax.xml.datatype.DatatypeFactory datatypeFactory;
    private Environment environment;
    private EnvironmentConfig environmentConf;
    private XmlContainer xmlContainer = null;
    private XmlManager xmlManager = null;
    private XmlManagerConfig xmlManagerConfig;
    public DG() {
    try {
    File envHome = new File("C:\\bdbxml\\database");
    environmentConf = new EnvironmentConfig();
    environmentConf.setAllowCreate(true);
    environmentConf.setInitializeCache(true);
    environmentConf.setInitializeLocking(true);
    environmentConf.setInitializeLogging(true);
    environmentConf.setRunRecovery(true);
    environmentConf.setTransactional(true);
    environmentConf.setLockDetectMode(LockDetectMode.MINWRITE);
         //tried the following with default and 10000
         environmentConf.setMaxLockers(100000);
    environmentConf.setMaxLockObjects(100000);
    environmentConf.setMaxLocks(100000);
    environmentConf.setTxnMaxActive(100000);
    environment = new Environment(envHome, environmentConf);
    CheckpointConfig cpc = new CheckpointConfig();
    cpc.setKBytes(500);
    environment.checkpoint(cpc);
    xmlManagerConfig = new XmlManagerConfig();
    xmlManagerConfig.setAdoptEnvironment(true);
    xmlManager = new XmlManager(environment, xmlManagerConfig);
    XmlContainerConfig xmlContainerConfig = new XmlContainerConfig();
    xmlContainerConfig.setIndexNodes(true);
    xmlContainerConfig.setTransactional(true);
    xmlContainerConfig.setNodeContainer(true);
    xmlContainer = xmlManager.openContainer("container.dbxml", xmlContainerConfig);
    xmlContainer.sync();
    datatypeFactory = javax.xml.datatype.DatatypeFactory.newInstance();
    } catch (FileNotFoundException e) {
         e.printStackTrace();
    } catch (DatabaseException e) {
         e.printStackTrace();
    } catch (DatatypeConfigurationException e) {
         e.printStackTrace();
    public void close() {
    try {
    if (xmlContainer != null) {
    xmlContainer.close();
    if (xmlManager != null) {
    xmlManager.close();
    } catch (DatabaseException e) {
    e.printStackTrace();
    public String getDocument(String docId) {
    try {
    XmlDocument doc = xmlContainer.getDocument(docId);
    String docString = doc.getContentAsString();
    doc.delete();
    return docString;
    } catch (XmlException e) {
    e.printStackTrace();
    public Result[] search(Search search) {
    try {
         //normally I construct the query string using the Search object
    StringBuffer q = new StringBuffer("subsequence(collection('container.dbxml')/metadata[contains(./idinfo//title, 'Ecology')], 1,10)");
    XmlQueryContext xqc = xmlManager.createQueryContext();
    XmlQueryExpression xqe = xmlManager.prepare(q.toString(), xqc);
    XmlResults xr = xqe.execute(xqc);
    int i = 0;
    Vector<Result> vec = new Vector<Result>();
    while (xr.hasNext()) {
    XmlValue xv = xr.next();
    XmlDocument xd = xv.asDocument();
    Result r = new Result();
    r.setMetadata(xd.getContentAsString());
    r.setDocumentId(xd.getName());
    XmlValue groupVal = new XmlValue(XmlValue.STRING);
    xd.getMetaData("", "group", groupVal);
    r.setGroup(groupVal.asString());
    XmlValue ownerVal = new XmlValue(XmlValue.STRING);
    xd.getMetaData("", "owner", ownerVal);
    r.setOwner(ownerVal.asString());
    XmlValue createdVal = new XmlValue(XmlValue.DATE_TIME);
    xd.getMetaData("", "created", createdVal);
    r.setCreated(createdVal.asString());
    XmlValue updatedVal = new XmlValue(XmlValue.DATE_TIME);
    xd.getMetaData("", "updated", updatedVal);
    r.setModified(updatedVal.asString());
    r.setPosition(search.getStartPosition() + i);
    updatedVal.delete();
    createdVal.delete();
    ownerVal.delete();
    groupVal.delete();
    xd.delete();
    xv.delete();
    vec.add(r);
    i++;
    xr.delete();
    xqe.delete();
    xqc.delete();
    return vec.toArray(new Result[vec.size()]);
    } catch (XmlException e) {
    e.printStackTrace();
    // PLUS SOME OTHER METHODS, BUT USING ONLY THESE TO TEST
    The Servlet looks like this:
    public class DGServlet extends javax.servlet.http.HttpServlet implements javax.servlet.Servlet {
    private DG dg;
    private final XPathFactory xpf = XPathFactory.newInstance();
    private final XPath xp = xpf.newXPath();
    private final SimpleDateFormat df = new SimpleDateFormat("EEE MMM d HH:mm:ss z yyyy");
    public DGServlet() {
    super();
    @Override
    public void destroy() {
    try {
    dg.close();
    } catch (Exception e) {
    log(e.getMessage());
    e.printStackTrace();
    super.destroy();
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    String action = request.getParameter("action");
    if (action != null && !action.equals("")) {
    if (action.equals("search")) {
    response.setContentType("text/xml");
    Result[] result = null;
    try {
    result = dg.search(constructSearch(request));
    } catch (Exception e1) {
    log(e1.getMessage());
    e1.printStackTrace();
    if (result==null || result.length==0) {
    response.getWriter().print("0");
    return;
    StringBuffer sb = new StringBuffer("<results>");
    for (int i = 0; result != null && i < result.length; i++) {
    try {
    sb.append("<result"
    + " title='"
    + xp.evaluate("/metadata/idinfo//title", new InputSource(new StringReader(result[i]
    .getMetadata()))));
    sb.append("' northbc='"
    + xp.evaluate("//northbc", new InputSource(new StringReader(result.getMetadata())))
    + "' southbc='"
    + xp.evaluate("//southbc", new InputSource(new StringReader(result[i].getMetadata())))
    + "' eastbc='"
    + xp.evaluate("//eastbc", new InputSource(new StringReader(result[i].getMetadata())))
    + "' westbc='"
    + xp.evaluate("//westbc", new InputSource(new StringReader(result[i].getMetadata())))
    + "' docid='" + result[i].getDocumentId() + "' group='" + result[i].getGroup()
    + "' owner='" + result[i].getOwner() + "' position='" + result[i].getPosition()
    + "' modified='" + result[i].getModified() + "' created='" + result[i].getCreated()
    + "'>");
    NodeList nodes = (NodeList) xp.evaluate("//digform", new InputSource(new StringReader(result[i]
    .getMetadata())), XPathConstants.NODESET);
    for (int j = 0; j < nodes.getLength(); j++) {
    sb.append("<resource download='"
    + StringEscapeUtils.escapeXml(xp.evaluate("//networkr", new InputSource(
    new StringReader(XMLUtil.printDOMTree(nodes.item(j)))))));
    sb.append("' format='"
    + StringEscapeUtils.escapeXml(xp.evaluate("//formname", new InputSource(
    new StringReader(XMLUtil.printDOMTree(nodes.item(j)))))));
    sb.append("'></resource>");
    sb.append("</result>");
    } catch (XPathExpressionException e) {
    e.printStackTrace();
    log(e.getMessage());
    } catch (TransformerConfigurationException e) {
    e.printStackTrace();
    log(e.getMessage());
    } catch (TransformerFactoryConfigurationError e) {
    e.printStackTrace();
    log(e.getMessage());
    } catch (TransformerException e) {
    e.printStackTrace();
    log(e.getMessage());
    sb.append("</results>");
    response.getWriter().print(sb.toString());
    else if (action.equals("details")) {
    response.setContentType("text/html");
    String str = "";
    try {
    str = dg.getDocument(request.getParameter("docId"));
    response.getWriter().print(
    setTranslatePage(str, new java.net.URL(
    "http://localhost:8080/datastream/stylesheets/fgdc/fgdc_classic.xsl")));
    } catch (Exception e) {
    e.printStackTrace();
    log(e.getMessage());
    public void init() throws ServletException {
    super.init();
    dg = new DG();
    It seems to work fine for a while, but then I get errors like the following:
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    com.sleepycat.dbxml.XmlException: Error: DB_RUNRECOVERY: Fatal error, run database recovery, errcode = DATABASE_ERROR
    at com.sleepycat.dbxml.dbxml_javaJNI.XmlManager_prepare__SWIG_0(Native Method)
    at com.sleepycat.dbxml.XmlManager.prepare(XmlManager.java:586)
    at edu.washington.cev.datastream.api.DG.search(DG.java:935)
    at edu.washington.cev.datastream.servlets.DGServlet.doGet(DGServlet.java:83)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:619)
    I've set this up on a Window XP machine using tomcat 5.5 and java 5 as well as a Redhat Linux machine with tomcat 5.5 and java 5. I'm using the Web Service point for other servers to access the database. Everything starts up and runs for a little while, but I can't seem to pin down what causes the errors. I've run recovery multiple times as well as started new databases. Any help is appreciated.

    There's a bug in your use of DB XML somewhere. Are you committing or aborting every transaction that you start, and calling delete() explicitly on all the DB XML objects that you use?
    Those errors mean your database has become corrupted somehow.
    John

  • "fatal error durring installation" when clicking on itunes - help

    I clicked on itunes shortcut when i started my PC and it said an error "fatal error durring installation". I've downloaded itunes about 3 times but it wouldn't get fixed.
    - help -

    Hey there,
    Take a look at this older discussion thread and see if it can help you out. Hope it does.
    http://discussions.apple.com/thread.jspa?threadID=1255199
    B-rock

  • Please Help Me!  Encore giving error message on Build:  "fatal error", Code: "6", note: "video buffe

    Hello,
    I have been trying to build a project (a 50gb Blu Ray disc) for the last couple of days and I keep getting an error message I have never gotten before.  The error says: "fatal error", Code: "6", note: "vide buffer underflows  Total bitrate is too high near..."
    I don't know why this is happening.  I build this entire project from the ground up once before using the exact same assets but I accidently deleted that project file so I had to put it together again.  But it was practically identical.  And it would build the project just find.  I deleted the cache folder.  I deleted the main video timelines and recreated them.  I made sure the transcode settings for bitrate were not too high.  I did everything I can think of.
    Can someone please help me?  I have no idea what to do now.  The frustrating thing is that the error message doesn't tell me what asset the problem is with or anything.  This is a rather complicated project.  I have two full length movie files (about 90 minutes each) and seven video special features.  I have five audio tracks and a couple of subtitle tracks.  I don't have any idea what asset is causing the problem!
    But I used all these same assets before and I built the project perfectly.  And it is not the subtitles because I deleted the subtitle tracks and I still got the error message.
    Is there any way of knowing what assets are causing the problem?  How can I fix this?
    I have a number of people who are waiting for the completion of this disc so I need to get this resolved pretty soon.
    Thanks.

    The error says: "fatal error", Code: "6", note: "vide buffer underflows  Total bitrate is too high near..."
    What is the rest of the error message?
    What version of Encore and what operating system?
    using the exact same assets
    What format? Already transcoded m4v/a3c 5.1 or what? Does Encore show them for Bluray as "Do Not Transcode"?
    What were the export settings, particularly bitrate?
    Is there any way of knowing what assets are causing the problem?
    Not through the error message.
    Rather than deleting elements to see what causes it, I would add elements (e.g. you got the error, deleted the subtitle tracks, and still had the error, leaving the possibilit that a cache or similar is contining the problem even if the subtitles caused it).
    So add just the menus and timelines, no extra audio, no subtitles,
    When starting a new project, make sure you are using a new name for the project.

  • Illustrator CS3 Won't Work "Fatal Error - Missing Component", HELP!

    HELP!
    I have installed adobe illustrator CS3 and when i try to open it it comes up "Fatal Error - Missing Component" underneath stating: /Library/Application Support/Adobe/Adobe Version Cue CS3/Client/3.0.0/VersionCue.framework. Is there anything i can do? Any help would be much appreciated.

    Looks like a permission problem where the folder or directory containing the framework my be not be avaiiable.
    I would go to Applications/Utilities/Adobe Installers and run the Illustrator CS3 Uninstaller.
    Trash the preferences if they have not been removed and check the Application Support an Cache folders to certain there are no remnants of CS3 on system.
    Then reinstall. Do not install version cue with this new install.

  • HELP! Fatal Error C0000034 applying update operation 303 of 106925 (_00000...)

    I don't know what to do.
    Installation of the Windows 7 service pack 1 had been interrupted. I started the computer up, and it stuck at the start up screen(black with windows logo and "Starting Windows". I had to force shut down by holding power button then when I started
    it back up I ran the Startup Repair. It restarted after that and THEN gave me the C0000034 Fatal Error code. I've left it there until I get help with what to do now.
    I cannot access my desktop, I haven't tried force shutting it down and starting again. I need major help, please.
    I don't know much about computers. I need something simple that I can understand.
    I hope I can get a quick reply, I don't want to have to wipe everything out.

    Hi,
    The solution for the issue from the author named Herman:
    Do the following:
    1. Locate a second computer with access to the internet.
    2. Open Notepad.
    3. Copy and paste the following text into Notepad.
         Dim xmlDoc, node, nodeList, fileName, backupFileName, numberOfPOQNodes
          Set xmlDoc = CreateObject("Microsoft.XMLDOM")
          If Wscript.Arguments.Count = 0 Then
          WScript.echo("Error! No XML file specified.")
          Wscript.quit
          End If
          fileName = WScript.Arguments(0)
          backupFileName = Left(fileName, InStrRev(fileName, ".") - 1) & "_backup.xml"
          If Not xmlDoc.load(fileName) Then
          WScript.echo("Failure loading XML file " & fileName & ".")
          Wscript.quit
          End If
          xmlDoc.save(backupFileName)
          Set nodeList = xmlDoc.documentElement.selectNodes("POQ")
          numberOfPOQNodes = nodeList.Length
          For Each node in nodeList
          xmlDoc.documentElement.removeChild(node)
          Next
          xmlDoc.save(fileName)
          Set xmlDoc = Nothing
          WScript.echo(numberOfPOQNodes & " POQ nodes removed. Script completed.")
       4. Click File, and then click Save as.
       5. Name the file script.vbs and save the file to a removable media device such as a USB thumb drive.
    APPLYING THE SCRIPT TO THE FAILED INSTALLATION:
    1. Restart your computer and start pressing the F8 key on your keyboard. You have to press F8 before the Windows logo appears. If the Windows logo appears, you have to try again by waiting until the Windows logon prompt appears and then shutting down and
    restarting your computer.
    2. Use the arrow keys to select Repair your Computer in the Advanced Boot Options area, and then press Enter. If you are prompted, select the Windows 7 installation to be repaired, and then click Next.
    3. Select the language and a keyboard input method, and then click Next.
    4. Select a user name, type your password, and then click OK.
    5. Under System Recovery Options, make a note of the Windows 7 drive letter listed on the line below Choose a recovery tool.
    For example, you may see something similar to the following.
    Operating system: Windows 7 on (C:) <VolumeName>
    Note In this example, the drive letter for Windows 7 would be C.
    6. Under System Recovery Options, click Command Prompt.
    7. Insert the removable media with the script (.vbs) file that you previously created into the PC.
    8. At the command prompt, navigate to the drive, and the directory, that contains the script (.vbs) file that you previously created.
    For example, if you previously saved the script.vbs file that you created to the root of a USB thumb drive, and the drive letter associated with the USB thumb drive is the “E” drive, you would simply type the following at the command prompt, and then press
    Enter.
    E:
    Note If you are not sure which drive contains the removable media you can use Diskpart to display a list of drives. To run Diskpart, follow these steps.
             1. Type Diskpart, and then press Enter.
             2. Type List volume, and then press Enter.
             3. Make a note of the drive that contains the removable media with the script (.vbs) file that you previously created. Assuming you used a USB thumb drive, the drive type will be listed as “Removable”.
             4. To exit Diskpart type Exit, and then press Enter.
    9. At the command prompt, type the following command and press Enter:
    Cscript Script.vbs C:\Windows\winsxs\pending.xml
    In this example, (c:\) is the drive letter that the Windows 7 operating system is installed on.
    This will run the script in the Script.vbs file. After the script completes, you may see a message similar to following.
    2 POQ nodes removed. Script Completed
    10. To exit the command prompt type Exit, and then press Enter.
    11. Restart your computer. Service Pack 1 installation should now complete successfully.
    Further problems?  See:
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;975484
    Hope this helps out!
    Spencer
    TechNet Community Support

  • Laptop shutting down automatically or sometimes showing fatal error.. please help

    hello guys,
    i have been using Hp pavilion dv5- 1103ax laptop for last 17months but now i have been having problem in it. my laptop shutting down automatically or sometimes showing fatal error due to physical memory dump.
    i thought because its got AMD Turion processor it might be heated up so its shutting itself down.. but now its getting off in 10minutes time or if i play a video in youtube or an avi file in system its switching off in the next minute..
    i just want to know what could be the problem and what should i do.
    please help me with this..
    regards ,
    venkat..

    Does the laptop also shut down from safe mode ?
    If yes, the perform hard drive self test to figure out whether it is a hardware or software issue .
    Plug in the ac adapter and remove all external device . Then, perform following steps to perform hard drive self test .
    1. Turn on/ Restart the laptop and keep tapping f10 key until bios set up screen appears .
    2. Select Tools/Diagnosis option using up or down arrow key.
    3. Select hard drive self test option.
    4. Run primary hard drive test .

  • PLEASE HELP! 'Fatal error' when downloading OS 6 for 9700

    I have a Bold 9700 which is in perfect working order.
    I have been trying for HOURS to successfully download OS 6, but everytime I try, I get the same message: 'Fatal Error'. I've tried everything - uninstalling, reinstalling, deleting apps, etc. I can't get anything to work! It seems to start experiencing problems when it's finishing the 'JVM' stage (whatever that is).
    Can someone help me? This is really frustrating!

    Nevermind, I solved it! I had to download carrier specific software from the Blackberry website first (link below), and THEN go to the Device Manager and finish the process there!
    https://www.blackberry.com/Downloads/entry.do?code=7D2A383E54274888B4B73B97E1AAA491
    Jeez, so complicated! But so relieved to finally have OS 6!

  • Fatal Error when generating FlashHelp. Please HELP!

    When I try to generate my Flashhelp output, an error occurs.
    This didn't happen before I added a background and header image to
    my template. Can anyone help, pleeeease??
    Here is the error I get:
    <b>
    Starting compilation...
    FlashHelp preprocessor 13.10.801
    Compiling S:\Steph\Help Files\Project
    Stop\!SSL!\FlashHelp\Project_Stop.htm ...
    Preparing to create FlashHelp...
    Finished preparing in 1 sec(s)
    Initializing compiler...
    Generating FlashHelp 1.00 (13.10.801)...
    Template Active Script Error: (null) [Line: 13] (null)
    Template Error: can not resolve macro: RegisterResolvers
    Fatal Error: Cannot run macro: RegisterResolvers in
    compilation script.
    Template Error: can not resolve macro: WH_HOME_HTM
    Template Error: can not resolve macro: WH_CSH_HTM
    Template Error: can not resolve macro: WH_CSH2_HTM
    Template Active Script Error: (null) [Line: 74] (null)
    Template Error: can not resolve macro: PostCompile
    Fatal Error: Cannot run macro: PostCompile in compilation
    script.
    Finished compiling FlashHelp in 1 sec(s)
    </b>

    This topic is posted repeatedly as well as cross posted.
    Click
    here to see a post where an answer has been offered.

  • HELP! Fatal error with Installation

    I keep getting a fatal error with installation of version 7.6. I've uninstalled and installed it several times with the same problem. I have tried installing a older version again and now I'm getting the same error. Help!!

    Hi Jorge,
    I am sorry to hear that.
    Here are a few things that I suggest you try:
    Grant Full Control for SYSTEM, NETWORK SERVICE and Administrator on C:\Windows\ServiceProfiles\networkservice folder.
    If you have Windows Process Activation service installed on the machine, uninstall it.
    Open required RPC ports.
    More information for you:
    Service overview and network port requirements for Windows
    http://support.microsoft.com/kb/832017#method7
    If the issue still persists, please check the event logs to see if there are any related error messages and troubleshoot accordingly.
    Regards,
    Amy

  • Itunes (&Quicktime) "Fatal Error"  -HELP

    Having serious problems out of nowhere using I-Tunes. Dont use it everyday and not sure of when started. Seems that Quicktime folder in program files will not allow ADMIN to delete. Tried to set permissions to all program files, but this file would not allow it. This file stays after deleting Quicktime from control panel and with Window Install clean up. Same error seen after older version installs as I was able to go C:\Documents and Settings\All Users\Application Data\Apple Computer\Installer Cache\QuickTime7x\QuickTime msi, double click on QuickTime msi and click repar or install Quicktime install cache and install these older versions - but get same error. Fatal Error after install goes through and I click on the ICON to use.
    Dont have any errors during the actual install or when uninstalling, just doesnt seem to go through after it finishes up.
    I believge the first error (and still comes up) is a Application Error from eventvwr.msc logs states:
    Detection of product '{5D601655-6D54-4384-B52C-17EC5385FBBD}', feature 'iTunes', component '{E8A1D3E2-F5D3-4B24-AB93-52F7E602A235}' failed. The resource 'C:\Program Files\iTunes\iTunes.exe' does not exist.
    Also did the following at http://support.apple.com/kb/HT1926
    Completely remove iTunes and QuickTime
    Empty your Temp directory and restart
    Clean up iTunes installer files on the computer
    Download QuickTime Standalone Installer
    Disable other conflicting software
    Make sure your folder names don't contain strange characters
    Still cant use ITUNES!!!

    Absolutely nothing happens when I try to uninstall QuickTime. It goes through the uninstall process, but then it just stops. No error messages or anything.
    I've been using the Windows "Uninstall a Program" feature because I haven't been able to start QuickTime.

  • W500 not starting - HELP - unable to locate BIOS ROM; Fatal error during GPU init

    hi gurus, 
    Following problem: 
    when i start W500 (ubuntu) it stays with the black screen, not even displaying initial ThinkPad message, where you might press the ThinkVantage blue button, to go to BIOS. It just stays black and does nothing. 
    Than I press Power button for a few seconds to shut it down and try again. Still black screen. 
    The same procedure again and again and sometimes  W500 boots up, sometimes wants to go to recovery mode, sometimes not. 
    Sometimes, after the black screen it displays the message:
    Invalid ROM contents
    ERROR Unable to locate BIOS ROM
    Fatal error during GPU init
    Anyone had the same problems?
    What are the possible checks i might execute, to check up W500?
    cheers
    lenowiow

    Update: I have now tried compiling vbios.bin and int10.bin directly into the kernel. No success.

Maybe you are looking for

  • Bursting error in 11.5.10

    Dear Techies, I am getting the following error when I am trying do a bursting XML/BI Publisher Version : 5.6.3 --Exception For input string: "" java.lang.NumberFormatException: For input string: ""      at java.lang.NumberFormatException.forInputStri

  • SSRS report with PowerPivot datasource - 401 Unauthorized

    Hello together, I have a tricky issue and hope that you can help me: Problem: I want to build a Reporting Services Report with a PowerPivot datasource with Report Builder 3.0. When I try to access the datasource via Report Builder I get the error: Th

  • Report with no heading descriptions IN ALV OUTPUT

    Report with no heading descriptions and nothing to choose when press "change layout button". means when i execute a report of alv no heading comes out in output.

  • How do i update security software?

    how do i update security software?

  • Motion with windows xp embedded

    I am trying to get some motion code to run under the Windows XP embedded Op system. Has anyone any new knowledge from that existing in the forum? If so can anyone possibly give me a blow by blow account of how to get some sample CVi motion code runni