How can I convert .cp projects from Captivate 2 to .cptx projects for Captivate 7?

How can I convert .cp projects from Captivate 2 to .cptx projects for Captivate 7? Do I have to use some other version between 2 and 7 to do this?

I doubt you are going to be able to find all those previous versions and the time it would take to install, open the project, verify it, and everything in between (and without license keys, they would only be saved from trial versions which would be an issue), it seems it would be better just to start with Cp7 and put the effort into that.
Completely off topic, one of the things I like about Authorware is that Macromedia provided previous versions that would allow you to open up and save the projects to get to version 7. It was a nice little touch they provided for developers. I don't believe that Adobe does this for Captivate though.
Dave

Similar Messages

  • How can i convert video files from my mac to watch them on my iphone?, how can i convert video files to watch them on my iphone?

    how can i convert video files from my mac to watch them on my iphone?, how can i convert video files to watch them on my iphone?

    Turns out the answer to that question changes if you ask it more than 4 times, so ask it again....
    The answer depends on the type of video files you want to convert.  If they are DRM protected commercial videos, no help can be given here.  Google.

  • How can i convert the data from mutiple-table to the other database(MSSQL)?

    Dears,
    How can i convert the data from mutiple-table to the other database such as MS-SQL?
    I have a third party system based on MS-SQL 2000.
    Now we want to make a integration between SAP R/3(Oracle) and SQL server.
    When my user releases the purchase order in R/3, the application we coded will convert the releated data to the temp database on the SQL server.
    But i don't know which tools will help me reach the purpose.  BAPI, LSMW, IDoc... ???
    Would anybody tell me which way is better and how to do?
    Thanks a lot!
    Kevin Wang

    Hello Kevin,
    The question to use which method depend on your detail requirements. If you use BAPI, you need to find which Bapi can provide the data you want. Bapi normally use as a function called by external system. So you need to develop an external program like VB/Java to call this Bapi and move it to SQL. LSMW is use when you want to upload data from an external system to SAP. So it does not serve your requirement. Idoc can be use to export data to an external system. Again like Bapi, you need to find what Idoc can provide the data you want. However, it does not any programming from the external system. If I were you, based on your requirements, I think writing an Abap program that read the data you want and download it to NT/SQL server will be faster and easier.

  • How can I convert/read out from a string Hex (8-bit), the bit 0 length 1

    How can I convert/read out from Hex (8-bit), the bit 0 length 1 (string subset!!??) and convert it to decimal.
    With respect to one complement and two complement ?

    Just like Jeff, purely guessing here.
    It almost sounds like you just need to Read from Binary File?
    AND the 8-bit number with 1?
    Need more details.  What exactly do you have to start with?  What exactly are you trying to get out of it?  Examples help.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How can I use a pic from iPhoto as a background for a page, How can I use a pic as a background for a page

    How can I use a pic from iPhoto as a background for a page, How can I use a pic as a background for a page

    cd,
    Insert the picture and position it as you desire
    Make sure the picture is set to Floating in the Wrap Inspector
    Arrange > Send Objects to Background
    Regards,

  • How can you convert a PDF File into a picture format for uploading?

    How can you convert a PDF File into a picture format for uploading?

    If you have Acrobat 11, you'd select: File > Save As Other > Image
    and select one of the available image formats.

  • How can I convert datalog files from LV5.0 to LV6i?

    I have some datalog files from LV5.0 and I'd like to use them in LV6i, but when although I push convert when asked in the moment of reading the file,it provides input parameter invalid when reading. I'm using the same vi I used to create and read them in LV5, so it's not supposed to be a program mistake. How can I convert them?"

    Hello,
    Thanks for answering my question. I downloaded LV6.02 as you suggested but the problem persists.
    I don't know maybe it's something very simple. I have attached 1 program to read the datalog file and another one that reads it in every version (LV5.0 and LV6.02) in case you can help me.
    Thanks again,
    Javi
    Attachments:
    WriteLV5.vi ‏65 KB
    OpenLV5.vi ‏74 KB
    OpenLV6.vi ‏59 KB

  • How can I convert a space from ABAP to CSV data?

    Hello guys,
    how can I convert a string like
    "This is a%test%"
    to
    "This is  a test "
    into CSV data?
    I try to with   REPLACE ALL OCCURRENCES OF '%' IN string_above WITH space,
    but I got the string without space, like
    "This is  atest"
    I read some posts that CSV will ignore space.
    But which kind of symbol in CSV represents space?
    Thanks for any suggestion!
    Regards,
    Liying

    USE THE CODE AS SHOWN BELOW...
    TYPES : BEGIN OF tp_data,
              line(4096),
            END   OF tp_data.
    *&      Form  gui_upload
          Upload the data from the input file to the internal table
    FORM gui_upload.
    *--Local data declaration
      DATA: l_filename_ip TYPE string,
            tl_data       TYPE STANDARD TABLE OF tp_data WITH HEADER LINE.
      l_filename_ip = p_input.
    *--Upload Data
      CALL FUNCTION 'GUI_UPLOAD'
           EXPORTING
                filename                = l_filename_ip
                filetype                = 'ASC'
                has_field_separator     = ''
           TABLES
                data_tab                = tl_data
           EXCEPTIONS
                file_open_error         = 1
                file_read_error         = 2
                no_batch                = 3
                gui_refuse_filetransfer = 4
                invalid_type            = 5
                no_authority            = 6
                unknown_error           = 7
                bad_data_format         = 8
                header_not_allowed      = 9
                separator_not_allowed   = 10
                header_too_long         = 11
                unknown_dp_error        = 12
                access_denied           = 13
                dp_out_of_memory        = 14
                disk_full               = 15
                dp_timeout              = 16
                OTHERS                  = 17.
      IF sy-subrc <> 0.
        MESSAGE ID   sy-msgid TYPE 'S' NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        IF sy-subrc = 1.
          MESSAGE e000 WITH text-e04.
        ENDIF.
      ELSE.
        LOOP AT tl_data FROM 2.
    *--Taking the contents of the input file leaving the header part
          PERFORM split_and_save USING tl_data-line.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " gui_upload
    *&      Form  split_and_save
          Splitting the contents from the input file and saving them into
          an internal table
         -->P_TL_DATA_LINE  text
    FORM split_and_save USING fp_data.
    *--Local data declaration
      DATA : tl_data TYPE STANDARD TABLE OF tp_data WITH HEADER LINE,
             l_type  TYPE c,
             c_space(1) TYPE c VALUE ' '.
    *--Split at the Comma
      SPLIT fp_data AT c_space INTO TABLE tl_data.
      CLEAR inputtab.
    *--Move it to the target fields
      DO.
        ASSIGN COMPONENT sy-index OF STRUCTURE inputtab TO <fs_field>.
        IF NOT sy-subrc IS INITIAL.
          EXIT.
        ENDIF.
    *--Extract source data
        CLEAR tl_data.
        READ TABLE tl_data INDEX sy-index.
    *--Populate the target
        <fs_field> = tl_data-line.
      ENDDO.
    *--Append this record
      APPEND inputtab.
    ENDFORM.                    " split_and_save
    In the above code u can use make inputtab like tp_data and get the result as requires in an internal table as space seperated fields.
    In place of space u can also use any other symbol.
    And after that u can replace all occurences of space with the comma by using the statement that u have written below.

  • How can I convert iWeb page to html with NO javascript for email campaign?

    I have a holiday greeting I made in iWeb '09 for my business. The service I'm using to use to manage my mailing list wants me to strip all javascript code from the page so it is not seen as spam when it is emailed.
    How can I convert the page made in iWeb to an html page with no javascript?
    Thanks

    How can I convert the page made in iWeb to an html page with no javascript?
    You cannot. There will be nothing left. iWeb pages rely a lot on JavaScript.
    Use a template from Mail.app. Or create such template. These are simple TABLES and have no JavaScript in it.
    Do Cmd-Shift-G in the finder and type :
    /Library/Application Support/Apple/Mail/Stationery/Apple/Contents/Resources/
    Open one of the folders and open each successive folder until you see files like Picnic.mailstationery.
    Right-click to show the package content.
    Then navigate thru Contents, Resources until you see the files and images you need.
    Edit them to your hearts content.
    Double-click the file Picnic.mailstationery and it will open in Mail.app for further processing.

  • How can i convert my file from RGB to CMYK?

    I need to convert my pages project from RGB to CMYK.  How can I do this?

    Which version of Pages and can you be more specific about what file you have and what you are intending to do with it?
    Peter

  • How can I convert my imovie from ipad to burn dvd on PC

    I have produced a 30 minute video for my son's football team using Imovie on my ipad.  I do not have an apple computer and need to convert the imovie to my PC in order to burn DVD's.  This process seems impossible.  I have read many forums and am trying to export the project to my camera roll, however the process never completes itself.  It will export for literally hours without completing the process.  This project have taken me weeks to complete, mainly because the process is very slow with imovie and extremely frustating.  Now, I'm ready to finish up and am so worried I will never get it off my ipad.  What do I do??

    NO files larger that 500mb (which is **** near any video)  will not transfer!
    At: http://support.apple.com/kb/HT4083
    It incorrectly state this:
    "Windows XP cannot import video files larger than 500 MB using Camera and Scanner Wizard. You can transfer these files directly from your device by selecting them in My Computer and dragging or copying the movie files to your computer's hard drive."
    Problem is that NO videos are shown as I open my ipad up in "My Computer", only photographs I have taken
    THIS INSANE.  You put Hign Def Video camera on the IPAD and NO simple way to get the you home made videos of it?  Search this topic "transfer video from ipad to computer"  you get NO help.  the only responses are from people hocking there "computer programs that will do it"  or "apps" that transfer files. 
    Apple here is the reality. At this point, regarding computers, PC is King...get it?  We do not all have apple computers to go along with our ipads.  ... So incase i need to break it down for you....YOU NEED TO HAVE A EASY WAY TO REMOVE VIDEOS FROM AN IPAD TO A FREAKIN PC...
    I am not sure what is most amazing:
    -ipad designers not seeing this as a problem
    -the lies at http://support.apple.com/kb/HT4083 that discuss easy it is to simply open up "my computer" and drag an drop
    -ignorant people responding to several other people with my same simple problem with stupid response like "so you want to put a video on your ipad, you do that thru itunes" or "gosh it's been a while since i did this but its real easy, i think..."
    There are not even any you tube videos on the subject... Am I in Bizzaro World here????

  • How can i convert a url from https to http?

    Hi,
    SSL is enabled in WLS 9.2 and its wrkng fine. And iam able to access login page in secure(https)mode. After this page i need to convert the url from https mode to http. For enabling https i added some code in web.xml. For switchinng https to http i dn't knw anythng.
    Pls gve me suggetion.
    Thanks in advance.

    Export it from iPhoto. This process will make a QuickTime movie of it. That will play on an PC that has QuickTime installed - and that's a free download for PC, and comes with iTunes for PC
    Regards
    TD

  • How can I convert a l7680 from USB to wireless

    I have a L7680 setup to print via a USB connection.  How can I change that to a wireless connection without un/reinstalling the whole program.
    Thx
    Dave
    WinXP SP3 IE8 MDE all updates
    This question was solved.
    View Solution.

    Hi,
    Your printer has a NIC (wired) therefore you can add it to your home network thru a router which has LAN port(s) using CAT5 or CAT5e or CAT6 cable. Please use this book as a guide how to connect:
      http://h10032.www1.hp.com/ctg/Manual/c00389927.pdf
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Help - how can I convert G5's SATA power to 4-pin for an Ultra SCSI?

    I am trying to put an Ultra SCSI hard drive in an G5. For *some reason* this is very, very hard to do. I have bought a compatible ATTO PCI card that is working fine in the slot. I can connect the data cable from the SCSI card to the drive installed in the G5 (although it was hard snaking it through). The problem is power. What I need is an adapter that will convert the end of the SATA power connector into a 4 pin female for the drive side. This product (http://eshop.macsales.com/item/Micro%20Accessories/SATAPA/
    ) looks right, but seems to be the wrong sex -- the 4 pin part is certainly the wrong sex (since the drive is male, the adapter must be female), and I can't tell if the SATA part will fit (looks like it's also the wrong sex). The picture of what I am trying to do is here:
    http://flickr.com/photos/ppayne/159005320/
    Can you please help me here? I can't believe that people using a special (high performance in my case) drive with a g5 is something no one has ever tried to do. I know SATA is the future but I want to use my special hard drive (15,000 rpm Ultra SCSI) with my server.
    So once again, I am looking for an adapter that will be male SATA power on one end, and female 4 pin on the other end. If anyone could help that would be great.

    Like Timotheus D said, don't over think it, get a y-splitter to go off the power for your super drive, like: http://www.directron.com/cbl-y.html

  • How can I create back up from ipad 2 before opting for restore setting

    how can I create back up in my computer from ipad2 before opting for restore setting, as I have forget my password for ipad and it has been diabled and not at all open by making several attempt

    Recovery Mode:
    1. Turn off iPad
    2. Connect USB cable to computer; leave the other end alone
    3. Press and hold the Home button down and connect the docking end of cable to iPad
    4. Continue holding the Home button until you see the "Connect To iTune" screen
    5. Release the Home button
    6. Open iTune
    7. You should see "iTunes has detected an iPad in recovery mode"
    8. Use iTune to restore iPad
    Note: You need to be patient and repeat the above many times to recover your iPad

  • How can I convert audio files from Windows Media player to WMV?

    I am unable to add a soundtrack if it is a WMA file.  What programs are best to convert files to WMV?

    If you are wishing to add the WMA soundtrack to a PrE Project, I would convert/rip the WMA to PCM/WAV 48KHz 16-bit, and then Import that WAV file into the PrE Project. Drag it to a free Audio Track. Though there is a Soundtrack Track, some users have had issues with it. Any free Audio Track, with the necessary channel-count is likely to work better.
    For the conversion/ripping, there are many programs that can do this for you. I use Adobe Audition, but the great, free Audacity can do it nicely, as well.
    As WMA can have aspets, like 6-channel Audio, wrapped in the WMA, I like doing the conversion, unless I need, say the 6 discrete channels in Audition, for output to DTS Audio with the SurCode DTS encoder program.
    Good luck,
    Hunt

Maybe you are looking for

  • IPod cannot be updated...required file cannot be found

    I have the latest iPod software and iTunes. When I plug my 5G ipod into my computer, after it transfers a few new songs, I get the following pop-up message: "The iPod 'name of iPod' cannot be updated. The required file cannot be found." When I click

  • I need only to select node with "NodeName" (or/and Number) in a Java Tree

    I need only to select node with "NodeName" (or/and Number) in a Java Tree. Can anybody help me? Thanks a lot

  • Rendering in color

    I have rendered all my clips in color. I have checked very carefully to make sure everyone of them says completed and has the green label. So when I send them back to FCp it says not all of my clips have been rendered. This is not so , when I created

  • Dimension level sequence not generated but "level id" is

    Using OWB 10gR2 on Oracle 9.0.2.6 I have a three level dimension on a building table. The highest level address portfolios (based on manager responsibilities), province (where the building is) and final building information. I have defined the surrog

  • People report my online number gives a busy signal

    People report my online number gives a busy signal... What should I do?  Does Skype offer chat support with a live rep to resolve this issue?