How to control system volume by moving mouse up and down using java

hi,
please give me suggestion that how to control the system volume by moving mouse up and down in java..
thanks,
prabhu selvakumar.

Prabhu_Selvakumar wrote:
Thank u for ur reply... i dont know wat is JNI interface... i have to read about that.... Unless you're a whiz-bang C/C++ coder, using this won't be easy or pretty. For my money, if I wanted to create a program that interacted closely with a specific OS, I'd use a more OS-specific programming language such as C# if I'm coding for Windoz.

Similar Messages

  • How to get the password of a password protected Excel Sheet using java/jxl

    Hi ,
    how to get the password of a password protected Excel Sheet using java / jxl program.
    plz any one help me .
    Ramesh P
    [email protected]

    If they've implemented the password system correctly there probably isn't a way of getting the password at all.

  • How to print/list all the groups/users present in Weblogic using Java code

    Hi,
    Weblogic version : 11.1.1.5
    How to print/list all the groups/users present in Weblogic using Java code
    I want to make a remote connection to Weblogic server and print all the users/groups present in it.
    I have gone through the below mentioned site, but I cannot use the same approach since most of the API' are deprecated for example "weblogic.management.MBeanHome;"
    http://weblogic-wonders.com/weblogic/2010/11/10/list-users-and-groups-in-weblogic-using-jmx/
    Thanks in advance,
    Edited by: 984107 on 05-Feb-2013 05:26
    Edited by: 984107 on 05-Feb-2013 22:59

    see this http://www.techpaste.com/2012/06/managing-user-groups-wlst-scripts-weblogic/
    Hope this helps.

  • If I completely fill my hard drive 500Gb how time machine will keep working having 1Tb of total space, I mean I have to delete mu hard drive but how I keep my previous information on time machine and keep using to with new information?

    If I completely fill my hard drive 500Gb how time machine will keep working having 1Tb of total space [externak hard drive], I mean I have to delete my hard drive but how I keep my previous information on time machine and keep using it with new information?

    Time Machine does not provide archival storage.
    If you delete a file from your disk it will eventually be deleted from your TM backup without any notice to you.
    You need a second external disk to use for archival storage.
    You also need a third disk for backups of the second disk.

  • How to get the query result of improvement (Before and After ) using sql de

    how to get the query result of improvement (Before and After ) using sql developer.

    Check
    http://www.oracle.com/technetwork/articles/sql/exploring-sql-developer-1637307.html

  • How do i search for a string in a txt file using java??

    How do i search for a string in a txt file using java??
    could you please help thanks
    J

    Regular expressinos work just fine, especially when
    searching for patterns. But they seem to be impying
    it's a specific group of characters they're looking
    for, and indexOf() is much faster than a regex.If he's reading from a file, the I/O time will likely swamp any performance hit that regex introduces. I think contains() (or indexOf() if he's not on 5.0 yet) is preferable to regex just because it's simpler. (And in the case of contains(), the name makes for a very clear, direct mapping between your intent and the code that realizes it.)

  • How to insert text in the middle of an existing textfile using java

    Hi,
    How to insert text in the middle of an existing textfile using java i/o streams??

    Mickie wrote:
    I shudn't delete the file...Then you will have the old file and the new file - do you want that?
    and I have to insert text not only at a single place ....got to do at many places in the text file!!then extrapolate on the procedure outlined in reply #1 .

  • How to create A web services step by step and their uses

    How to create A web services step by step and their uses with their T-Codes
    pls dont send any links
    thank you
    Regards,
    Jagrut Bharatkumar Shukla

    Hi
    Use the Tcode <b>WFWS</b> to create the Web service
    enter the Transaction to whih you wants create the web service and save
    Regards
    Anji

  • After installing Lion, mouse up and down scrolling does not work

    After installing Lion, scrolling with an Apple mouse up and down does not work. Horizontal scrolling does work.

    Hi guys. First, check the scroll outside of Firefox. Is it working?
    Second,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences'''<Enter> in the address bar
    Select '''Advanced > General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • How can we make the ms-word data as read-only using java code?

    How can we make the ms-word data as read-only using java code?

    MVSK wrote:
    By using java code i opened a file in ms-word. But the data i want to display as read-only. that means should not change it.I don't think you can do that. Display pdf documents instead.

  • HT2490 How to open system preferences without a mouse

    I need to set up a new trackpad, but have no mouse. How do I open the system preferences without a mouse?

    Your profile shows you have an iMac. Is the trackpad being used on the iMac & connected externally? Or is the trackpad on a Mac laptop?
    Go to a computer store, Walmart, Target & buy a cheap (<$10) USB mouse.
     Cheers, Tom

  • Controlling system volume

    Hello,
    I'm sure there is a simple script that once a user launches
    the projector it will set their system volume to 50%, then when
    they exit the projector there volume will return.
    Please help
    Thanks,
    Devin

    Put this in a movie script
    -------volume control--------
    global gOldVolume
    on getSystemVolume
    gOldVolume=baGetVolume("wave")
    end
    on setSystemVolume vNewVolume
    baSetVolume("wave",vNewVolume)
    end
    on resetSystemVolume
    baSetVolume("wave",gOldVolume)
    end
    ------end volume control-------
    Any time before you try setting the volume, run this once:
    getSystemVolume()
    Then, when you want to change the volume, do this:
    setSystemVolume(someNumber)
    where someNumber is an integer from 0 through 100. 0 means
    mute. 100
    means as loud as it can be. You can call that as many times
    as you want
    to change the volume as you please.
    Then to reset it back to the way it was before you got to it,
    use this
    command:
    resetSystemVolume()
    A good place to put that is on stopMovie (or on your exit
    button, or
    whatever is the last thing that is done before the movie is
    closed.

  • How to control the volume of all sounds in the movie (even if they were in the time line (no instance name)

    Hi,
    I need to control the volume of all sounds in the movie even
    if they were in the timeline so they do not have an instance name,
    by AS3.0 code?
    thanks a lot.

    :
    var st:SoundTransform=SoundMixer.soundTransform;
    st.volume=whatever;
    SoundMixer.soundTransform=st;

  • Volume of songs going up and down, how to stop?

    Hello! The volume of songs keep going up and down. I have unticked 'Set the same volume for all tracks'. I've checked to see if theres a setting for this in spotify (doesn't seem to be one?) and I've gone through all the processes and killed off anything sound related. Is this something spotify is doing, and if so, how do i turn it off or what version do i downgrade to? Is this in my head? :( A good example is the song gangnam style, where the high's of the song are now lower than the parts that are supposed to be the low parts... it's like someones constantly fiddling with the volume and it's incredibely distracting, and not something I can do my work to. And I need spotify to shut people out at work... Not related: is there any way to get a true random function? Your "intelligent shuffle" algorithm is lovely but malplaced. As it is, I've written a program that randomly sorts playlists, but its just a work-around. /Guy Edit: I may have solved the sound issue. A Hidden HP program was doing something to the volume. Killing it, and then going to Volume Mixer, settings for speakers, and ticking "Disable system effects" solved it. Why would they even add something like this to the pc.

    Ok, glad you have fixed it!

  • How to control pop ups on a per web site basis using Safari 7.0.1?

    rMacbook Pro late 2013 maxed out with the 512gb SSD.... 16gb ram, nVidia GT750m, SuperDrive, and Lacie external 1Tb Rugged Thunderbolt/USB 3.0 for Time Machine and 300GB for DATA out of it.
    Having been a windows user all my life I am generally real real pleased with this notebook. actually spoiled for first my first notebook after years of big money custom built desktops from Falcon Northwest and Puget Systems. For using my Nikon D800 they rock other than that these Haswell rMacbook Pro work for me
    Have to use bootcamp and windows 7 64 bit professional for 2 pieces of software That are needed if one wants to continue a life long job with GM.
    So we take updates, tests, webcasts, etc. and I prefer to do those tasks on the Mavericks 10.9.1 side but find on Safari 7.0.1 you cannot control popups on a per website basis. On wondows I use IE 10 which I like and always have and while open to exploits safe computing practices can keep that under control. 
    So as I learn Apple and all its software I was hoping there may be an extension or app that will give user control of popups a little better than the default of either all on or all off? Does anyone one know of one? Google wasn't much help maybe I used incorrect search term but I doubt it.
    Thank you,
    Chevysales

    There are some Safari extensions that can block JavaScript by domain, but you'll have to search for them.

Maybe you are looking for

  • Java Plugin 1.3.1 on RedHat Linux 7.1

    I downloaded and installed the Java SDK 1.3.1 for linux. When I try to view an applet written in Netscape I get the following error message on the bottom left corner of the browser window: ClassdefError javax.japplet not found. However, I can see the

  • Why does iTunes never wanna update in win 7 64 bit?

    Hi Everytime I try to update iTunes since last 1½ year I allways end up having to uninstall everything from Apple - download pacakages from internet - reboot (often two-three times) and then reinstall the whole iTunes package once again. Everytime it

  • How can I transfer a form I created to my associate's paid account?

    How can I transfer a form I created to my associate's paid account?

  • Checkout and checkin in sharepoint 2013 infopath form

    I am migrating infopath form from SP20010 to SP2013 one of the form contains the checkout(on button click) - Checkin(on exit) functionality. I converted the Checkout  data connection file. its giving me error  An error occurred while trying to connec

  • Work process trace level automatically increasing

    Hello All, MY env is SAP R3 4.6C (DB2 7.1.0) ,and suddenly many of the work process of all the appl.servers(4) trace level is increasing to level 2 . Which is causing FileSystem full (usr/sap/<sid>) ... Even after manually changing the trace level to