This is the message that I'm being given on tinychat. your webcam is being used by another application. any solutions?

this is the message that I'm being given on tinychat. "your webcam is in use by another application" Any suggestions?

One other thread said it was fixed by waiting till prompted by iTunes to insert the blank disk, instead of putting it in first. Does that work? Found a number of hits on this Googling.

Similar Messages

  • Ipod says that files are being used by another application...please help!

    My ipod lost all of my music but tells me that there is apparently still the same amount of memory used, i just can't access my music. To fix this, i'm trying to restore my ipod and just resync the music. However, every time i click restore i get the message "Itunes can not restore Ipod because it contains files in use by another application" even though there are no other applications running. I've ever tried restarting the computer to be sure that no applications are running. Please help!

    I had the same issue with my new iPod 4gb nano. To be perfectly honest, I fixed it and I'm not exactly sure what part of the process actually did the job, so I'm going to attempt to explain it as best I can.
    Basically I bought the nano to replace my 160gb classic aka paperweight. I'm currently deployed and the thought of traveling back to the US without a portable music player made me shudder. Within 4 days new nano click wheel decided to do the whole dying thing where I could click the buttons but not scroll through my music/change volume. I took the defunct iPod back to the BX and they exchanged it. I got home and discovered the "new" one they gave me was actually one that had been returned..because it popped up as "josh's ipod" when I plugged it in. So I'm on my third device and you can imagine when my computer informed me said device was corrupt and couldn't be read by my computer..I was pretty peeved. It took 7 or 8 tries to get the new nano update to install on my slow connection and when it finally did..I got the message that the files were in use by another application and couldn't be restored. I restarted the computer, made sure all other applications were shut down, checked my virus software. No dice. I ejected the ipod from my computer, plugged it back in and went into itunes preferences and clicked on "reset sync history". I think at this point it then treated the iPod as if it had never been plugged into my computer before. I then attempted the restore again, it did its thing and I now have a nice, new functioning iPod.

  • Can't disconnect it says that files are being used by another application

    i can't just eject it or use the safely remove hardware icon and select ipod. nothing i've heard so far works when i click the usb port thing it jsut says: "The device 'Generic volume' cannot be stopped right now. Try stopping the device again later." I've had this problem before and i need to know how to make it safe to disconnect now

    I had the same issue with my new iPod 4gb nano. To be perfectly honest, I fixed it and I'm not exactly sure what part of the process actually did the job, so I'm going to attempt to explain it as best I can.
    Basically I bought the nano to replace my 160gb classic aka paperweight. I'm currently deployed and the thought of traveling back to the US without a portable music player made me shudder. Within 4 days new nano click wheel decided to do the whole dying thing where I could click the buttons but not scroll through my music/change volume. I took the defunct iPod back to the BX and they exchanged it. I got home and discovered the "new" one they gave me was actually one that had been returned..because it popped up as "josh's ipod" when I plugged it in. So I'm on my third device and you can imagine when my computer informed me said device was corrupt and couldn't be read by my computer..I was pretty peeved. It took 7 or 8 tries to get the new nano update to install on my slow connection and when it finally did..I got the message that the files were in use by another application and couldn't be restored. I restarted the computer, made sure all other applications were shut down, checked my virus software. No dice. I ejected the ipod from my computer, plugged it back in and went into itunes preferences and clicked on "reset sync history". I think at this point it then treated the iPod as if it had never been plugged into my computer before. I then attempted the restore again, it did its thing and I now have a nice, new functioning iPod.

  • HT1351 Whether or not I sync items on iTunes to my ipod, I cannot eject the ipod because a message keeps coming up and saying that my ipod cannot be ejected because it contains files that are being used by another application. How do I fix this?

    I just got an ipod classic 7th generation a couple days ago and I'm having a heck of a time with it. My latest problem is that with media on iTunes, I cannot eject the ipod because it says that it cannot be ejected because it contains files that are being used by another application. What application is this, and what do I do about it?

    Hi newipoduser,
    Here are some possible solutions:
    Do you use musicmatch jukebox on your computer? If you do, you have to go into task manager on windows and end process mim.exe. It interferes with disconnecting ext devices
    Empty your "trash/recycle bin."
    If that doesn't work, try quitting all your programs, especially music-type programs, basically things that look for mp3's etc.
    if that doesn't work, "log off" then "log on" and that should refresh/purge your OS system.
    Finally, you can restart your computer.
    Hope one of these helps!
    Cheers,
    GB

  • I cant figure out what is wrong i keep getting this an OIEception that says "{"The process cannot access the file because it is being used by another process."}

    I am trying to move a file from a folder to another folder.
    here is my code:
    //storage of the all files
    string[] folderContentNames = Directory.GetFiles(@"C:\Users\Jonah\Desktop\Test Pictures");
    private void historyPictureBox_Click(object sender, EventArgs e)
    destinationFile = @"C:\Users\Jonah\Desktop\Test Test";
    File.Move(folderContentNames[1], destinationFile);
    updateListBoxFileName();
    updateImageBox();
    each time I hit the bolded underlined part I get that error message.
    if you need anything else just ask.
    Thanks in advance,
    Thor Orb

    Hi Thor,
    If you want to move a file from a folder to another folder, I think you could get the sourcePath and TargetPath. The code below shows a simple demo:
    string[] folders = Directory.GetFiles(@"D:\Test\VSC#\01\WindowsFormsApp\WindowsFormsApp\Test");
    string desFile =Path.Combine( @"D:\Test\VSC#\01\WindowsFormsApp\WindowsFormsApp\Test - Copy\"+Path.GetFileName(folders[1]));
    File.Move(folders[1], desFile);
    In addition, the link below might be useful to you:
    # How to: Copy, Delete, and Move Files and Folders (C# Programming Guide)
    >> The process cannot access the file because it is being used by another process
    The message seemed that the file was opened in other process. Did you operate the file with other code?
    I think you could check if the files and the folders were opened, and review your codes if they were used in other places.
    If you have any further questions, please feel free to post in this forum.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.
    Ya, Thanks I figured about the path and destation. yes I am using the file in another area, the file is an image jpg and I am displaying it in a picture box. Now I have been doing a little research I see a command called Dispose() and this is suppose to
    release the handle on the image, but I can seem to figure out have to use it correctly.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Collections;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.IO;
    namespace Scanned_Picture_Ogranizer
    public partial class Form1 : Form
    //storage of the all files
    string[] folderContentNames = Directory.GetFiles(@"C:\Users\Jonah\Desktop\Scan Project Testing\Test Pictures", "*.jpg");
    //List<string> folderContentList = folderContentNames.ToList();
    private List<string> folderContentList = new List<string>();
    Bitmap currentImage;
    Bitmap placeHolder;
    public Form1()
    InitializeComponent();
    convertingArrayToList();
    startUpData();
    string sourceFile = @"C:\Users\Jonah\OneDrive\My Programming Projects\Scanned Picture Organizer Project\Test Pictures";
    string destinationFile = "";
    private void moveButton_Click(object sender, EventArgs e)
    private void startUpData()
    //placeHolder = new Bitmap(folderContentList[0]);
    //currentImage = (Bitmap)placeHolder.Clone();
    // Image loadImage = new Bitmap(pictureClones[0]);
    // currentFilePictureBox.Image = loadImage;
    int numberOfFilesLeft = folderContentNames.Length;
    foreach (string name in folderContentNames)
    fileNamesListBox.Items.Add(name);
    fileNameTextBox.Text = folderContentNames[0];
    numberOfFilesLeftTextBox.Text = numberOfFilesLeft.ToString();
    ///loadImage.Dispose();
    //FileStream currentImage = new FileStream(folderContentList[0], FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
    private void convertingArrayToList()
    foreach (string listName in folderContentNames)
    folderContentList.Add(listName);
    private void selectingImageFromListBox()
    private void updateImageBox()
    Bitmap currentImage = new Bitmap(folderContentList[0]);
    currentFilePictureBox.Image = currentImage;
    currentImage.Dispose();
    private void updateListBoxFileName()
    fileNamesListBox.Items.RemoveAt(0);
    fileNameTextBox.Text = folderContentList[0];
    // numberOfFilesLeftTextBox.Text = numberOfFilesLeft.ToString();
    private void historyPictureBox_Click(object sender, EventArgs e)
    destinationFile = @"C:\Users\Jonah\Desktop\Scan Project Testing\Test Test\";
    File.Move(folderContentList[0], destinationFile + System.IO.Path.GetFileName(folderContentList[0]));
    folderContentList.RemoveAt(0);
    updateImageBox();
    updateListBoxFileName();
    when I first start the program the first picture displays, but when I trigger historyPictureBox_Click(), it does that error again. Another things is that I already looked at that link and it didn't help.
    I just super confused, I would like your help on this.
    Thanks,
    Thor Orb

  • I don't want the 'chat' option. how can I disable it? I often get the message that I am being disconnected from chat because i've logged on from another computer. I never use chat, and it just seems to be a problem. How can I get rid of it?

    I often get the message that I am being disconnected from chat because i've logged on from another computer. I never use chat, and it just seems to be a problem. How can I get rid of it?

    Don't expect any wonders. If you use it heavily with multiple applications running at the same time, nobody can help you. It's physics: more usage => higher energy consumption.
    Here you can find some tips to reduce the battery consumption. My tip: close applications if you don't need them right now and reduce screen brightness.

  • "LOGIC PRO X: Disk is too slow or System Overload.  (-10010)"  This is the message that I was having since two weeks ago with my Logic 9.  I updated two days ago to Logic X and I am still having the same problem.

    "LOGIC PRO X: Disk is too slow or System Overload.  (-10010)"  This is the message that I was having since two weeks ago with my Logic 9.  I updated two days ago to Logic X and I am still having the same problem.
    I recently formatted my computer.  In other words, I'm not using too much memory of my HD.  My Memory Ram is 8GB.

    dandotcraig wrote:
    A week before logic X comes out it starts bugging out... i deleted a bunch of stuff on my HD and cleaned up everything... didnt fix anything... then logic x came out and I though oh i better update that will fix everything... and im still having the same problems... its rediculous.
    Umm,, no offence... but what is ridiculous...  is you didn't troubleshoot the original problem but instead you assumed it was a LP9 problem so you updated to LPX which is still in its early days and is likely to be less stable than LP9... rather than more so!
    So.. Here's the thing.... 
    LP9 was working fine and then stopped working normally according to you. Therefore what changed at the time LP9 stopped working normally?
    Here are just a few ideas to think about.. for around the time this started..
    Did you update Logic Pro 9... OS X... Drivers for Midi/Audio or other connected devices?
    If you did, did you then restore from a backup you made prior to these problems occuring and what happened when you did so? (assuming you do make backups of your system?)
    Did you install any new Apps on your Mac?
    Did you add a new Hard Drive? How is it formatted?
    Did you start recording or creating music in a different way to how you used to before the problem started?
    Have you started using a different SI or FX plugin or plugins.. More or different FX for example.. Did you install a new version of a plugin?
    Is all your software legal? (Have to ask because some people install all kinds of illegal plugins and whatever else.. and have no idea how the 'cracks' work or what they might affect/mess up/conflict with in the process)
    Have you looked at the System logs to see if anything is happening out of the ordinary when you get these messages?
    Have you looked at OS X's Activity monitor to see if any app or routine is kicking in hard when you get this issue?
    Basically, you need to think about and look for what changed... because something apparently changed to suddenly cause these issues...given you said you didn't have them until a certain timeframe and some of the questions above, I hope, will get you thinking..
    ....and maybe a few of the others here will come up with other ideas and suggestions to help you...
    Good luck and let us know how you got on...

  • TS1424 "cannot connect to itune store" this is the message that appear each time i tried to long in with my Apple ID

    "cannot connect to itune store" this is the message that appear each time i tried to long in with my Apple ID

    Hello Badejackson,
    Thanks for using Apple Support Communities.
    Please see the article below about how to troubleshoot this error message you are receiving:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Take care,
    Alex H.

  • I cannot find my current iPhoto Library.  I cannot remember the exact message but part of it said that the library might be being used by another application.  (Could that be Elements 12)

    I cannot find my current iPhoto Library.  I cannot remember the exact message but part of it said that the library might be being used by another application.  (Could that be Elements 12)

    Rebuild the iPhoto Library > Rebuilding the iPhoto library

  • Good morning, my photoshop stopped working, it gives error when started, what can it be?  This is the message that appears: Unable to start the program it took a unexpected end of file  I hope answer

    Good morning, my photoshop stopped working, it gives error when started, what can it be?
    This is the message that appears:
    Unable to start the program it took a unexpected end of file
    I hope answer

    Could not initialize Photoshop because an unexpected end-of-file was encountered. | Mylenium's Error Code Database
    Mylenium

  • When i connect my iphone 3Gs to itunes in my computer they say, they have an update for my iphone ios 5 to ios 6.1, this is the message that apear in my itunes, We're sorry, we are unable to continue with your activation at this time.Ask your question.

    when i connect my iphone 3Gs to itunes in my computer they say, they have an update for my iphone ios 5 to ios 6.1, this is the message that apear in my itunes, We're sorry, we are unable to continue with your activation at this time.Ask your question. what should i do for now for iphone didnt activate of itunes?

    Ask the person who owns the iPhone.
    Which version of Cydia appears on the iPhone - the one
    with the black and white icon or a different one?
    If it was jailbroken, contact the developers of the jailbreak.
    Not all jailbreaks can be completely removed.
    Google may provide some direction.

  • TS1424 I have down loaded a rental from itunes. It won't play and this is the message that comes up. itunes store error_42110? .

    I have down loaded a rental from itunes, but am unable to play it. This is the message that comes up. itunes store error_42110? .

    Welcome to the Apple Community.
    This may be an authorisation issue.
    http://support.apple.com/kb/TS1389

  • I am unable to use my external CD player. I am told that the player is being used by another application, and that is not true. I have quit everything and restarted. I've unplugged the unit. I have a fairly new mac mini 10.8. What can I do?

    I am unable to use my external CD player. I have a fairly new mac mini 10.8. I am told that the player is being used by another application, but it's not true. I've forced everything to quit and restarted. I've even unplugged the unit and let it rest. I've turned off and unplugged the mac too. I cannot make a CD. Why?

    I misread your message. I thought it said I did not have burn support with the Samsung hardware.
    When the CD goes in it says You inserted a bland CD. choose an action from the popup menu or click ignore
    open finder
    open itunes
    open disk utility
    make this action the default
    eject         ignore           ok
    However, when I am making CDs. I am in itunes. That is where my recordings areI haven't tried to do it from this vantage point.
    I don't know how to make a screen shot on a mac.
    I go to my playlist and click on the little gear icon at the bottom left and I leave things as they are - preferred speed - maximum. I leave it on audio CD - and then I select BURN.
    When I tried this the other day, I could not get it to burn, no matter how hard I tried - everything I could think of, using a different CD, force quitting everything I was not using, restarting the computer, unplugging the CD hardware and plugging it back in after a little while, nothing worked. I got that message that said my player was being used by another application every time I tried to make the CD.  This took over an hour. I don't know of another way to make a CD on the mac; I was not using another program or application. Now it seems to be working fine. I am burning another copy of something I gave away.
    I wish I knew what caused this. It was a real problem Saturday morning.

  • I am trying to burn a music cd on iTunes, but I am getting an error that reads that the cd burner is being used by another application.  I know that I am not using the cd burner for anything else.  I have restarted the Mac and nothing.  Any ideas?

    I am trying to burn a music cd on iTunes, but I am getting an error that reads that the cd burner is being used by another application.  I know that I am not using the cd burner for anything else.  I have restarted the Mac and nothing.  Any ideas?

    One other thread said it was fixed by waiting till prompted by iTunes to insert the blank disk, instead of putting it in first. Does that work? Found a number of hits on this Googling.

  • How do I fix this error: DF024: Unable to preserve original file at ... Error 32 The process cannot access the file because it is being used by another process.(Seq 1352).  ?

    I am installing creative the cloud Illustrator desktop app on a machine with windows 7 64 bit running in a domain environment.  The download starts and takes about runs for a bout 10 minutes and then stops with the error: DF024: Unable to preserve original file at "C:\Program Files\Adobe\Adobe Illustrator CC 2014\Support Files\Contents\Windows\AdobeLinguistic.dll" Error 32 The process cannot access the file because it is being used by another process.(Seq 1352)
    I am logged in as a network administrator and there are no other apps except a web browser (Chrome) running.  There are no other users logged into the machine.
    How can I see what other process is using the needed file so that I can fix it?
    Thanks

    MelissaB34 it looks like you already are reviewing your installation log files but you can find more information at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  From the error you have posted it appears that your current User account is either unable to update C:\Program Files\Adobe\Adobe Illustrator CC 2014\Support Files\Contents\Windows\AdobeLinguistic.dll or does not have sufficient file permissions to do so.  Since you mentioned you are on a domain please ensure that you are working with your I.T. department and have correct access to this directory.
    You may want to also consider logging in under a local administrator account to see if you face the same difficulties.  This would help you determine if you are facing a file corruption issue or file permission issue.

Maybe you are looking for

  • Can't backup Oracle DB on Windows 2008 R2 via DB13

    Hi All, I'm having an issue that is driving me nuts. First off, I'm using CA arcserve version 16. I checked the read me and i fall into the supported versions. Windows Server 2008 R2 Service Pack 1 x64 with BR*TOOLS 7.2 for Oracle 11gr2 Windows Serve

  • Pricing Condition in SMARTFORMS

    Hi All, I am working on smartforms.I have given select query for codition records like following. SELECT SINGLE  KBETR FROM  KONV   INTO TOTAL WHERE KNUMV = VBDKA-KNUMV AND KPOSN = VBDPA-POSNR AND KSCHL = 'PR00'. Its displaying error that VBDKA is no

  • Oracle for Solaris 10(x86 32bit)

    My Operation System is Solaris 10(for x86 32-bit). I download "Oracle Database 10g Release 1(10.1.0.3) for Solaris x86". When I install Oracle 10g into my OS, it display "only can install into Solaris 9 [version 5.9]". What can I do? Or Have the newe

  • WLC 5508 and ACS server

    Hi, Apologies if this has been answered before. I did a search, but unable to find anythimg. What I would like to do is be able to have a WLC 5508 as the local RADIUS DB and authenticator, but then be able to have an ACS server in a central location

  • Importance of specifiying MAC add of next hop L3 device in FWSM config

    Hi, With refrence of Cisco Secure Firewall Services Module (FWSM) of Cisco Press book it's mentioned that "While configuring the transparent mode in FWSM, it is important to specify the MAC address and the CAM entries on the Layer 3 next hop device o