Uncaught exception when I update window

Hi All,
I want to show a progress bar while executing script.
and i am using the following code for that:
var win = new Window("palette", "SnpCreateProgressBar", [150, 150, 600, 260]);
win.pnl = win.add("panel", [10, 10, 440, 100], "Script Progress");
win.pnl.progBar = win.pnl.add("progressbar", [20, 35, 410, 60], 0, 100);
win.pnl.progBarLabel = win.pnl.add("statictext", [20, 20, 320, 35], "0%");
win.show();
                    while(win.pnl.progBar.value < win.pnl.progBar.maxvalue)
                              // this is what causes the progress bar increase its progress
                              win.pnl.progBar.value++;
            win.pnl.progBarLabel.text = win.pnl.progBar.value+"%";
                              $.sleep(10);
    alert('Done!');
win.close();
But I am having following error when I run it:
Can you please tell me why it is happening....
Thanks
Harsh S

Yaar I am posting my code again on this portal:
this is terrible because its not working:::
function artboardToJPGs(size)
var win = new Window("palette", "SnpCreateProgressBar", undefined, {borderless: true});
win.pnl = win.add("panel", [10, 10, 440, 100], "Creating JPEG");
win.pnl.progBar = win.pnl.add("progressbar", [20, 35, 410, 60], 0, 100);
win.pnl.progBarLabel = win.pnl.add("statictext", [20, 20, 320, 35], "0%");
        win.show ();
for(i=0; i<10; i++)
    win.pnl.progBar.value+=10;
            win.pnl.progBarLabel.text = win.pnl.progBar.value+"%";
            win.update(); 
        var idx, j, sizes, jpegOpt, doc, docName, dF, artBds, abName, scale, jpgFile, destinationFolder, originalImage;
        jpegOpt = new ExportOptionsJPEG();
        jpegOpt.Optimization = true;
        jpegOpt.QualitySetting = 100;
        jpegOpt.blurAmount=0;
        jpegOpt.artBoardClipping=false;
        dF=new Folder(jpgImageFolder);
        if ( !dF.exists ) dF.create();
        doc = app.activeDocument;
        docName=doc.name;
        artBds = doc.artboards;
        idx = artBds.getActiveArtboardIndex();
        abName = artBds[ idx ].name;
           var w= artBds[ idx ].artboardRect[2] - artBds[ idx ].artboardRect[0] ;
           var h=artBds[ idx ].artboardRect[1] - artBds[ idx ].artboardRect[3];
            var width=  100+ ( (size - w)/w ) * 100;
            var height=  100+ ( ( size - h )/h ) * 100;
            jpgFile = File( dF.fsName + '/' + fileName + size + 'x' + size + '.jpg' );
            jpegOpt.horizontalScale =width;
            jpegOpt.verticalScale = height;
            doc.exportFile( jpgFile, ExportType.JPEG ,jpegOpt );
            win.close();

Similar Messages

  • Unexpected problem: uncaught exception when working with audio files in Soundtrack Pro

    Hey,
    Whenever I double click an audio file in the timeline to work on it, I end up getting the Error message: "Unexpected problem: uncaught exception" and Soundtrack Pro eventually crashes.  Also, this happens when I try to work with audio files in the file editor.  I have Leopard and am using Logic Studio 8.  Any insight would be much appreciated. Thanks
    Matt

    Didnt know how to remove the original clip from the STP arrange window - or whatever it's called in STPro.  So I could go no further in my perverse science experiment. 
    It also appeared that I could only import an aif but not a wav? 
    I gave up on STPro and did what I needed to do in Logic, which I use regularly.    
    Thank you for folowing up on this. 
    PS.  I used to use an old PowerPC version (1.0.3) of STPro and loved the way it visually showed the change in the waveform when you added each efffect.  It appears that the new version (3.0.1) does not allow you to do this anymore?  You can render or flatten the effects to see the final waveform, but then you are dead in the water and cant make changes?  
    Im such a newbie at STPro that I am probably not using it right? 

  • Runtime exception when continuously updating a JList

    Hello,
    my program has a JList to display some information and updates the content of this JList while the program is running. The JList is put in a JScrollPane and uses DefaultListModel to store its elements(the elements are all String objects).
    Initially the JList is empty. After the program starts, new elements will be continuously added into DefaultListModel with the addElement(Object obj) method. Once there are 50 elements in the JList, the program removes the first element (index=0) before adding a new element to the JList.
    The program seems to work fine, except it randomly generates ArrayIndexOutOfBoundsException at runtime, which is really annoying. Can someone help me to solve this problem? Many thanks.
    Part of the program is listed below:
    DefaultListModel tupleListModel=new DefaultListModel();
    JList tupleList=new JList(tupleListModel);
    JScrollPane sp1=new JScrollPane(tupleList);
    for(int i=0;i<50;i++)
            tupleListModel.addElement(op.nextTuple().toString());
    while(true){
             tupleListModel.remove(0);
             tupleListModel.addElement(op.nextTuple().toString());
    }One of the runtime error message is:
    java.lang.ArrayIndexOutOfBoundsException: 49 >= 49
    at java.util.Vector.elementAt(Vector.java:431)
    at javax.swing.DefaultListModel.getElementAt(DefaultListModel.java:70)
    at javax.swing.plaf.basic.BasicListUI.updateLayoutState(BasicListUI.java:1147)
    at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(BasicListUI.java:1098)
    at javax.swing.plaf.basic.BasicListUI.getPreferredSize(BasicListUI.java:281)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:1275)
    at javax.swing.ScrollPaneLayout.layoutContainer(ScrollPaneLayout.java:769)
    at java.awt.Container.layout(Container.java:1020)
    at java.awt.Container.doLayout(Container.java:1010)
    at java.awt.Container.validateTree(Container.java:1092)
    at java.awt.Container.validate(Container.java:1067)
    at javax.swing.RepaintManager.validateInvalidComponents(RepaintManager.java:353)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueueUtilities.java:116)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
    The other one is:
    java.lang.ArrayIndexOutOfBoundsException: 49
    at javax.swing.plaf.basic.BasicListUI.updateLayoutState(BasicListUI.java:1155)
    at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(BasicListUI.java:1098)
    at javax.swing.plaf.basic.BasicListUI.getPreferredSize(BasicListUI.java:281)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:1275)
    at javax.swing.JList.getScrollableTracksViewportWidth(JList.java:2147)
    at javax.swing.ScrollPaneLayout.layoutContainer(ScrollPaneLayout.java:786)
    at java.awt.Container.layout(Container.java:1020)
    at java.awt.Container.doLayout(Container.java:1010)
    at java.awt.Container.validateTree(Container.java:1092)
    at java.awt.Container.validate(Container.java:1067)
    at javax.swing.RepaintManager.validateInvalidComponents(RepaintManager.java:353)

    It's removing an item in the middle of trying to figure out what the preferred size of the jlist is. I would be that BasicListUI.updateLayoutState() has code in it something like thisint numItems = model.getSize();
    for (int i=0; i<numItems; i++) {
    String text = model..getElementAt(i).toString();  // bad time for the size to change
    }If the size changes, the loop will still iterate to what used to be the size. Try using SwingUtilities.invokeLater() when to update the list so that the changes will happen on the event thread.

  • Soundtrack Pro 2.0.2-Uncaught exception when exporting video

    I'm running STP2.0.2 on Leopard 10.5.6, 8core 2.8 Mac Pro ... and I just recently got it running
    Every time I try to export video from STP2 using Compressor (cause thats the only option I think) I'm getting an error "Uncaught Exception"
    I've checked the permissions on destination folder and Compressor alone works perfectly.
    ... help

    Hi, sorry to disappoint you but i don't know the answer.
    I just wanted to ask roughly how you combine video and audio in Compressor.
    I finished a project in Soundtrack Pro, but then found out there's no way to bounce it as a video file?
    Ideas?
    Thanks
    Simon

  • Initializer exception when running on windows

    Hi,
    I've recently tried running one of my applications on windows and was
    surprised to see that I was unable to create a PersistenceManager due to the
    following exception:
    Exception in thread "main" java.lang.ExceptionInInitializerError:
    javax.jdo.JDOFatalDataStoreException: gnu/regexp/REException
    NestedExceptions:
    java.sql.SQLException: gnu/regexp/REException
    at
    com.techtrader.modules.jdo.impl.jdbc.JDBCPersistenceManagerFactory.setup(JDB
    CPersistenceManagerFactory.java:174)
    at
    com.techtrader.modules.jdo.runtime.PersistenceManagerFactoryImpl.privateSetu
    p(PersistenceManagerFactoryImpl.java:496)
    at
    com.techtrader.modules.jdo.runtime.PersistenceManagerFactoryImpl.getPersiste
    nceManager(PersistenceManagerFactoryImpl.java:61)
    at
    com.techtrader.modules.jdo.runtime.PersistenceManagerFactoryImpl.getPersiste
    nceManager(PersistenceManagerFactoryImpl.java:50)
    at com.hcm.tools.jdo.JDOFactory.<clinit>(JDOFactory.java:101)
    at com.hcm.security.SecurityHelper.getStocks(SecurityHelper.java:82)
    I'm using a JDBC factory with these settings: optimistic true, retainValues
    true, nonTransactionalRead true. This program runs correctly when I run it
    on Linux. Could this be some kind of CLASSPATH problem with my windows
    environment, or is this a problem with Kodo? What does this exception
    mean? Thanks for your help.
    -Eric

    Hi Pat,
    The new stack trace looks a lot like the original, but maybe this will give
    you a little more info. Here it is:
    java.sql.SQLException: gnu/regexp/REException
    at
    com.techtrader.modules.jdo.impl.jdbc.schema.DB.getPersistentTypes(DB.java:26
    2)
    at
    com.techtrader.modules.jdo.impl.jdbc.JDBCPersistenceManagerFactory.setup(JDB
    CPersistenceManagerFactory.java:170)
    at
    com.techtrader.modules.jdo.runtime.PersistenceManagerFactoryImpl.privateSetu
    p(PersistenceManagerFactoryImpl.java:496)
    at
    com.techtrader.modules.jdo.runtime.PersistenceManagerFactoryImpl.getPersiste
    nceManager(PersistenceManagerFactoryImpl.java:61
    at
    com.techtrader.modules.jdo.runtime.PersistenceManagerFactoryImpl.getPersiste
    nceManager(PersistenceManagerFactoryImpl.java:50
    at com.hcm.tools.jdo.JDOFactory.<clinit>(JDOFactory.java:102)
    at com.hcm.security.SecurityHelper.getStocks(SecurityHelper.java:82)
    at com.hcm.security.SecurityHelper.getStock(SecurityHelper.java:108)
    at
    com.hcm.security.test.SecurityTest.listStock(SecurityTest.java:198)
    at com.hcm.security.test.SecurityTest.main(SecurityTest.java:44)
    Exception in thread "main" java.lang.ExceptionInInitializerError:
    javax.jdo.JDOFatalDataStoreException: gnu/regexp/REException
    NestedExceptions:
    java.sql.SQLException: gnu/regexp/REException
    at
    com.techtrader.modules.jdo.impl.jdbc.JDBCPersistenceManagerFactory.setup(JDB
    CPersistenceManagerFactory.java:174)
    at
    com.techtrader.modules.jdo.runtime.PersistenceManagerFactoryImpl.privateSetu
    p(PersistenceManagerFactoryImpl.java:496)
    at
    com.techtrader.modules.jdo.runtime.PersistenceManagerFactoryImpl.getPersiste
    nceManager(PersistenceManagerFactoryImpl.java:61
    at
    com.techtrader.modules.jdo.runtime.PersistenceManagerFactoryImpl.getPersiste
    nceManager(PersistenceManagerFactoryImpl.java:50
    at com.hcm.tools.jdo.JDOFactory.<clinit>(JDOFactory.java:102)
    at com.hcm.security.SecurityHelper.getStocks(SecurityHelper.java:82)
    at com.hcm.security.SecurityHelper.getStock(SecurityHelper.java:108)
    at
    com.hcm.security.test.SecurityTest.listStock(SecurityTest.java:198)
    at com.hcm.security.test.SecurityTest.main(SecurityTest.java:44)
    Thanks,
    Eric
    "Patrick Linskey" <[email protected]> wrote in message
    news:[email protected]...
    "Eric Lindauer" <[email protected]> writes:
    Exception in thread "main" java.lang.ExceptionInInitializerError:
    javax.jdo.JDOFatalDataStoreException: gnu/regexp/REException
    NestedExceptions:
    java.sql.SQLException: gnu/regexp/REException
    at
    com.techtrader.modules.jdo.impl.jdbc.JDBCPersistenceManagerFactory.setup(JDB
    CPersistenceManagerFactory.java:174)Eric,
    Can you provide me with a little more information? In JDOFactory,
    please intercept the exception and add the following code:
    catch (JDOFatalDataStoreException jfdse)
    for (int i = 0; i < jfdse.getNestedExceptions ().length; i++)
    jfdse.getNestedExceptions ().printStackTrace ();
    throw jfdse;
    and post the output. This will print out the full stack trace of the
    nested exception.
    I suspect that somehow, gnu.regexp.REException or some other
    gnu.regexp class made its way into your persistent-types array, either
    in the database (if you're using the JDO_SCHEMA_METADATAX table for
    persistent type storage) or in your system.prefs. Run 'schematool
    -action list' and see if there are any mentions of any gnu.regexp
    classes there.
    My hunch is based on the fact that we do not use the gnu.regexp
    package anywhere in our code.
    Additionally, I am sure that you and everyone else will be pleased to
    know that we are in the process of auditing our exception-throwing
    code to ensure that more detailed and useful messages are thrown in
    exceptional circumstances.
    -Patrick
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Uncaught exception when executing web dynpro application

    Hello all,
    I'm getting run time error exception CX_WDR_RR_EXCEPTION not caught when running web dynpro application
    The error analysis shows the custom component is locked by the user and cannot be regenerated. But I checked in SM12 for locked entries and component was not listed there.
    The program terminated in the include LWDR_RUNTIME_REPOSITORYF12
    Please suggest how to resolve the isse?
    Regards,
    anil

    Dear Anil,
    What type of WD is it ?
    Do you get the error when you trigger some sort of event ?
    Is it when first launch the WD ?
    Can you be more specific and share with us the code where this is dumping ?
    You can also check this link
    [CX_WDR_RT_EXCEPTION' - How to catch it?;
    Kind Regards
    /Ricardo Quintas

  • Uncaught exception when test the "HRTMC_TA_DEV_PLAN" (Development Plans)

    Dear All,
    We are facing an issue when we test the service "HRTMC_TA_DEV_PLAN" (Development Plans) for ESS/MSS we get the following error. This service is activated in SICF
    The URL http://sapqaserp.ffc.com.pk:8000/sap/bc/webdynpro/sap/hrtmc_ta_dev_plan was not called due to an error.
    Note
    The following error text was processed in the system QAS : Invalid parameter combination PLVAR/OTYPE/OBJID
    The error occurred on the application server SAPQASERP_QAS_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_HRBAS_OBJECT_OPERATIONS~EXIST_OBJECT of program CL_HRBAS_OBJECT_OPERATIONS====CP
    Function: STRUCTURE_BUILD of program SAPLRHAS
    Function: HR_STRUCTURE_GET of program SAPLRH_STRUCTURE_GET
    Method: GET_MANAGER of program CL_HRTMC_CP_BASIC_UTILITIES===CP
    Method: ON_START of program /1BCWDY/BE4YV9AB9Y1MZN3RKC36==CP
    Method: IF_COMPONENTCONTROLLER~ON_START of program /1BCWDY/BE4YV9AB9Y1MZN3RKC36==CP
    Method: OVERRIDE_EVENT_OIF of program /1BCWDY/BE4YV9AB9Y1MZN3RKC36==CP
    Method: IWCI_IF_FPM_OIF_CONF_EXIT~OVERRIDE_EVENT_OIF of program /1BCWDY/BE4YV9AB9Y1MZN3RKC36==CP
    Method: GET_UIBBS_FOR_EVENT of program /1BCWDY/8R131AGT95SAN0HYZNYO==CP
    Method: IWCI_IF_FPM_FLOORPLAN_COMP~GET_UIBBS_FOR_EVENT of program /1BCWDY/8R131AGT95SAN0HYZNYO==CP
    When i see the in ST22 it shows exception " CX_HRBAS_INVALID_PARAMETER". And I have search the SAP NOTES and found the following sapnotes
    1333240, 1532761, 139078 but they are not relevant as our SAP basis release on level 6 i.e. SAPKB70106 .
    Kindly help in resolving the issue.

    Hello Blamca,
    We are facing the same above error in the Development plan link in ESS, in Qa system , the link is working fine in DEv but in the QA it is rresulting in the error. The service is activated and when tested from there also results in the same error.
    and We have just tested this occurs for specific user and not with everyone who logins inot QA Portal:(
    Please suggest how to resolve this.
    Thanks in advace
    Pooja
    Edited by: Pooja Gupta on Jan 16, 2012 10:11 AM

  • Uncaught Exception when opeing query

    When opening a query/workbbok there is an Exception Error like;
    An error has occured when communicating with the BI server.
    Runtime Errors UNCAUGHT_EXCEPTION
    Exception CX_RSR_X_MESSAGE
    What happened?
    The exception 'CX_RSR_X_MESSAGE' was raised, but it was not caught anywhere
    along
    the call hierarchy.
    Since exceptions represent error situations and this error was not
    adequately responded to, the running ABAP program
    'CL_RSBOLAP_BICS_SERVICES======CP' has to be
    terminated.
    This ia only happening in Prod server.
    Can you suggest what can be the reason and to resolve it.
    Regards
    Soumen

    [Hello ,|http://chandranonline.blogspot.com]
    Please see the following OSS notes
    SAP Note 1067918 CL_RSBOLAP_BICS_SERVICES, HANDLE_UNCAUGHT_EXCEPTION
    SAP Note 1045008 RRK_LIST_OPEN CX_SY_REF_IS_INITIAL UNCAUGHT_EXCEPTION
    [Thanks|http://chandranonline.blogspot.com]
    [Chandran|http://chandranonline.blogspot.com]

  • How can I download the trial version of PS CC when the update window says I am up to date.

    I have tried to download the trial version of PS CC repeatedly. The downloads were unsuccessful but the download window says I am up to date and will not let me try again. How do I work around this?

    I followed the suggestion to run Creative Cloud Tool. It did enable me to retry the download, but the download failed again. All I get is 30KB of data and a circle with a slash over the icon. Is there any other way I can manage to download the trial of PS CC?

  • Uncaught exception error when entering in "Messages"

    I have a client that uses a Blackberry World Edition (8830) and when he tries to go into Messages (by selecting the Messages icon) he gets this error message all the time: Uncaught Exception:java.lang.null.pointer
    I tried 2 kind of resets, alt+caps+del and tried removing the battery while the BB is on and same thing, I did a hard reset, which is wipe the BB and client left me a message this morning that he still gets the same error message.
    From my BES console (we synchronise with Domino servers on a Lotus Notes plattform) I see that he has the
    platform version 3.0.0.81
    Blackberry version: 4.2.2.196
    His blackberry ues a Bell Mobility service.
    Right now, the only other thing I can think of is to download the OS and reload it on the BB using Desktop Manager.
    Can anyone help me with this please.  I appreciate all the help.
    Robert Goupil
    BES administrator
    * Update -- my client activated his blackberry with the BES this morning and sent me a message that, after the activation, the problem seems to be resolved.  Now, is there anything different that can be done in case  this happens again, we have over 800 blackberry users and most of them have the 8830 model.
    Message Edited by robgou on 11-05-2008 10:56 AM
    Solved!
    Go to Solution.

    Hi,
    Your troubleshooting actions were right on the money, as far as I can see.
    HRT is the Host Routing Tables. It is entries sent from the Carrier.
    When you highlight the above entry and hit register now, it registers it with the wireless network. Updates the device details onto the rim relay and sends down carrier specific icons or applicants
    I believe the problem existed in a corrupt application on the users smartphone, by registering the phone, the application
    was refreshed. This is the first time I have seen that particular exception message get resolved without a device
    reload. (Just for reference I have read 133150 posts.)
    Thanks,
    Please remember to resolve your thread. Put the check mark in the green box that contained your answer! Thanks
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Blackberry Curve 8530 - Update Problems - Now no BBM - "Uncaught Exception"???????????

    Had tons of issues after doing update earlier this week.  Have just about everything resolved (finally), but now my BBM won't even turn on.  I'm getting "Uncaught exception: java.lang.NullPointerException"  I've tried uninstalling and reinstalling, battery pull, etc.  Keep getting the same message, but only for BBM.
    Um, yeah....help.....please.  I'm  dying without BBM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Having the same issues I see posted here after the most recently Verizon forced wireless update except with my address book on a Storm 2.  I kept getting the icon to update, and I kept telling it not to update and not allowing the phone to schedule an update.  Then, one morning I wake up and my phone had updated! 
    I am a property manager for condominiums and HOA's.  My phone, it's contacts and calendar from Outlook are my lifeline.  All of my vendors, all of the Association's members, Board members, emergency contact info etc, are stored on my phone and laptop. After this forced wonderfull update, I cannot see any other contacts other than 1 787 times, I am receiving the uncaught exception java.lang.nullpointerexception" error option upon boot. If I do a search in the address book, it will find some of the contacts, but others are missing.  The only contact which is displayed in the contacts default view is the same one contact. I checked filters, I tried changing the sorting, etc.
    Of course this new update forced itself upon my phone the same morning during which at 5:00AM a major pipe burst in one of my Associations and crippled me for the next two days!  So during the first emergency call I spent about 20 minutes allowing access to all my applications without being able to make a single call and receiving all kinds of errors. 
    I just now am having a chance to work on the issue, and I call Verizon Wireless, enter my phone number and keep receiving the error that I must enter a 10 digit number 10 times. I finally get through to someone using my cell phone (which you are supposed to use a landline when calling if you need help with your phone), and they patch me through a line that says regular business hours are X to Z,  11:00PM being not during those times. So then I try the emergency support option, and get patched through to the same recording!!!!  What exactly is emergency support?
    So I am forced to support myself ....again.  I tried forcing an update to the address book and it simply won't sync. I double-checked the option to sync the address book and it was set to sync. I read to update the desktop manager through a clean install, so I did.  When I try to configure the address book serviceDesktop Manager 6 shows "address book not installed".  3 hours into this whole thing I believe I have found the answer which leads back to the original error I keep receiving...uncaught exception java.lang.nullpointerexception. 
    The only thing that worked for me was rolling the blackberry back, restoring the apps and data, and then forcing the information from Outlook back onto my Storm.
    Verizon...don't force updates upon your customers!!!!!  Not all of us have the time to spend several hours to resolve these matters!

  • What is wrong? The "show my windows and tabs from last time" has not been working these past two or three days. It was fine before. Ive changed nothing except the last update from you. Thank you.

    What is wrong? The "show my windows and tabs from last time" has not been working these past two or three days. It was fine before. Ive changed nothing except the last update from you. Thank you.

    Make sure that you do not use "Clear Recent History" to clear the "Browsing History" when Firefox is closed because that prevails and prevents Firefox from opening tabs from the previous session.
    * https://support.mozilla.com/kb/Clear+Recent+History
    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Session_Restore
    * http://kb.mozillazine.org/sessionstore.js
    If you use cleanup software like CCleaner then make sure that Session is unchecked in the settings for the Firefox application.

  • How do I fix this error, Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Modal session requires modal window'?

         I have been trying to start up my Batman: Arkham City game recently and it says that it cannot open and gives me this error;
                   "Terminating app due to uncaught exception 'NSInternalInconsistancyException', reason: 'Model session requires model window'"
         I have played the game for about 13 hours before this error started to pop up and I was wondering if anyone knew of a way to fix it.  Any information would be greatly appreaciated.

    Yesterday I had the same problem.
    I installed the game and played for five hours with no problem but in the last execution my iMac show me that error. I tried to uninstall and install the game again but always show me the error. I did the same with the Steam client with no solution.
    Finally I fixed the error deleting a folder.
    Go to Macintosh HD/Users/[username]/Library/Caches/com.feralinteractive.bmac
    and delete the folder named "com.plausiblelabs.crashreporter.data"
    Try to launch the game again.
    Good luck.

  • Error Message when trying to open mail - Uncaught Exception - Help!

    Hello
    Yesterday when I received a notification that I had new emails I clicked on the envelope on the home screen only to find the error message: 'Uncaught exception: String index out of range: -1' I now can't access my mail at all. I have rebooted the phone and it is still coming up.
    I just wondered if anyone else had this error message before and the easiest way to resolve it?
    My phone is a Curve 9300 and running on v5.0.0.794 (Platform 6.3.0.23)
    Thanks
    Emma

    i have a bold 9780 and I got:  "Uncaught exception:java.lang.ArrayIndexOutOfBoundsException" now i can't open messages or text
    EmmaLou_0702 wrote:
    Hello
    Yesterday when I received a notification that I had new emails I clicked on the envelope on the home screen only to find the error message: 'Uncaught exception: String index out of range: -1' I now can't access my mail at all. I have rebooted the phone and it is still coming up.
    I just wondered if anyone else had this error message before and the easiest way to resolve it?
    My phone is a Curve 9300 and running on v5.0.0.794 (Platform 6.3.0.23)
    Thanks
    Emma

  • I just recently upgraded my itouch from 4.1 to ios5, and updated to itunes 10.5. when isynced my music files,ebooks and other apps, all is working except when im trying to sync my video files. it says, canot be synced as cannot be played on this ipod.help

    i just recently upgraded my itouch from 4.1 to ios 5, and updated to itunes 10.5. but when i synced my music files,ebooks and other apps, all is working except when im trying to sync my video files. it says, canot be synced as cannot be played on this ipod. but those are the same files that i have when i was using the old 4.1 version and its syncing just fine.. the itunes advanced tab "create iphone or ipod version" is not working either so i cant convert it to be xferred and synced. what can i do to have my video files synced?

    i had the same problem but i just got a new video converter and made it convert videos to ipod/iphone format and then put them into itunes. i would suggest GOM encoder as the encoder can convert them and then once they're finished converting, put them automatically into your itunes for you. from there you can just sync them to your ipod.

Maybe you are looking for