Recording on another computer

I need to record some screen shots from a computer other than
my own. Mine has Captivate, the other does not. Is there some way
to get just the recorder onto the other machine? I have another
recording program that I
could use, but would like to see if there's a way to just
use Captivate and not have to switch between programs and/or have
to manipulate a lot of images separately (been there, done that,
don't want to do it again). I've looked through the support
documentation, but haven't found anything helpful. Any suggestions?
Thanks,
M

I have a similar issue to yours. I have captivate on my
compter and needed to capture on another computer that was on a
network that my computer could not access. I downloaded the trial
version to capture these files and brought them to my computer to
edit them. I edited and published them as swfs. When I did so and
tested them on the web, a box popped up on top of the captivate swf
and it says "Created with Adobe Captivate 2". You can tell this box
is within the captivate swf. I have used trial versions of programs
before as well as the full versions and to me it looks as if this
box is popping up because of having a trial version. BUT I edited
and saved a new version of the file on the full version of
captivate.
Any thoughts on this?
I need this box to GO AWAY. Does anyone know how to do so?
I'd appreciate any help and thanks in advance.

Similar Messages

  • Recording Software on another computer

    Is there some way of capturing a software application that
    exists on another computer and that will retain the quality and
    movement?

    Hi Paul and thanks to Rick for also climbing in here!!
    What I normally do is copy my version of Captivate 3 onto a
    memory stick (path = C:/Program Files/Adobe/Adobe Captivate 3).
    This creates your very own, portable, trial version that can be
    used on any other pc.
    Plug the memory stick into the other PC and, instead of
    installing, simply open the AdobeCaptivate.exe on your memory
    stick. When requested for the registration code, simply select
    Trial Version and you will have 30 days available on that PC. As
    Rick said however, please edit on your own machine and make sure
    that project expirations have been reset.
    If this is a long term project, then you would need to
    register your Captivate 3 licence on that machine, you are allowed
    to have 2 computers live with the same licence. Just PLEASE
    remember to uninstall Captivate 3 when you are done with the
    project so that your 2nd licence is released again.
    Re the remoteware issue, I am sorry, but my knowledge in that
    area is zero, so if anybody else out there can help, then please
    climb in. Rick, I believe you have used some form of remoteware
    with your training courses, maybe......

  • TS2972 How do I use home sharing to move a movie to another computer

    I am trying to move my digital copy of The hunger games to another computer through home sharing is this posssible?

    The short answer: because Home Sharing isn't designed for sharing apps, and apps aren't designed to be shared.
    The longer answer:  Think of it like this...
    You download some music in iTunes.  With Home Sharing, another user can listen to it by streaming it over the network.  But the data itself is on your computer.  If you turn off the computer or take it off the network, the other user can't access it.
    But if you send another user the app, they aren't just streaming the data- they installed it on their iOS device.  Because they weren't the one that purchased it, such a transfer could easily be considered "piracy" or "stealing," and nobody likes that (least of all, Apple). 
    When iTunes sees this app, it obviously recognized it, as if saying, "Hey, how did you get this app on your device, if I have no record of you purchasing/downloading it from the iTunes store?"
    post edited to correct spelling errors

  • Sending multitrack Project from FCP to STP on another computer doesn't work

    Hello,
    I attempted to search the forums but can't find my specific problem mentioned. I apologize if I overlooked it!
    I am attempting to send a Soundtrack Pro Multitrack Project from Final Cut Pro 6.01 to Soundtrack Pro 2.01 on another computer. When I do, the video comes through fine but the audio fails to transfer over.
    Here's what I did:
    First I open the Final Cut Project, highlight all the clips in the sequence to send and click "Send to Soundtrack Pro MultiTrack Project". I select all options including the "Fully Rendered Video" Option. This project opens up great in Sound Track Pro on the original computer. In Soundtrack Pro I "save as" and make sure I select "Collect Audio Files", "Collect unused audio files", & "Collect Video File". As far as I have read, this should be all I need to make sure all of the audio and video clips transfer together with the STP file.
    However, when I place this folder (including the media files) on a external hard drive and transfer it on to our other computer (set up for audio recording and editing) and open it up in STP I get no audio. The clips visually transfer and all the clip lengths match up with the video, however there is no waveform showing. A straight line at 0db is all that shows up. I check the clips in the bin and they show the same file size as on the first computer. When I select an audio clip and take a look at the actions tab it shows the name of the clip and under it it says "insert silence" (which was not there on the original computer). When I de-select the insert silence the audio still does not play (the straight line on the waveform disappears). I try deleting the "insert silence" action and the same thing happens.
    I have tried doing this operation mulitple ways with the same result. Am I doing something wrong? The only thing I can think of is the file starts out on OSX 10.4.11 and is transfered over to leopard 10.5. I just tried doing the reverse operation (creating the file from the audio computer and sending it to the video computer) and everything works fine. No idea what this means. I need this to work the other way around so I can begin the extremely intensive audio work on this film while our editor continues the video edits so thank you very much for any help that you can lend me. It is greatly appreciated.
    -Matt

    Could be a difference in OS's causing the problem, but I can't say for sure. You could try using the OMF export option instead. I almost guarantee it will work.

  • Connecting to a database from another computer...

    hi guys!
    i just wonder if there is a simple way to connect to my database from another computer?
    do you have to change something in this method?
        private static Connection getConnection() {     Connection con = null;     try {         Class.forName("com.mysql.jdbc.Driver");         String url = "jdbc:mysql://localhost/Movies";         String user = "root";         String pw = "x";         con = DriverManager.getConnection(url, user, pw);         System.out.println("****Connected****");     }     catch (ClassNotFoundException e)     {         System.out.println(e.getMessage());           System.out.println("1");         System.exit(0);     }     catch (SQLException e) {         System.out.println(e.getMessage());           System.out.println("2");           System.exit(0);     }         return con;     }
    thanks! :)
    Edited by: Shaor-1 on Dec 22, 2008 3:47 AM

    hey!
    is there no one who knows how to do this?
    Here is my program that i want to change so it can connect to my mysql database but from another computer.
    import java.sql.*;
    import java.text.NumberFormat;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    public class ListMovies {
            static String exist = "existed";
        static int ye = 2221;
        static double pr = 21.12;
    public static void main (String[] args) throws InterruptedException {
    go();
    public static void go(){
           NumberFormat cf = NumberFormat.getCurrencyInstance();
        for(int i = 0; i < 1; i--){
        ResultSet movies = getMovies();
        try
            while (movies.next()){
                Movie m = getMovie(movies);
                String msg = Integer.toString(m.year);
                msg += ": " + m.title;
                msg += " (" + cf.format(m.price) + ")";
                System.out.println(msg);
              Thread.sleep(1000*10);
                catch (InterruptedException ex) {
                    Logger.getLogger(ListMovies.class.getName()).log(Level.SEVERE, null, ex);
                }    catch (SQLException e)
            System.out.println(e.getMessage());
    public static void loanMovie(String d) {
        Connection con = getConnection();
        try {
            Statement stmt = con.createStatement();
            String insert = "insert into movie "
                    + "(title, year, price) "
                    + "values ("
                    + "\"" + d + "\"" + ", "
                    + ye + ", " + pr +");";
            int i =stmt.executeUpdate(insert);
            if (i == 1){
                System.out.println("Loan recorded");
            else
                System.out.println("Loan not recorded");    
        catch (SQLException e){
            System.out.println(e.getMessage());
            System.out.println("CRAP"); 
    private static ResultSet getMovies()
        Connection con = getConnection();
        try {
            Statement s = con.createStatement();
            String select = "Select title, year, price " +
                    "from movie order by year";
            ResultSet rows;
            rows = s.executeQuery(select);
            return rows;
        catch (SQLException e)
            System.out.println(e.getMessage());
        return null;
        private static Connection getConnection() {
         Connection con = null;
         try {
             Class.forName("com.mysql.jdbc.Driver");
             String url = "jdbc:mysql://localhost/Movies";
             String user = "root";
             String pw = "x";
             con = DriverManager.getConnection(url, user, pw);
             System.out.println("****INFO****");
         catch (ClassNotFoundException e)
             System.out.println(e.getMessage());
               System.out.println("1");
             System.exit(0);
         catch (SQLException e) {
             System.out.println(e.getMessage());
               System.out.println("2");
              System.exit(0);
            return con;
        private static Movie getMovie(ResultSet movies) {
            try {
                String title = movies.getString("Title");
                int year = movies.getInt("Year");
                double price = movies.getDouble("price");
                return new Movie(title, year, price);
            catch (SQLException e)
            System.out.println(e.getMessage());   
            return null;
        private static class Movie
            public String title;
            public int year;
            public double price;
            public Movie(String title, int year, double price)
                this.title = title;
                this.year = year;
                this.price = price;
    BTW_
    my computers ip is: 81.229.40.17
    the database is on that computer.
    thanks!

  • Saving Sessions 100% Correctly For Launching On Another Computer

    Hi, I have GB 2.02. On Mac OS 10.4.11. PowerBook G4 17".
    I have made a few songs, some have actual recorded audio in them, some have samples, and some of course have the midi stock sounds in them.
    What I was wondering is, where the heck are all these files stored ? The midi stock sounds I am not worried about because I know they are just "in the program" therefore the session. But where are all my recorded real audio files ? And the "Samples" ?
    Basically what I want to do is save my Garage Band songs properly with EVERYTHING in proper tact so that I can load them up on another computer or wipe my computers drive instal Leopard and then load them back into my computer and have them play 100% flawlessly like they should with out missing anything.
    Now in Pro Tools you have to save the "Session" file itself, plus the "Audio Files" folder.. Now that makes sense. See all the real audio files are recorded and kept in that "Audio Files" folder, so there is no confusion and you have total control. BUT when I went to my Garage Band folder, there seems to only be the "Session" file(s) and thats it. Where are all the actual audio files ? And how do I save them with the session ? Or is it all automatically in the "Session" file itself ? I don't understand, can someone shed some light please ?
    How do I do this properly so I don't lose my songs or ANY of its elements ?
    Thanks -

    If you need a database, use a database.
    The client doesn't do anything "on the server". The client just asks the server to do something with the data it provides. So make sure that the client sends the savegames and user IDs and load requests to the server process, and let the server worry about the implementation and storage.

  • I have an iPhoto event on my computer that I have photo-edited, named, key-worded, and place and dated. How to I transfer that event to another computer in a way that includes ALL the information?

    I have iPhoto '09, version 8.1.2. I have an event in the Library whose photos have all been edited, faces named, keywords added, and place and dated. How do I transfer the event intact (with ALL the editing, names, dates, places, etc) to another computer? Exporting does not include all the information (no dates or face names), nor does burning a DVD (it shows the location pinned on the map, but doesn't write out the name of the place).

    File -> Export:
    Kind: Jpeg
    Check the boxes at Include...
    This will get everything you mention except the Faces data. There is no way to share that on any system.
    Note that this information including the dates is written to the IPTC and Exif metadata. So you'll need an app that understands these things as the Finder doesn't - a Photo app for insstance.
    There are two kinds of metadata involved when you consider  jpeg or other image file.
    One is the file data. This is what the Finder shows. This tells you nothing about the contents of the file, just the File itself.
    The problem with File metadata is that it can easily change as the file is moved from place to place or exported, e-mailed, uploaded etc.
    Photographs have also got both Exif and IPTC metadata. The date and time that your camera snapped the Photograph is recorded in the Exif metadata. Regardless if what the file date says, this is the actual time recorded by the camera.
    Photo applications like iPhoto, Aperture, Lightroom, Picasa, Photoshop etc get their date and time from the Exif metadata.
    When you export from iPhoto to the Finder new file is created containing your Photo (and its Exif). The File date is - quite accurately - reported as the date of Export. However, the Photo Date doesn't change.
    The problem is that the Finder doesn't work with Exif.
    So, your photo has the correct date, and so does the file, but they are different things. To sort on the Photo date you'll need to use a photo app.

  • USING MY SKYPE ACCOUNT FROM ANOTHER COMPUTER

    HAVE OPENED MY ACCOUNT FROM ANOTHER COMPUTER BUT CAN'T SEEM TO WORK OUT HOW TO ACTUALLY START USING MY CONTACTS - ANY IDEAS? THANKS

    you can use your Skype account in any computer or device that has Skype "installed" in it.
    CONTACT SKYPE CUSTOMER SERVICE   |  HOW TO RECORD SKYPE VIDEO CALLS  | HOW TO HANDLE SUPICIOUS CALLS AND MESSAGES   |  WINDOWS PROBLEMS TROUBLESHOOTING   |  SKYPE DOWNLOAD LINKS  
    MORE TIPS, TRICKS AND UPDATES AT
    skypefordummies.blogspot.com

  • Migrating skype to another computer, passwor forgo...

    Hi all and excuse my english.
    My wife has a problem:
    - She is migrating from an Mac to a new one.
    - She is using Skype since 2006.
    - She does not remember her skype password.
    - She didn't specify any email address while registering.
    - She never use paid services.
    but
    - She can still uses Skype on her old MacBook because the software remember the password.
    Do you know if she can prove her identity using a skype call to techsupport?
    I guess if she is using skype on her old computer she should be able to migrate to another computer even if she forgot the key and didn't specify any email address while registering.
    Thanks in advance

    I think a possible solution is for her to purchase any services (which could be not ideal or practical), then use the password automation page in order to request for a new password without the need of an email address.
    moreover, can you please check what appears when you open the change email address page?
    https://support.skype.com/en/faq/FA96/How-do-I-change-my-email-address-or-add-another-email-address-...
    especially this section;
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • I want to transfer my entire itunes account to another computer. how can i get all of the music i put on my computer on a new computer?

    So my family had a computer that kept all of the songs and videos on it for itunes. how can i transfer all of that data to another computer and put that new computer as our home computer for the home itunes computer? please help me. i have been trying to figure this out for 2 months now.

    open itunes on the new computer and go to the itunes store
    make sure you are signed in with the apple id of whoever purchased all of music from the itunes store
    on the right hand side of the itunes store home page, under quick links click 'purchased'
    you will be able to download anything you have previously purchased for free
    let me know if that works for you.

  • The USB drive on my computer is no longer working. How can I transfer my iPod libarary to another computer

    The USB drive on my computer is no longer working. How can I transfer my iPod library to another computer.

    Try:
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • I lost my bookmarks after transporting hard drive to another computer, but I didn't save them in a specific folder, so how do I get them back?

    Our computer crashed almost two weeks ago so my dad took it to Best Buy to get it fixed, and they said that we were very close to the hard drive going out and losing everything. Luckily, they said that they could easily transfer all of our data into another computer, but that they would have to keep it over night.
    So they did, and when I got it back I immediately went to Microsoft Word (after we installed it again, of course) to see if all of my documents were there. (I am a writer, so it's very important to me.) Only half were there, so my father took it back and they said only half transferred, but they could transfer it all, no problem, it just has to stay over night again. (They also installed iTunes, etc. for us so we wouldn't have to. It was very nice of them.)
    When they gave it to my father, they said my bookmarks should be on there. Well, when we came home and hooked the computer up, the only book marks there were some from years ago, but not mine. I DIDN'T ever save my book marks to a specific file; I would just click the Bookmarks tab, hit Bookmark This Page, and then click Done, and it would appear at the bottom.
    Well, my book marks are not there and I cannot find them any where; no site has helped and they are VERY important. My dad refuses to talk to the tech guys again, so I would REALLY appreciate help.
    Thank you!!! :)
    P.S. I've made my own folder now. ( It seemed like a good idea. :] )

    My DeDuper script is designed to help clean up. See this thread for background.
    tt2

  • I have downloaded Top Gun for the ast 2 years, everytime I have opened up itunes.  it doesn't let me play it anyhow, because it was purchased on another computer.  I keep removing it, but it alway pops up after 10 minutes or so.  I am so tired of this.

    How do I remove a download that keeps trying to download.  Even when I click play it says it was downloaded from another computer and I am not authorized to play it, although it was actually purchased with the same apple id on my other computer.  It has downloaded for the last two years every time i have opened up itunes.  I remove it and then in ten minutes it starts downloading again, and interferes with my current purchases.  please help

    It may be a corrupt / damaged download.
    If you live in a Region that allows re-downloading Music...
    Delete the Song(s) and re-download...
    See Here  >  Download Past Purchases  >  http://support.apple.com/kb/HT2519
    If not... Contact iTunes Customer Service  >  Apple  Support  iTunes Store  Contact Us

  • I just got an imac that doesn't have the option of a cd drive, I have my adobe suite on another computer, how do I get it on the new computer?

    I purchased the adobe suite cs6 a few years ago on a cd, installed it on another computer, and now I got the imac that doesn't have a cd drive, how do I install the adobe suite onto my new computer without having to use the cd?

    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • HT4527 If i restored my iphone and lost all my music, how can I get my music back when im on another computer? My last computer broke, and this is a family members..Can I just sign in and find my music? Or how do I do it when this is someone elses laptop?

    I need help, I couldnt get into my iphone because I forgot the password and I couldnt hook my iphone up to the computer with all my music on it. So im wondering how to redownload that music from another computer that had already had someone elses account programed into it. I can almost get my purchased music but it says im not authorized. I DONT KNOW WHAT to do

    If your music was purcansed from the iTunes Store and your country allow is you can redownload it
    Login to itunes as yourself on this computer then
    http://support.apple.com/kb/HT2519
    You will also need to authorise that computer so you can play the content.
    Ctrl B to turn on the top menu
    Store > Authorise this Computer...
    Type in your Apple ID and password and authorise.

Maybe you are looking for

  • Error in ABAP Report TABLES declaration

    Hi, I am a Basis administrator and trying to write a small program for archiving. I get a folowing error when user the following statement in a report - TABLES: RSDAARCHREQ. The error is as follows - "RSDAARCHREQ" must be a flat structure. You cannot

  • Header condition with acess sequence, don't want to distribute to item line

    We have defined a condition type as a header condition. We need to use access sequence to automatically determine a invoice fee when creating invoices. We have defined the condition type as a group routine with condition routine 1 (we only want it to

  • Petition: Play an Artist's Songs By Album,Not Alphabetica

    It irritates me to see that if I select an artist's songs,I can only play them alphabetically. Does this irritate you? If so,just sign this petition.

  • Airport Utility Cant find airport express PLEASE HELP!!!!!!!!!!!!!

    A teacher of mine gave me an airport express base station and he used it for a month. I bring it home and plug it in to a power source outlet and a light went green then amber the next second. it stayed like that then it started to blink amber. Then

  • Generic Datasource using Infosets

    Dear Experts What can be the problems we face when we do Generic Extraction based on Infosets in ECC or R/3  and what are the other alternatives to this one? Thanks for your inputs, Regards, NJ