How to prevent keynote from freezing/crashing while exporting to quicktime?

Keynote freezes/crashes every time while exporting a file as a QuickTime file. Is this a bug or something with the size of the file? It's a 7.6MB file.
Should I re-install keynote? I have it on 2 machines and it does the same thing on both.

MayaFrank:
I have Keynote 6.1 and I have noticed it will allow me to export once.  If I want to export again, I must quit and restart Keynote.  Not sure why, but it seems to "fix" the problem.

Similar Messages

  • How to fix InDesign CS6 cloud crashes while exporting to pdf?

    Hi My InDesign CS6 cloud crashes when exporting to pdf.
    It's a Mac Book Pro, OS X 10.7.4. It shows a blank warning, and then there is a long report, here is part of it. Even all my old files can't be exported to pdf. Can any one help?
    Process:         Adobe InDesign CS6 [325]
    Path:            /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    Identifier:      com.adobe.InDesign
    Version:         8.0.0.370 (8000)
    Code Type:       X86 (Native)
    Parent Process:  launchd [119]
    Date/Time:       2013-04-23 18:08:27.430 +1000
    OS Version:      Mac OS X 10.7.4 (11E2620)
    Report Version:  9
    Interval Since Last Report:          572434 sec
    Crashes Since Last Report:           18
    Per-App Interval Since Last Report:  621470 sec
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      33716403-25A9-4DBD-B3F9-99FAE5855C5D
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000

    Indeed. To be more specific, typically program execution begins in a main() function, which calls some other function (say, to handle menu selections), which calls some other function (whatever menu function the user chose), which calls some other function, etc., etc., perhaps 30 or 40 functions deep.
    Because of the way C++ calling conventions work, the history of which function called which other function is preserved in a data structure known as the stack. (The stack also does other things). Under normal circumstances, this "stack trace" is reconstructed to form the crash report.
    There is one stack trace for each thread (parallel execution components of the program), but the thread that crashed is usually the only one of interest.
    In this case, thread 0 crashed. Its stack trace is meaningless. It contains two stack frames (e.g. functions). At the top, the most recent function is called _XHNDL_trapback_instruction, which is a pseudo address that basically tells us nothing, other than there was some sort of fault.
    But typically we will see what function called that top function; and the function that called that; etc., etc.
    In your case we do not. Allegedly the crashing code was called from the address 4294967295, or in hexadecimal 0xffffffff. And that is the largest number that a 32-bit word can hold. It is, sadly, garbage.
    So your stack trace tell us zilch

  • How to prevent Siri from identifying words while texting.

    I have been experiencing an annoying "habit" that Siri has been doing. When I use my keyboard Siri pronounces the words without me asking/ pressing anything. I have gone through my setting and looked on how to turn it off, but I have yet to find anything. If anyone has experienced the same thing and has solved it, please help!

    Go to Setting --> General ---> Accessibility
    Turn Off Speak Auto-text
    It was so annoying... I am glad I found that darn thing.

  • How to prevent B1 from populating the grid with components?

    Hello group,
    We have customized a form that pops up when user enters a parent item (of a template-type BOM) in the quotation grid.  The form displays the component items and lets the user mark which items to "paste" onto the quotation.  However, B1 automatically populates the grid with the component items once focus moves away from the item code column. 
    <b>How to prevent B1 from populating the grid with components <i>while</i> retaining the parent item in the item code column?</b>  I've tried trapping the Validate event, etc. with no success.

    Instead of setting the parent item up as a template type BOM, you could set up the list of parent/child items on a user table and use this user table to display the items in your pop-up screen.  As the parent item would no longer be a template BOM, Business One would no longer automatically popuplate the grid, and you could write your own code to add only the items selected in your pop-up screen into the grid.
    John.

  • How to prevent apps from syncing in the new version of itunes?

    Hey there.
    I brang my macbook to Applestore cause it had a problem and they downloaded the latest version of itunes. Everything's fine and my music, videos and apps are in the new itunes like before. But now, when I want to sync my iphone, a pop window asks me to give the password of the itunes account I used to download some of my apps or it will delete them and their data. The problem is that one of these accounts is an old friend's one and I actually lost all contact with him. So basically now I can't sync my iphone at all or it will delete all my apps.
    Has anyone any idea how to sort that out? Or at least knows how to prevent apps from syncing in this new version of itunes?
    Thanks for your help

    Onthe top menu
    View > Show Status Bar.
    The grey bar will now appear at the bottom with the info you want

  • How to prevent Oracle from using an index when joining two tables ...

    How to prevent Oracle from using an index when joining two tables to get an inline view which is used in an update statement?
    O.K. I think I have to explain what I mean:
    When joining two tables which have many entries sometimes it es better not to use an index on the column used as join criteria.
    I have two tables: table A and table B.
    Table A has 4.000.000 entries and table B has 700.000 entries.
    I have a join of both tables with a numeric column as join criteria.
    There is an index on this column in table A.
    So I instead of
      where (A.col = B.col)I want to use
      where (A.col+0 = B.col)in order to prevent Oracle from using the index.
    When I use the join in a select statement it works.
    But when I use the join as inline view in an update statement I get the error ORA-01779.
    When I remove the "+0" the update statement works. (The column col is unique in table B).
    Any ideas why this happens?
    Thank you very much in advance for any help.
    Regards Hartmut

    I think you should post an properly formatted explain plan output using DBMS_XPLAN.DISPLAY including the "Predicate Information" section below the plan to provide more details regarding your query resp. update statement. Please use the \[code\] and \[code\] tags to enhance readability of the output provided:
    In SQL*Plus:
    SET LINESIZE 130
    EXPLAIN PLAN FOR <your statement>;
    SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY);Usually if you're using the CBO (cost based optimizer) and have reasonable statistics gathered on the database objects used the optimizer should be able to determine if it is better to use the existing index or not.
    Things look different if you don't have statistics, you have outdated/wrong statistics or deliberately still use the RBO (rule based optimizer). In this case you would have to use other means to prevent the index usage, the most obvious would be the already mentioned NO_INDEX or FULL hint.
    But I strongly recommend to check in first place why the optimizer apparently seems to choose an inappropriate index access path.
    Regards,
    Randolf
    Oracle related stuff:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle:
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • How to prevent users from creating new folders in share folder directory?

    Hello guys
    I'd like to know How to prevent users from creating new folders in share folder directory but still keep their power of creating new folders in their personal 'my folder'?
    I tried changing the 'manage privilage ---- create folder' to deny certain user accounts, but by doing so, it also stops the user from creating new folders in their 'my folder', which is not good..
    I also tried going into these share folders and tried different access types such as 'change/delete', 'read', 'traverse folder' etc, but none of it work ideally. The 'change/delete' access still allows them to create new folders, 'read' access prevents creating new folders but also take away their power of saving reports..
    Any thoughts on how to take away their ability to ONLY create new folders in share folder areas without affecting their other privileges?
    Please advise
    Thank you

    Easy, on the shared folders root folder only give them 'read' or 'traverse folder' but on the the folder inside the shared folders root folder give them 'change/delete'. That means they can change anything inside those folders but not create any folders at the shared folders root level.

  • How to prevent iCloudDrive from waking computer from sleep?

    My PC wakes up periodically from sleep. After the checking the event logs, the logs show that iCloudDrive.exe process is causing the computer to wake up from sleep. I do not want to disable all system wake timers, but I do not know how to prevent iCloudDrive from waking up the computer. The expiration date keeps changing forward.
    in Command Prompt (admin):
    C:\windows\system32>powercfg -waketimers
    Timer set by [PROCESS] \Device\HarddiskVolume3\Program Files (x86)\Common Files\
    Apple\Internet Services\iCloudDrive.exe expires at 5:26:25 PM on 4/21/2015.
    In Event Viewer:
    Log Name:      System
    Source:        Microsoft-Windows-Power-Troubleshooter
    Date:          4/12/2015 3:21:56 PM
    Event ID:      1
    Task Category: None
    Level:         Information
    Keywords:     
    User:          LOCAL SERVICE
    Computer:      WIN-CBF43TVLMNC
    Description:
    The system has returned from a low power state.
    Sleep Time: 2015-04-12T18:24:08.280458300Z
    Wake Time: 2015-04-12T19:21:44.326107700Z
    Wake Source: Timer - iCloudDrive.exe
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Power-Troubleshooter" Guid="{CDC05E28-C449-49C6-B9D2-88CF761644DF}" />
        <EventID>1</EventID>
        <Version>2</Version>
        <Level>4</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2015-04-12T19:21:56.645016400Z" />
        <EventRecordID>2838</EventRecordID>
        <Correlation ActivityID="{0D44318C-F225-4D0E-AE0B-76736663674D}" />
        <Execution ProcessID="1888" ThreadID="848" />
        <Channel>System</Channel>
        <Computer>WIN-CBF43TVLMNC</Computer>
        <Security UserID="S-1-5-19" />
      </System>
      <EventData>
        <Data Name="SleepTime">2015-04-12T18:24:08.280458300Z</Data>
        <Data Name="WakeTime">2015-04-12T19:21:44.326107700Z</Data>
        <Data Name="SleepDuration">100</Data>
        <Data Name="WakeDuration">826</Data>
        <Data Name="DriverInitDuration">601</Data>
        <Data Name="BiosInitDuration">909</Data>
        <Data Name="HiberWriteDuration">0</Data>
        <Data Name="HiberReadDuration">0</Data>
        <Data Name="HiberPagesWritten">0</Data>
        <Data Name="Attributes">25612</Data>
        <Data Name="TargetState">4</Data>
        <Data Name="EffectiveState">4</Data>
        <Data Name="WakeSourceType">5</Data>
        <Data Name="WakeSourceTextLength">15</Data>
        <Data Name="WakeSourceText">iCloudDrive.exe</Data>
        <Data Name="WakeTimerOwnerLength">96</Data>
        <Data Name="WakeTimerContextLength">0</Data>
        <Data Name="NoMultiStageResumeReason">0</Data>
        <Data Name="WakeTimerOwner">\Device\HarddiskVolume3\Program Files (x86)\Common Files\Apple\Internet Services\iCloudDrive.exe</Data>
        <Data Name="WakeTimerContext">
        </Data>
      </EventData>
    </Event>

    In the Bluetooth System Preferences click the Advanced button, then uncheck the Allow Bluetooth Devices To Wake This Computer checkbox.

  • Gmail makes a lot of drafts when I am writing an email. How to prevent that from happening?

    When I wite email I have all the time drafts copied. How to prevent his from happening?

    writing Email produced in multiples in all mail
    Multi Copies of Drafts To Gmail Server

  • How 2 prevent time from changing on leopard and vista?

    if i maintain successive boots into the same OS on my macbook, the time is shown correctly, whereas on booting into another OS changes the time. how to prevent this from happening?
    Neerav

    From what my brother says says about his set-up (he boots into 64 bit Vista periodically), apparently you can't. My understanding is that the two systems do a different version of time at boot, Vista uses a GMT setting in bios, and I think Mac use a local time in EFI. Anyway, the result is several hours difference between the two. I don't use Boot Camp, but I would think if you are on a network with Internet access, you should be able to have the clock reset automatically using System Prefs->Date and Time, and check the box at the top to automatically set the time from the Apple time server.
    Francine
    Francine
    Schwieder

  • Indesign getting crash while exporting because of bad pdf inside file.

    Hi,
    My indesing is getting crash while exporting to pdf. I have link to pdf file inside the indesign file, when i export that indesign file to pdf indesign is getting crash without showing any error message. If i place another pdf file in same location then it is going fine and i can able to get the output pdf file. Please suggest me how can i check and correct that pdf file and is there any solution to this. Please help me i have thousands of indesign pages with the same issue. If you want pdf i can send it to your mail id. please i need fix for this problem.
    Thanks
    Kiran

    For all of you lurkers, Kiran sent me a copy of the PDF, and it looks like I found the problem (and learned a new technique which may help others in the same boat).
    I tried re-frying the file by creating an eps and distilling, but the result was the same, then I tried exporting from CS3, just for fun, and it worked, but I realized the PDF had been cropped, so I started trying differnt sections and isolated an area that failed, though that wasn't particularly helpful.
    Acrobat preflight didn't find anything that looked odd or problematic, and then I decided to run Examine Document. It came up with MetaData (no surprise) and also two items under a heading of Deleted and Cropped objects, with no preview or description. I unselected the MetaData from the list of found stuff, them clicked the Remove button in the Examine Document panel, and resaved (and while you have the opportunity to give it a new name, doing so doesn't remove the stuff untill you do the whole procedure again and save with the same name). Placed the new version of the PDF in a new file and exported no problem.

  • IMovie 11 crashes when exporting to Quicktime

    iMovie 11 crashes when exporting to Quicktime.  Some people have posted that this problem disappeared when they upgraded from Lion to Mountain Lion.  However, I am running Mt.Lion and it still happens.  If there is no fix for this bug, does anyone know a workaround that will produce the same ultimate result..namely, a Quicktime movie that is not too large to attach to emails.  Apple, please fix this.  Thank you.

    Update after two Apple iApps specialists spent 1.5 hours on the phone with me:  There are 3 "poison pills" (that we know of) that will cause the crash if any of the three is part of the movie:  Picture-in-picture, side-by-side, or a circle open/close transition. Otherwise, no crash.  The specialist made a movie on his own computer, containing the poison pills, but he exported to Quicktime without a crash.  There is at least one report in the threads of a problem like mine.  Thus, some Gremlin is causing this, in some computers.  The iApps specialist was curioius to know whether a lot of people have this problem, or only a few.  (If a lot, then it is worth submitting to the engineers to fix.)  He said if you have this problem, call Apple.  I asked if such people should post a "Me too!" on this thread.  He said no, better to call Apple and report it.  So that's the story.  I can live without those poison pills in my export-to-quicktime movies. I am just a consumer, not a pro, and I can live with it.  But it would be nice if Apple could fix this.

  • Final Cut Express FCE Crashes when exporting to Quicktime or Quicktime conv

    Final Cut Express FCE Crashes when exporting to Quicktime or Quicktime conversion!
    This started completely out of the blue last night. The export gets about 30-50% done and FCE disappears from the screen and the "FCE quit unexpectedly" message pops up. This has never happened before and I was doing exports of this very project all week. All other projects won't expect, the current project won't export when brought into a new file, I tried reinstalling FCE, and I deleted the pref files spoken about in the forum.
    Any Ideas!!!????

    Try repairing permissions and re-boot.
    Al

  • How to prevent Keynote Media from compressing

    How do I prevent Keynote media from compressing. I add videos to the media section of Keynote via iPhoto and when I select it to use in my presentation, it sits there and compresses for 5-10 minutes. The problem I'm having is that I create the video versions as AppleTV versions, so I don't understand why they need to compress. I have Compressor, Quicktime 10.0 and QuicktimePro 7. What do I need to do and with what program to prevent this compressing to save time? Thanks. -Will

    MayaFrank:
    I have Keynote 6.1 and I have noticed it will allow me to export once.  If I want to export again, I must quit and restart Keynote.  Not sure why, but it seems to "fix" the problem.

  • How to prevent user from selecting a specific printer?

    Hi there
    I have a MailFolder which has an ArrayList of Email objects inside it. Each MailFolder has an attribute called folderFile which is a reference to a folder in the operating system. Each Email has an attribute called parentFile which is a reference to a file in the operating system.
    Now, I am trying to put printing into my application.
    When I print using a normal printer like my HP Deskjet or the likes - an actual physical printer - everything works fine. But when I print using the Microsoft Office Document Image Writer, things go wierd. The following things happen;
    I call myMailFolder.getFolderFile().exists() and this = false. But if I (in the debugger) make a new file pointing to the same path, .exists() = true. Also if I look in the OS, the file exists. So somehow in the job.print() this Document Image writer seems to be messing up this file reference. The same thing happens to the myEmail.getParentFile().
    So to fix this, can anyone tell me how to prevent the user from selecting this printer, or can anyone tell me why this is happening only with the Document Image Writer?
    Many thanks!
    Rachel

    I have similar problem with our printing program. I am printing Java Tables, zoom in every column in a landscape page accross multiple pages.
    There are two fatal problems:
    1. On Dell Latitude laptop, the HP5100 printer didn't work; I have to change the code to draw the table header with 2D graphics.
    2. Crash when printing on MS document image writer, but on some computers
    it works perfectly.
    Any one have a good solution/same result for topic 2?
    Thanks,

Maybe you are looking for

  • Why can't I enter single user mode on my Mac Mini for an admin password reset?

    Hi, I recently created a new user account for my mac and deleted the old one, not realising that this was the only account with admin priveleges. As such, I no longer have access to administrator priveleges, and cannot grant them to my new user accou

  • How to use the url in the work item

    hi ,guys ,    I have question in design the workflow, my scenario is as follows : I develop the workflow in the sap gui ,then integrate it into the portal using uwl . now i want add a link in the work item ,before approver excute the work item ,the a

  • Oracle Spool Fixed Width

    Hi All, I'm trying to spool records from my Oracle table into a fixed width text file. As you'll see below, I'm using the RPAD function to set the maximum width for my columns but for some reason the spool doesn't recognize the RPAD function and just

  • Cant submit job in 10g.

    When I try to submit an import job, I get the message: Import Submit Failed Errors: ORA-31626: job does not exist ORA-31637: cannot create job IMPORT000021 for user SYSTEM ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95 ORA-06512: at "SYS.KUPV$FT_INT", l

  • I cant add a movie to my itunes-movie libary.

    I am trying to take a dvd that i bought and trying to add it to my libary but i cant. so i transfered it to my hardrive and still cant put it in my libary. My cursor says that it is allowing it to add it, but nothing is showing up?!?!?   Windows XP