Saving Files With Imported Slides

Whenever I import slides from one captivate project into
another, I am unable to save the new file with the imported slides.
The progress bar labeled "saving progress" immediately moves to the
right, indicating that the file is saving. However, it never
finishes the save. Instead my title bar reflects "Not Responding"
after the title. When I close the file manually or choose "End
Task", nothing has been saved. I used to be able to do this fairly
well in the prior version of Captivate, but it's not working so
well with version 2. Any ideas?

The file is probably too large for your computer's resources
to complete the "save" action. There can be a hundred reasons for
this, most of which are just common sense, but the bottom line is,
check out file size as the likely culprit.
Thanks.

Similar Messages

  • Problems with import slides powerpoint

    Hello,
    I have a problem with import slides from the powerpoint, when
    I try to import, the computer blow.
    What I can do?

    there have been lots of issues regarding this, however, I
    have found that if I export my ppt as individual jpeg slides I can
    then use the "insert > Slide > Image Slide" command to bring
    in my ppt slides, I have tried everything else as well but what was
    happening to me was Captivate 3 was losing all of my text and text
    animation. Now my animation is not critical, however, the text is
    very important of course. So now I have stagnat slides, a bit
    boring but at least I was able to finish my project.
    Hope this helps.
    Tony :)

  • Import two file with Import manager

    Hello expert MDM,
    I needs  to import  two Source file from different systems (Navision and ERP 2005). I  am not using XI. but i have extract the both source manually and i have two XML-file with duplicate. I would like to import the both file with Import manager. I have import one file successfully. But I can not import the second file because the Button  "Get the second Source" is faded out. Could you give me Input how can I solve this problem?
    Thanks in advance

    Hi badang,
       To Import Second file please follow these steps:
       In Import Manager after you import your first file then go to <b>File --> Connect to Source</b>  in import manager, a new window comes then specify your second file name and perform Import normally.
    Regarding the Get the second source i found this documentation from reference guide:
    The Port drop-down list includes an entry for each inbound port you define in the MDM Console for the selected Remote System; those that do not have files waiting or are locked by another user are disabled in the drop-down list. When you select a port, the
    MDM Import Manager automatically selects the first source data file that is waiting to be processed; you can then use the Get Next Source File command to select each succeeding file.
    Thanks and Regards,
    <b>Sagar Sonje
    Mark Helpful Answers</b>

  • Crash on saving file with fix but what was the cause?

    I recently encountered a problem that cost me several hours. I'm posting my story in case someone else encounters it and also in the hope that someone might have an insight into the cause.
    For no apparent reason, Frame began crashing on attempting to save a particular chapter file in a book. The file has several anchored frames (floating, anchored at top of column) and a cross reference to each. All of the anchored frames, their contents, and cross references had been in the file for many months with no problem.
    Various experiments isolated the problem to one of the anchored frames. Deleting the frame stopped the crashes but wasn't much of a fix because I needed the frame. Eventually I found that moving the anchor/link for the frame to a different paragraph eliminated the crashes.
    I'm using Frame 7.2p158 on Windows XP SP3. For what it's worth, exporting to MIF and back to Frame didn't help, nor did deleting and recreating the anchored frame in the same location.
    Jan Axelson

    Great sleuthing to narrow it down to a specific anchored frame! A few questions:
    What kind of content was in the anchored frames? was it for example a graphic copied into the frame, were there OLE (linked) objects, or was it a referenced graphic file, or ?? What setting do you have for File > Preferences "Save FrameImage with Imported Graphics"?
    Also, how much RAM do you have on your system? Do you often have other apps open when you work in FM, e.g. MS Office apps, or Photoshop or whatever?
    Years ago I recall having a problem with anchored frames seeming to cause crashes, it was as if FM was reaching some internal limit and at some point it just went "kablooie". I'm pretty certain that getting more RAM was the definitive solution in my case.

  • Wsdl file with import

    Hi Experts,
    I have received a WSDL file from third party system which PI should invoke.
    The WSDL file is inturn using other WSDL file using import namespace and schema location. The message elements types are defined in the sub WSDL file.
    Please let me know if we can handle this scenario in PI. If yes do I have to import both WSDL's in external definition and how can I get the target structure?
    Thanks
    Suma

    Can you refer below links
    How to refer multiple xsd's in a single xsd and finally import it in XI.
    XSD with multiple import/includes

  • Saving File with new file name

    I am subclassing JFileChooser and implementing ActionListener for being able to save and open files.
    I am using different file extensions (.ac and .ps), and when saving, I first check that the file name has the right extension.
    If it doesn't, I add the right extension.
    But for some reason it doesn't show my saved new file, even though in the debugger it goes through all the code of saving.
    Here is the main portion of my code before the code of saving (adaptee is my JFileChooser):
    File ananyaFile = adaptee.getSelectedFile();
    String name = ananyaFile.getName();
    int l = name.length();
    if (!(l >= 4 && name.charAt(l - 3) == '.' &&
    ((adaptee.getFileFilter() == adaptee.acExtensionFilter &&
    name.charAt(l - 2) == 'a' && name.charAt(l - 1) == 'c') ||
    (adaptee.getFileFilter() == adaptee.psExtensionFilter &&
    name.charAt(l - 2) == 'p' && name.charAt(l - 1) == 's'))))
    if (adaptee.getFileFilter() == adaptee.acExtensionFilter)
    name = name + ".ac";
    ananyaFile = new File(name);
    adaptee.setSelectedFile(ananyaFile);
    else if (adaptee.getFileFilter() == adaptee.psExtensionFilter)
    name = name + ".ps";
    ananyaFile = new File(name);
    adaptee.setSelectedFile(ananyaFile);
    Why does it not show my saved new file? Do I have to set it somewhere else?
    Thanks for your time!

    Ok, I put the code which adds the extension
    File ananyaFile = this.getSelectedFile();
    if (ananyaFile == null)
       return;
    String name = ananyaFile.getName();
    int l = name.length();
    if (!(l >= 4 && name.charAt(l - 3) == '.'  &&
       name.charAt(l - 2) == 'a' && name.charAt(l - 1) == 'c')  
       name = name + ".ac";
       ananyaFile = new File(name);
       this.setSelectedFile(ananyaFile);
    }into the approveSelection method of my subclass of JFileChooser.
    If someone wants to open a file without writing the extension and the file with the extension (which was added in my code) exists, it does get opened.
    Also, if someone wants to save a file without writing the extension and the file with the extension (which was added in my code) exists, it does ask if you want to replace the file (as I have programmed).
    But if you say yes, or if you want to save a file without the extension that doesn't yet exists (with the extension), it doesn't save it.
    However, saving works fine if someone writes the full file name into the File name box.
    Well, I would like to allow the user not to write the extension not only for opening a file, but also for saving a file.
    Please help! I am getting pretty desperate! Thanks!

  • Error saving file with Acrobat 8

    Saving a file (command save as in Acrobat 8) returns an empty file. Where is the problem? Thanks

    Región format: Colombia
    Enviado desde mi iPad
    El 4/02/2014, a las 2:44, "Anki(AG)" <[email protected]> escribió:
    Re: Error saving file to Acrobat.com in ipad
    created by Anki(AG) in Adobe Reader for iOS - View the full discussion
    Hi,
    Could you please let us know the "Region Format" of your device?
    Thanks,
    Ankit
    Adobe Reader Mobile Team
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6083557#6083557
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6083557#6083557
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6083557#6083557. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Reader for iOS at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • .swf files with imported video are just white slides with no audio.

    Hello there,
    I had been using Adobe Presenter 7 until recently and I have now upgraded to Presenter 10 for use within Powerpoint 2013. Unfortunately I am having quite a few issues with it.
    I am using it to make presentations built up of imported video files, as I had been doing before with Presenter 7 without any issue. I typically have a presentation of 6 parts and import each video file ~80MB Mp4 into a single slide then name each slide adding a presenter and output it to an 'swf' file. This worked fine in Presenter 7.0.7. Now my issue is that the output will load the player it will have the correct presenter, and timings on the chaptered sidebar but when it plays the presentation area of the screen is just white, there's no audio, no video just the correct time for each section. I've checked the output folder the individual video files will play within windows media player without issue.
    It should be noted that the html5 only version works fine, until uploaded to a web server and then it will not load any of the player with IE11 (I can't test it in other browsers).
    I would appreciate some help with this if anyone has any ideas to fix this.
    Many thanks

    Well make sure you have read and write permissions on the file. Do a get info in the video (command-I) and alter it as necessary.
    Daniel C. Slagle
    Keeper of the "Unofficial" iMovie FAQ  
    http://iMovie.danslagle.com

  • Saving file with max compatibility in Photoshop is not recognized by Muse when I try to import

    I had "save with maximum compatibility" set to "always" in the Photoshop preferences and Muse would not recognize this and not import the PSD file.  So I set "save with maximum compatibility" to "ask" and did a "save as" in order to force Photoshop to save it with "max compatibility."  I verified that the "max compatibility" box was checked.  Tried to import, or Place, the PSD file in Muse:  no go.  What's wrong here?

    Thanks, Jeff, for continuing to follow up on this.  I did indeed use the PSD as 8-bit RGB (which came from a website template I bought some years ago).  My workaround has been to make a PNG version of the PSD.  Muse accepts the PNG file.  But I'd really like to know why the PSD fails to import.  It's a mystery right now.  I downloaded a sample Muse project last week that was part of a video tutorial.  Importing the PSDs from that sample project was no problem.
    Richard Fomo
    [ spammy sig with private info removed by admin ]

  • Trying to import file with Import appliance for file Oracle_Developer_Day

    Failed to import appliance C:\Documents and Settings\xxxxxx\My Documents\oracle day 6-2012\Oracle_Developer_Day.ova.
    Could not open the medium storage unit 'C:\Documents and Settings\psyers\My Documents\oracle day 6-2012\Oracle Developer Days-disk2.vmdk'.
    VD: error VERR_TAR_END_OF_FILE opening image file 'C:\Documents and Settings\psyers\My Documents\oracle day 6-2012\Oracle Developer Days-disk2.vmdk' (VERR_TAR_END_OF_FILE).
    Result Code: VBOX_E_FILE_ERROR (0x80BB0004)
    Component: Appliance
    Interface: IAppliance {3059cf9e-25c7-4f0b-9fa5-3c42e441670b}

    I found that the latest version was probably renamed.
    If you do a tar tvf Oracle_Developer_Day.ova it shows you that the files inside are actually named differently:
    ~/Documents/Virtual Machines$ tar tvf Oracle_Developer_Day.ova
    -rw------- 0 someone someone 101727 Jun 20 00:58 Oracle DB Developer Day.ovf
    -rw------- 0 someone someone 1064100864 Jun 20 01:09 Oracle DB Developer Day-disk1.vmdk
    -rw------- 0 someone someone 3288371712 Jun 20 01:21 Oracle DB Developer Day-disk2.vmdk
    Rename the file to Oracle DB Developer Day.ova and you should be fine.
    (at least it then worked for me)

  • Problem saving files with different name with DFS installed

    I have a server that I have DFS installed and running on. This appears to work fine. There is one problem that I have encountered though:
    On a share I have a folder that is not inheriting rights from it parent object. This works fine with DFS. When I create a new word document and try to save it in this folder with a different name other than the default (doc1.doc) I get an error saying that the user doesn't have permission, but I can save it as the default name of doc1.doc. I can then re-name the file to what I want from windows explorer, open it up in word, work on it and save it again. Even with the new file name I can't do a save-as and save it as a different file.
    All the other folders under the share that inherit rights from the parent folder work.
    eg save-as in \\server\share\folder or below works
    save-as it in \\server\share\no_inheritance or below does not work
    Anyone have any ideas?

    Originally Posted by ndean
    I have a server that I have DFS installed and running on. This appears to work fine. There is one problem that I have encountered though:
    On a share I have a folder that is not inheriting rights from it parent object. This works fine with DFS. When I create a new word document and try to save it in this folder with a different name other than the default (doc1.doc) I get an error saying that the user doesn't have permission, but I can save it as the default name of doc1.doc. I can then re-name the file to what I want from windows explorer, open it up in word, work on it and save it again. Even with the new file name I can't do a save-as and save it as a different file.
    All the other folders under the share that inherit rights from the parent folder work.
    eg save-as in \\server\share\folder or below works
    save-as it in \\server\share\no_inheritance or below does not work
    Anyone have any ideas?
    I have the same problem... how did you solve it?
    Thanks!
    Andres, Blogger

  • Unable to import pptx files into key note. Does using PNG file prevent importing slides?

    Unable to import powerpoint files from mail to keynote. Picture files are PNG files. Does keynote not support PNG Files?

    Hi,
    swf files are not supported in Responsive project. swf files should work properly in a non-responsive project.
    Regards,
    Haridoss

  • Where can I READ how to combine an audio file with a slide show

    I need to make a dias show running with some speech/audio file beneath - so that I get an avi file or whatever to present on the internet.
    But no matter where I turn, I find video after video - and I am not so stupid, that I cannot read a text.
    So can someone tell me where I can find a TEXT manual, describing how I do that?
    Thanks a lot.
    Niels

    Hi,
    Are you in Premiere Elements Editor? I'm seeing in PSE Organizer and can't see that "Drop files here" text anywhere.
    This is how Slideshow dialog looks in PSE11 Organizer. You can rearrange the images by clicking on "Quick reorder"button or by dragging thumbnails on the thumbnail strip you see at the bottom.
    Let me know if you are facing any issues with this dialog
    Thanks
    Andaleeb

  • Cp4 - not saving after importing slides

    I imported sldes from another Captivate 4 project only to discover that all changes I made after the import weren't saved. I selected Save but the asterisk in the project title window didn't appear. I tried quitting Captivate to force a save. The dialogue asking me to save appeared - I clicked Save and Captivate just sat there. I had to use Task Manager to quit the application and, when I reopened my file, the imported slides and the changes I made after importing were gone.
    So importing slides is one more feature that doesn't appear to work.
    I'm at the end of my first week working with Captivate 4 and I'm not impressed. The new features look promising but were they bought at the expense of older features that no longer work?
    Grace

    I imported sldes from another Captivate 4 project only to discover that all changes I made after the import weren't saved. I selected Save but the asterisk in the project title window didn't appear. I tried quitting Captivate to force a save. The dialogue asking me to save appeared - I clicked Save and Captivate just sat there. I had to use Task Manager to quit the application and, when I reopened my file, the imported slides and the changes I made after importing were gone.
    So importing slides is one more feature that doesn't appear to work.
    I'm at the end of my first week working with Captivate 4 and I'm not impressed. The new features look promising but were they bought at the expense of older features that no longer work?
    Grace

  • Open a saved video file with imovie

    Can I open a video saved file with imovie?

    And how do you know that it is a PDF file if its extension is not .pdf? And there is a special subforum for the Android version of Reader:
    http://forums.adobe.com/community/adobe_reader_forums/android?view=discussions

Maybe you are looking for

  • Appleworks bounces once and doesn't open

    I can't seem to get Appleworks to open- if I click on the icon or go to applications and click it there, it bounces once and then stops. It does not open. Any thoughts? It seems to be a different problem than recent "won't open" subjects. I have not

  • Flash Crashing Browsers on Macbook Air

    A couple of days ago my bowsers started crashing with the message that a Flash Plugin has cuased an error. It happens on both Safari and FireFox. I have tried the Flash uninstaller. but when I reinstall the same thing happens. I have tried uninstalli

  • How to make Field mandtory in purchase order?

    Dear GURUS, I want to make Tracking no field mandatory in purchase order for particular Purchase Group? Also po not allow more than 2 quantity for above case? pls guide me how can configure this? Regrds pravin.

  • Selection screen problem in BI7

    Hi,   We upgraded to BI7-SP17, but the front end we would like to use BW3.5 tool. After the upgradation, we could see a change in the selection scree. I mean it looks in white background which is different from what we had previously (blue background

  • Full bleed

    would anyone mind helping me figure out how to print an 8 x 11 document as "full bleed"? i have some documents that have colorful backgrounds and i only seem to be able to print to 8 x 11 with some amount of vertical white space on either side and pe