A program that captures voice and mouse screen movements?

I want to create tutorials and have it capture (in video) my voice and anything I do on the desktop so I can create tutorials and the likes.
Any ideas?
Any freeware or trial periods? If trial, would appreciate programs (UB) that are not limited too much and only have a time limitation vs. say only 10MB capture.
Please advise!
Thanks x 100

There is such a program. It is UB, it has a trial, and if you decide you want to buy it it's actually very cheap. It's called iShowU. It does exactly what you want. You can define a portion of the screen or all of it or, my personal fav, you can define a set size and it will follow your mouse around as necessary when you start to leave the area. It also has a variety of exporting options for the video.

Similar Messages

  • I have a program that capture sound how i can change to chat program

    hi all .i have a problem in which that i make a program that capture the sound from a mic then save it and then i can playback it so i wanna a help to change that program to capture the sound from a person on the lan and the other user ob the lan can hear that sound which they are connected throw the network .
    need all help

    So, you want to stream audio to your pals on a chat system. You will need to study the AudioInputStream class and figure out how to send an audio stream across a socket. You'll need to define an equivalent AudioOutputStream, unfortunately there is no such class in the API. Whatever you send should be readable using an AudioInput Stream.
    This is an interesting and non trivial project.

  • Can i make a program to make keyboard and mouse idle  for 10 seconds?

    can i make a program to make keyboard and mouse idle or not responding for 10 seconds?
    please how can i do that

    874557 wrote:
    no i don't think at all ..That much is obvious. Though I expect you meant to say +"No, I don't think *so* at all"+ - in which case you'd be wrong.
    ..i think some one is rudeYes, we (now) know you are, thanks to Darryl's pointers.
    See also How To Ask Questions The Smart Way - On Not Reacting Like A Loser. In fact, read the entire document.

  • Capture key and mouse event

    Hi,
    What I want to do is..
    when users click on a item such as text item and press the 'Ctrl' key, a message will
    appear.
    How can I capture the event ?
    Thanks.
    Ivan

    Duplicate thread. Please see the other one at:
    <p>capture key and mouse event

  • I have a Ipad2, my computer that contains all of my apps, music etc crashed and dosent work. I bought a new laptop, how do I retrieve that iTunes account and or apps, movies etc.

    I have a Ipad2, my computer that contains all of my apps, music etc crashed and dosent work. I bought a new laptop, how do I retrieve that iTunes account and or apps, movies etc.

    With your new computer, you'll download a fresh copy of iTunes and then authorize iTunes using your Apple ID and Password.  Read the following link:
    http://support.apple.com/kb/ht1420
    You can then connect your iPad to your new computer via USB cable and transfer your purchases (do not connect your iPad until you have authorized the computer.  The music you had in your old iTunes account will not be in your new account as music is stored in a file on your hard drive, which you said has crashed.

  • ABAP Program that generates XML and calls an XSLT transformation,

    Hello,
    I am creating a program that creates some XML output, and I am using STRANS to create a transformation.
    The file created looks like below before transformation.
      <?xml version="1.0" encoding="utf-8" ?>
    - <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
    - <asx:values>
    - <EMPLOYEE_DATA>
    - <item>
         <EMPLOYEE_ID>00000010</EMPLOYEE_ID>
        <FIRSTNAME>Joe</FIRSTNAME>
        <SURNAME>Bloggs</SURNAME>
        <DOB>1940-11-10</DOB>
        <SALARY>200000.0</SALARY>
      </item>
    <item>
      <EMPLOYEE_ID>00000055</EMPLOYEE_ID>
      <FIRSTNAME>Lydia</FIRSTNAME>
      <SURNAME>Jones</SURNAME>
      <DOB>1965-03-09</DOB>
      <SALARY>90000.0</SALARY>
      </item>
      </EMPLOYEE_DATA>
      </asx:values>
      </asx:abap>
    I want to make EMPLOYEE_ID  an attribute like in the following
    and what I want to output is:
      <?xml version="1.0" encoding="utf-8" ?>
    - <asx:abap xmlns:asx="http://www.sap.com/abapxml">
    - <asx:values>
    - <EMPLOYEE_DATA>
    - <EMPLOYEE_DETAILS EMPLOYEE_ID="00000010">
       <FIRSTNAME>Joe</FIRSTNAME>
       <SURNAME>Bloggs</SURNAME>
       <DOB>1940-11-10</DOB>
       <SALARY>200000.0</SALARY>
      </EMPLOYEE_DETAILS>
    <EMPLOYEE_DETAILS EMPLOYEE_ID="00000055">
        <FIRSTNAME>Lydia</FIRSTNAME>
        <SURNAME>Jones</SURNAME>
        <DOB>1965-03-09</DOB>
        <SALARY>90000.0</SALARY>
        </EMPLOYEE_DETAILS>
        </EMPLOYEE_DATA>
      </asx:values>
      </asx:abap>
    the XSLT I have cureently produces:
      <?xml version="1.0" encoding="utf-8" ?>
    - <asx:abap xmlns:asx="http://www.sap.com/abapxml">
    - <asx:values>
    - <EMPLOYEE_DATA>
    - <EMPLOYEE_DETAILS EMPLOYEE_ID="00000010">
      <EMPLOYEE_ID>00000010</EMPLOYEE_ID>
      <FIRSTNAME>Joe</FIRSTNAME>
      <SURNAME>Bloggs</SURNAME>
      <DOB>1940-11-10</DOB>
      <SALARY>200000.0</SALARY>
      </EMPLOYEE_DETAILS>
    - <EMPLOYEE_DETAILS EMPLOYEE_ID="00000038">
      <EMPLOYEE_ID>00000038</EMPLOYEE_ID>
      <FIRSTNAME>Fred</FIRSTNAME>
      <SURNAME>Johnson</SURNAME>
      <DOB>1960-12-11</DOB>
      <SALARY>123450.0</SALARY>
      </EMPLOYEE_DETAILS>
    - <EMPLOYEE_DETAILS EMPLOYEE_ID="00000055">
      <EMPLOYEE_ID>00000055</EMPLOYEE_ID>
      <FIRSTNAME>Lydia</FIRSTNAME>
      <SURNAME>Jones</SURNAME>
      <DOB>1965-03-09</DOB>
      <SALARY>90000.0</SALARY>
      </EMPLOYEE_DETAILS>
      </EMPLOYEE_DATA>
      </asx:values>
      </asx:abap>
    But it is repeating the Employee_ID, I want it to start from Firstname, the XSLT I have is:
    <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sap="http://www.sap.com/sapxsl" version="1.0">
      <xsl:strip-space elements="*"/>
      <xsl:template match="node()">
        <xsl:copy>
          <xsl:apply-templates select="node()"/>
        </xsl:copy>
      </xsl:template>
      <xsl:template match="item">
        <EMPLOYEE_DETAILS>
          <xsl:attribute name="EMPLOYEE_ID">
            <xsl:value-of select="EMPLOYEE_ID"/>
          </xsl:attribute>
          <xsl:apply-templates select="node()"/>
        </EMPLOYEE_DETAILS>
      </xsl:template>
    </xsl:transform>
    How do I get it to start from the next node?
    Thanks

    Hi
    I am also trying the similar kind of requirement.
    I am trying to convert XML file in to ABAP using transformations.
    Problem
    When I am trying to execute the Transformation (Selection is Transformation name, Source File Path) using STRANS it is giving the bellow message.
    XSLT Tester                                                                               
    Runtime Errors                                                                               
    Reason          : No valid XSLT program supplied 
    Could you please guide me how to test the Transformation using STRANS
    Thanks
    Nikhil.B

  • Voice Over : Mouse pointer moves VO cursor Question

    Hi!!
    I have low vision, and i want to use the voice over with my mouse and/or trackpad. Im able to see where the text is but i cant read it well. When I enable the Voice Over I select "Mouse pointer moves Voice Over cursor in the preferences. This works fine for me, vut i noticed that when i drag the pointer over the finders sidebar it select the folders without me clicking on them. Something similar happens in Safari when scrolling the web page. There is any way to avoid this?? The Voice Over with the keyboard is very nice but  sometimes I rather use the mouse.
    Thanks in advance!!

    ladislavfromcygnet wrote:
    Thank you Shootist007. I cannot do even Update now. I probably should have spent the same amount of money on a new IMac!
    No not really. If this is a brand new Macbook Pro take it back for a refund. Apple has a 14 day No Questions Asked return policy for Full refund.
    Take it back, get the Full Refund (DO NOT LET THEM TRY TO FIX IT. YOU BOUGHT A NEW COMPUTER NOT ONE THAT HAS BEEN WORKED ON OR NEEDS TO BE FIXED) and then decide whether to buy another Macbook Pro or the iMac. Or you could return it, get the Full refund and buy some other brand computer.

  • Is there a cc app that captures video of mousing around a web page? v

    I am making a video to demo the features of our website. I need a tool that will render full quality video screen captures, and it would be great if it allowed enhancements like audio cues and animations to indicate mouse clicks. Is there anything like that in CC?

    Hi cruscac10,
    I think this is the application that will suit your needs.
    http://www.adobe.com/products/captivate.html
    Check that and let me know if that's what you were looking for.

  • Please help me get rid of that stupid Navigator and that annoying voice and blue line once and for all!!!!

    Hello,
    I followed directions left by others and in Windows 8 there is no Explore All Settings but found Use computer without a display.  The narrator box was unchecked to begin with and I cannot get rid of the sound and that stupid blue line all over my screen.
    Any ideas?
    Thanks.

    Hi,
    Based on your description, I understand that you want to disable Narrator in the Windows 8.
    Did you mean that had un-checked
    Turn on Narrator in Use the computer without a display panel (the path: Control Panel-> Ease of Access-> Ease of Access Center->
    Use the computer without a display)? Please also click Make the computer easier to see in
    Ease of Access Center, there also has a Turn on Narrator option. Please check if also un-check it.
    Please also refer to following article and check if can help you.
    Disable
    Narrator on Windows 8/8.1 Computer | Steps and Pictures
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft
    does not guarantee the accuracy of this information.
    In addition, I also suggest that you should post the question in
    Windows 8.1 forum. I believe we will get a better assistance there.
    If anything I misunderstand or any update, please don’t hesitate to let me know.
    Hope this helps.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Hi. I need a apple program that can work and open Office 7 Publisher

    Hi. I am new to apple computing and I find that my work in office publisher is not able to open on this Mac I have Pages but that is the only program I have on here.
    Can any help me with a suggestion whit what program Apple has that is comparable with this window format?

    I have a copy of Libre Office here, and I have a sample .pub file downloaded from MS. I can not open it using Libre Office, please point me to the method you used.
    But ....
    I just found (in the impress module) a listing for Publisher, unfortunately it fails when opening the sample file (looks like a text only import), I will look for another file to test with.
    Thanks for the lead.
    Update:
    It does work:
    Downloaded Publisher Template, opened and re-saved in Libre Office Draw.
    To the OP, download Libre Office, Viking should get the solved award.

  • I have IOS Version 10.6.8 and want to download pages, but it will only allow 10.9 ios only, is there anyway to get the older verson of pages downloaded? I hope someone can help me, as I am needed a program that allows Greek and Hebrew languages for docs.

    I was told by a friend that pages would help me do greek and hebrew documents if needed. I went to download, but the requirement is 10.9 IOS. Thats only on the new macbooks. Can anyone recomment another product to do these docs, or do I just have to wait on the 10.9 IOS to be released?

    Thanks...here it was mine says...
    Hardware Overview:
      Model Name:          MacBook
      Model Identifier:          MacBook7,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.4 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          3 MB
      Memory:          2 GB
      Bus Speed:          1.07 GHz
      Boot ROM Version:          MB71.0039.B09
      SMC Version (system):          1.60f6
      Serial Number (system):          W80337U2F5W
      Hardware UUID:          BEB7FA07-9857-5F9D-B2FD-764A1DA74BFA
      Sudden Motion Sensor:
      State:          Enabled

  • I just upgraded to Firefox 4 and I get this error window that displays off and on screen this what I can read " ug-in object: TypeError:" and the second line "id] is undefined" but when I click the OK button the Firefox opens ok. What's wrong?

    I'm running Mac OS 10.6

    I also have the same issue with McAfee SiteAdvisor and FF4 on a MacBook Pro running the latest version of Snow Leopard. I have put in a service request with McAfee and will update this post in approx 48 hours unless they respond sooner. Seems like a far to common app to somehow have "missed" testing on a browser release that was scheduled for a while.

  • Program that captures/records source of streaming video?

    Product: HiDownload (PC Windows only)
    Product website: http://www.hidownload.com/
    Hi -- this program essentially picks up the stream source if you are watching a video (For example, a speech being covered by CNN, videos on ESPN, FOXNEWS,MSNBC, CNN, etc.)
    It worked really well when I used a PC, but now that I have a mac I can't find an equivalent for this. Anyone know of a program like this for Apple?

    snapz pro

  • Is there a program that finds hardware and OS problems?mid-2012 pro

    What about spywear?... my answering machine turned on then router was accessable to my laptop!!!! I now keep the mac router unplugged when not in use.
    Also, the 10.4.11 pro USB out to a perifferial microprocessor (arduino uno R3) has stopped communicating in either USB port How can I check to see if it works. Both USB ports r/w to flash drives. So what to do now?

    I've never actually done this, but don't think it will work for the purpose of running a task in a regular app like Synk Pro. Launching Synk Pro - even, I would think, from a logout script - will cancel logout. Of course, if Ham1000 is willing and able, he could probably replace Synk Pro with a call to rsync from a logout script:
    http://www.bananica.com/Geek-Stuff/Synchronize-two-folders-on-a-Mac-with-Rsync/
    Interesting idea...

  • Ok..program that will find and download LYRICS?

    any?

    Try iArt. It will grab album covers and lyrics and import directly into iTunes. It isn't 100% at finding lyrics, but it does a pretty good job and will save tons of cut and paste time.
    http://www.ipodsoft.com/index.php?/software/iart

Maybe you are looking for