Help please with Power Point Annimated slides

Power Point slides that have annimation (text flying or
scrolling in etc.) which was produced in Power Point need to
perform that way in Captivate. How is this accomplished in
Captivate? If these slides are imported into Captivate, the
annimation added in Power Point is lost. There must be a way to
retain the "slide show" appearance in Captivate. Please help as
there is none in the help files concerning this.
Thanks in advance!
Jerry

Sorry, when I suggested TPK meant Articulate Presenter, I
didn't realize
Adobe had changed the name of their Breeze product to Adobe
Presenter.
"Macromedia" <[email protected]> wrote in message
news:et44tt$dc2$[email protected]..
>I don't think you meant Adobe Presenter - but rather
Articulate Presenter.
>
> regards,
>
> Kevin Collins
> "TPK" <[email protected]> wrote in
message
> news:et3p72$s3v$[email protected]..
>> Hi x34,
>>
>> I think you may need a different product if you want
to import PowerPoint
>> slides with animation. As I understand it, Captivate
does not import
>> PowerPoint
>> presentations with their associated animations. What
Captivate does do is
>> import the "flat" slides from a PowerPoint
presentation. The developer
>> can then
>> add interactivity and some effects using the tools
Captivate provides.
>>
>> Adobe has another product called "Adobe Presenter".
This product will
>> import
>> PowerPoint slides with their associated animations.
Additionally,
>> Presenter can
>> enable tracking for the slides and can also be used
to create LMS
>> friendly
>> quizzes.
>>
>> I hope this helps.
>>
>> TPK
>>
>
>

Similar Messages

  • Captivate 7 - edit with Power Point not working

    I am working with Power point slides in my captivate 7 project. When I try to edit the slide using power point I can delete words off the slide, but I can't add any words or letters. It is like my keyboard won't work. Any reasons why?

    Hi there,
    Greetings from Adobe.
    Which Operating System do you have?
    Make sure that Captivate 7 is updated to 7.0.1.237 (Help> About Adobe Captivate),  is Captivate 7 32 bit or 64 bit?
    Also tell the version of Power Point?
    Create a blank new pptx in Power Point and create a new project in Captivate from that new presentation and edit it's slide in Power Point, just to test whether that issue reoccurs on another project.
    Regards,
    Ajit

  • Help please with FaceTime. The built in app seems to have disappeared from my iPad2. Bought it in Australia

    Help please with FaceTime. My built in app seems to have disappeared.

    If K Penguin's suggestion doesnt work, you will have to go to you iTunes and do a reset, that is if you do not have it in your back up library.

  • Little help please with forwarding traffic to proxy server!

    hi all, little help please with this error message
    i got this when i ran my code and requested only the home page of the google at my client side !!
    GET / HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
    Accept-Language: en-us
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727)
    Host: www.google.com
    Connection: Keep-Alive
    Cookie: PREF=ID=a21457942a93fc67:TB=2:TM=1212883502:LM=1213187620:GM=1:S=H1BYeDQt9622ONKF
    HTTP/1.0 200 OK
    Cache-Control: private, max-age=0
    Date: Fri, 20 Jun 2008 22:43:15 GMT
    Expires: -1
    Content-Type: text/html; charset=UTF-8
    Content-Encoding: gzip
    Server: gws
    Content-Length: 2649
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: MISS from linux-e6p8:3128
    Via: 1.0
    Connection: keep-alive
    GET /8SE/11?MI=32d919696b43409cb90ec369fe7aab75&LV=3.1.0.146&AG=T14050&IS=0000&TE=1&TV=tmen-us%7Cts20080620224324%7Crf0%7Csq38%7Cwi133526%7Ceuhttp%3A%2F%2Fwww.google.com%2F HTTP/1.1
    User-Agent: MSN_SL/3.1 Microsoft-Windows/5.1
    Host: g.ceipmsn.com
    HTTP/1.0 403 Forbidden
    Server: squid/2.6.STABLE5
    Date: Sat, 21 Jun 2008 01:46:26 GMT
    Content-Type: text/html
    Content-Length: 1066
    Expires: Sat, 21 Jun 2008 01:46:26 GMT
    X-Squid-Error: ERR_ACCESS_DENIED 0
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: NONE from linux-e6p8:3128
    Via: 1.0
    Connection: close
    java.net.SocketException: Broken pipe // this is the error message
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:115)
    at java.io.DataOutputStream.writeBytes(DataOutputStream.java:259)
    at SimpleHttpHandler.run(Test77.java:61)
    at java.lang.Thread.run(Thread.java:595)
    at Test77.main(Test77.java:13)

    please could just tell me what is wrong with my code ! this is the last idea in my G.p and am havin difficulties with that cuz this is the first time dealin with java :( the purpose of my code to forward the http traffic from client to Squid server ( proxy server ) then forward the response from squid server to the clients !
    thanx a lot,
    this is my code :
    import java.io.*;
    import java.net.*;
    public class Test7 {
    public static void main(String[] args) {
    try {
    ServerSocket serverSocket = new ServerSocket(1416);
    while(true){
    System.out.println("Waiting for request");
    Socket socket = serverSocket.accept();
    new Thread(new SimpleHttpHandler(socket)).run();
    socket.close();
    catch (Exception e) {
    e.printStackTrace();
    class SimpleHttpHandler implements Runnable{
    private final static String CLRF = "\r\n";
    private Socket client;
    private DataOutputStream writer;
    private DataOutputStream writer2;
    private BufferedReader reader;
    private BufferedReader reader2;
    public SimpleHttpHandler(Socket client){
    this.client = client;
    public void run(){
    try{
    this.reader = new BufferedReader(
    new InputStreamReader(
    this.client.getInputStream()
    InetAddress ipp=InetAddress.getByName("192.168.6.29"); \\ my squid server
    System.out.println(ipp);
    StringBuffer buffer = new StringBuffer();
    Socket ss=new Socket(ipp,3128);
    this.writer= new DataOutputStream(ss.getOutputStream());
    writer.writeBytes(this.read());
    this.reader2 = new BufferedReader(
    new InputStreamReader(
    ss.getInputStream()
    this.writer2= new DataOutputStream(this.client.getOutputStream());
    writer2.writeBytes(this.read2());
    this.writer2.close();
    this.writer.close();
    this.reader.close();
    this.reader2.close();
    this.client.close();
    catch(Exception e){
    e.printStackTrace();
    private String read() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    private String read2() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader2.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    Edited by: Tareq85 on Jun 20, 2008 5:22 PM

  • Can anyone help please with my Time Machine, I have been getting the following message The backup disk image "/Volumes/Mac Backup/Stephen Smith's iMac.sparsebundle" is already in use.

    Can anyone help please with my Time Machine, I have been getting the following message The backup disk image “/Volumes/Mac Backup/Stephen Smith’s iMac.sparsebundle” is already in use.

    See > http://pondini.org/TM/C12.html

  • Help please with 2006 Macbook 13inch, for tv hook up.

    Help please with 2006 Macbook 13inch, to hook up to tv for streaming. The display works through VGA but the audio isn't working. Got a plug that goes into headphone jack on computer and connects into the audio jack on the back of tv but no sound. I'm not quite sure what the issue is, whether its the wrong plug, the tv, or the computer. Best Buy says this is the right plug and it seems that it would be, but who knows. If anyone has any experience in this, I would appreciate the help!

    Make sure those audio plugs are matched with the VGA plug. With your MacBook running something with audio switch between your sources on the TV Component, Composite and such. See if the sound is coming from another source. If so then you've got your audio plugs in the wrong jacks.
    Also could you post the make and model number of your TV.

  • Help Please with Driver

    I need to install the ADB Interface for the X2 onto my computer. Does any one know how or where I can get this driver?

    <Duplicate post.  Please see Help Please with Driver  for any replies.  This post will be closed.>

  • Is there a way that when using airplay with power point the ATV does not sleep/screen saver frequently

    s there a way that when using airplay with power point the ATV does not sleep/screen saver frequently???

    I have done this for several Titles, using Photoshop and a Layer Mask, that gets "erased," revealing the letters. My Titles were of "handwriting with chalk" on a blackboard, so I could keep the edge of that Layer Mask, looking more like the "chalk." Photoshop also makes it easy to output Layer Comps for each "step" in the handwriting process. IIRC, I did about 5 Frames per Layer Comp on Import, but do not recall if I used an extremely short Cross-Dissolve Transition between those - I intened to do so, but just do not remember if I liked that, or went with just the Still Images? Will try to find that animation, and maybe create a full tutorial of the process. In my case, I also added an SFX of chalk on a chalkboard.
    If you have Photoshop, it's really quite easy to pull off.
    Now, I do not know if Photoshop Elements has Layer Masks yet, which make it so very easy to accomplish. One could do it backward, where the Text Layer gets Erased, and then one would have their full Image as the last in the sequence, and then the next would have a little bit of the Text removed, then a bit more, then a bit more - going backward, until the "writing surface" is clean. One could also do this with a Transparent Background, so that one saw the Video below, and no actual "writing surface" visible.
    Good luck,
    Hunt

  • Need help with power point program

    I need an app that will allow me to use a power point presentation that links between several .ppt files.

    Keynotes does not allow a presentation to link to another presentation(unless I missed some think)
    Just got quickoffice and having the same issue

  • Need Help Please with Flash Professional - No Cursor Change on Buttons/Links in Mac OS

    Hi Folks, I am relatively new to Flash Professional but I recently built a very nice flash website with very little problems.  I noticed after I uploaded my site to my server, that my mouse cursor did not change from an arrow to a finger on any of my buttons.  It did change on the hyperlinks, but not on the buttons.  Everything still worked fine but there was no indication to the user that an object was in fact an interactive button.  I found this code:  button1.buttonMode = true; button1.useHandCursor = true; and inserted it for all my buttons and that seemed to fix everything, I tested the site on firefox, ie, and safari.  I am using a PC with windows 7.  When I went to check the website on a Mac powerbook, the cursor did not change on any of the buttons and it does not change on any of my hyperlinks either.  I have searched all over trying to find a solution and have had no luck.  Can anyone please help me with this problem or point me in the right direction?  Any advice would be very much appreciated.  Thanks so much!!!

    Thank you so much for replying!  I did in fact let flash professional create the HTML page for the site and have not altered it at all.  Would you have any other suggestions as to why it's not displaying my links/buttons on a Mac?  I checked out the browsers Firefox, ie, and safari on my pc, but looking thru safari on the Mac, the cursor does not change on any of my links or buttons.  Thanks again so much for the reply, nice to hear from a human instead of reading thousands of posts!  Very much appreciated!!!!!

  • How to view Power Point pps slide shows?

    I can download a pps slide show and using QuickOffice I can open it but all I get is the images. The slide does not "play" and there is no sound.
    How can I play (present) a Power Point slide show on the TouchPad?
    Thanks,
    Nathan
    Post relates to: HP TouchPad (WiFi)

    Hi,
    i have never tried it but in
    this link you can see the it should be possible with the
    powerpoint viewer.
    Regards,
    Markus

  • Power Point Crashes Slide Show Every Time, Grrr...

    I never use Power Point 2008.
    Today I opened it, clicked on "Slide Show" and it locked up my 8-core Mac Pro and required a hard power-button reboot.
    I did this three times in a row.
    Google hit this known problem with its OpenGL since 10.4 and PowerPoint 2004.
    All updates ran.
    Grr...

    How many graphics cards do you have, how many monitors?
    Mine loads some kind of big gray window on my left monitor and crashes every time (requiring a power-button reboot) — I run two OEM matching ATI Radeon HD 2600 XT cards, a 30" ACD, a 24" NEC, and a Sony 17" LDC.
    Also, Toast 8.0.4 has a funky bug with the burn window and About Toast window going blank white that seems to be associated with GL and multiple cards or monitors...
    This was more than annoying here when I had my client in the studio producing a basic powerpoint slideshow @ $2 per minute (and it kept locking up when I tried to play it).

  • NB100 help please with fan and graphics settings

    Hi, I have just bought the NB100 and have a few questions I hope someone can help me with.
    The fan icon goes grey or white depending on the settings using FN and F6, but I can feel no difference in the air around the right hand grill. Is it on when the icon shows white or grey? does it actually work?
    My second question is about the graphic settings. The intel power option that is displayed when the graphivs icon in the task bar is double clicked appears to be disabled. There are sliders, automatic brightness, and power saving, but none can be selected, how is it enabled?
    My last question is about games. I tried a few old ones that were not graphic intensive, Deus Ex, and sins of a solar empire, but I had problems getting at text boxes that needed a response, and in the case of Deus Ex it said the graphic drivers were not compatable. Has anyone had ant success with games? I travel a lot and thought I would like to have one or two installed other than card games etc.
    Thanks and regards, Brian

    Sorry, F6 was a typo, I meant F8. How do you tell if it has changed the speed of the fan? I wet my finger and held it next to the grill on the right hand side but could feel no difference nor hear any sound for the changes from white backgound to grey background on the fan icon.
    I may have not been clear on the graphics question. On the tray there is an icon for graphic options. When it is pressed, one of the selections is graphics properties. I selected this, then on the box that appeared, I pressed display settings to see if I cold get around the scrolling problem, and saw a box "power scheme". I selected that and another box appeared called power settings, I assume for the graphics as it is called "Intel Graphics Media Accelerator Driver for Mobile". this has some greyed out boxes called Intel Automatic Display Brightness, Intel Power saving technology with a slider going from Max quakity to Max battery, and another box called Intel display refresh rate technology. All this is greyed out. I have selected varios options regarding overall power schemes in the control panel and they work OK.

  • Help please with my navigation buttons

    Can anyone please help me with my vertical navigation buttons. I'm trying to set up my nav bar so that all the buttons have a background image (button.jpg) behind them at all times and the only thing that changes when touched or the mouse rolls over them is that the colour of the text changes, except when the sub buttons appear, because the name of some of the sub buttons are so long i have created another button image that is longer (button2.jpg), i only want this to appear on sub buttons otherwise the buttons will end up taking most of the pages space. I'm having great difficulties getting the sub buttons to appear with the correct image (button2.jpg) and am getting increasingly frustrated with it, can anyone please help!!!
    www.milesfunerals.com/index2.html

    index2.html is a broken link for sure. The main index page looks like it's working fine.
    A little styling critique if it's okay... Personally I'd have gone with a CSS or Javascript multi-level menu across the bottom of the header. Saves visitors from having to scroll all the way down the page to see every menu item. And I'd rethink the color of the "Miles & Daughters" in the header image. It kinda gets lost in the roses.
    If you have a link to the "broken" page please put it up so we can analyze it.

  • Help please :) with do not disconnect.

    I disconnected my ipod and I still get that "Do not disconnect message" And it doesnt even flash.
    Can somone please help me with this

    Try Resetting your iPod. Hold down the MENU and SELECT (centre) buttons for five or ten seconds until you see the Apple logo appear then the menu button to go to the normal display. Have a look at this link as well:
    iPod won't turn on
    iPod stops responding or will not waken from sleep

Maybe you are looking for

  • Conflicting answers on upgrading 10.3.9 to 10.5

    I was at the Apple Store today and wanted to purchase OS X 10.5, but first asked if there would be a problem installing it on my iMac G5 as an upgrade from 10.3.9. The first person I spoke to said she thought I had to install 10.4 first; she was unsu

  • OIM 11gR2: Error while starting SOA and OIM Server

    I have configured 2 OIM Applications hosted on 2 different linux hosts but connecting to one Oracle DB. Done OIM installation and configuration on HOST1 and it is successful. now while performing on HOST2,all similar steps have been followed as same

  • Xth data - updated with new records in exit- layout does not show new recor

    Hi , I have updated Xth_data table in an exit function with new set of records. I can in debug mode in the exit function 204 records in Xth_data and after the logic 408 records. But somehow , when the layout comes up , it comes up with only 204 recor

  • SAP HANA 32-Bit Clients on 64-bit Windows

    Hi guys, I have successfully made a 64-bit SBO 9 for HANA Client installation on a Windows 7 64-bit; I can connect to the company database too. However, on trying the 32-bit SBO 9.0 HANA Client on the same Windows environment, I find that I cannot co

  • Organizational reassignment not possible

    Hi, When i am trying to change the employee group from active(1) to terminated(5) in the transaction code PAL3 i am getting the error "Organizational reassignment not possible".So please guide me to solve this problem.I am with ECC 6.0 Regards Ravi