Image Transfer Nokia 6680

Hi,
I am using the latest version of Nokia PC Suite (6.80.22), in combination with windows XP, SP 2.
Image transfer used to work fine, until approx 2 or 3 months ago. Since then, PC suite does not identify new pictures anymore. I have tried reinstalling and installing newer versions, but this did not help.
I can however transfer the videos to my computer, but for some strange reason, I can not transfer any picture at all.
I have the problem when I am using a cable or using bluetooth (havent tried IR).
Does anybody know a possible solution for this problem?
Looking forward to a reply!
Julian

Hi,
Does this happen with all kind of image files (e.g *.jpg or *.gif ) ?
If you change the image file extension to video extension in phone, can you then transfer that tp PC??
Does Nokia Image Store application transfer those image files to PC?

Similar Messages

  • Image transfer problem 6680 pc suite

    Hi,
    I'm trying to transfer images from my phone to the pc using pc suite. But when i select every images on the phone and drag and drop them to the pc, then a folder is created, called for instance "PB3CEA.tmp" with no images in it.
    When i only select a few it does the job without any problem. I connect by cable.
    Is there something to do about it ?
    configuration :
    Pc Suite 6.81.13.0
    Nokia 6680 fully up to date
    Windows XP SP2 also up to date
    Thanks folks !
    Terence

    In fact i was using the "file manager" when this thing happened, but i retrieved my files using "transfer images".
    I know this is awkward, i don't understand it either...
    Thanks for your help !
    Terence

  • Trouble with Nokia 6680 and iSync

    I have a Nokia 6680 and an iMac. Recently I wanted to clean up my contact list but I'm having problems in this.
    Contacts created in the phone get transfered to my computer with iSync easy, but I can't transfer all my contacts created in my iMac to the Nokia 6680.
    It used to work sincronizing a hundred contacts, but now I can't do it with 40 or 50. It's supposed to work all the ways but it doesn't.
    What should I do? Is there any kind of limitation with my phone or iSync?

    Hi trav!
    We're having the exact same problem. If you search this forum (and others), you'll find more threads regarding this issue..
    http://forum.java.sun.com/thread.jspa?threadID=641445&tstart=60
    http://discussion.forum.nokia.com/forum/showthread.php?s=61e4114bdf2a110921bfd4bc2af40862&threadid=64240
    It seems to be impossible to get in touch with Nokia developers. They are probably on vacation..
    We've struggled with this for about 2 weeks now,and the most likely reason is:
    1. It's a bug
    2. The locator url has changed since the phone has two cameras.
    Cheers,
    H�vard

  • Push to talk for nokia 6680

    is push to talk available for nokia 6680 ? if so where can i download it ?

    03-Aug-200704:06 PM
    sankaranand wrote:
    well i brought it sim free ! yeah it should be available as included in memory card but the thing is i lost the memory card that came with this phone.
    so i brought another memory card and need to install own. currently i have core software like image editor, image manager and real player.. i wanted the setup file of push to talk.
    I can't speak for the 6680 as I don't have one, but on the N95 these programs are actually a part of the firmware, so live on the actual phone - not memory card.
    When you refer to "the setup file of push to talk", you have to remember there are two components - the actual program itself and the configuration. The program will/should live on the phone and you get the configuration from your network operator.
    One thing you could try is to update your firmware on your 6680 to see whether this brings back the PTT application.
    Visit here to see whether there is an update available for your phone first :
    http://www.nokia.co.uk/A4305060
    and if so visit here to update your phone :
    http://www.nokia.co.uk/softwareupdater
    However be aware that upgrading your phone will revert it to the configuration to when you first bought it, so if you wish to save the data on your phone, you might want to back it up using the free application Nokia provides called PC Suite which you can find here :
    http://www.nokia.com/pcsuite
    After updating, you will also have to remember to contact your network operator to redownload all the settings for sending text messages and so on as the phone will no longer have these settings stored.
    Regards,
    Edward

  • Nokia 6680-how do I fit more music??

    I have a Nokia 6680 and an Apple iBook. I am using a USB card reader to transfer my music from my computer to the card in my phone, but it only seems to accept 8 songs.. I thought maybe the card was filling up and I received a larger card (1GB) as a gift -but even this huge card seems to be portioned off to only accept 8 songs.. Whenever I try to drag more songs onto the card, they don't go. Am I missing something, is the phone only letting the card accept a short playlist, or is there a way around this trouble?

    Sync it.
    If the device has no more capacity, remove some of the music to put new content on it.

  • HELP! n95 image transfer problem!

    i have recently installed pc suite onto vista. previously pc suite worked fine when i had xp. now when i try to store images from phone to pc it tells me there is an error communicating with phone. pls help!

    suite version and step by step how you try to do that image transfer.
    Also what connection method (if USB, what mode you are choosing from phone)

  • Capture picture with nokia 6680

    I'm developing an application for Nokia 6680, and need to access the videoplayer through my gui so I can capture a picture and send it to a webserver.
    I'm having trouble initializing the player. It throws a MediaException with Symbian OS error -5, "the operation requested is not supported".
    It works just fine in WTK 2.2 and with SE K700.
    I've also checked the supports.video.capture system-property, and it returns true.
    Here's the code:
    class CameraForm extends Form implements CommandListener {
      private final MyMIDlet midlet;
      private final Command exitCommand;
      private Command captureCommand = null;
      private Player player;
      private VideoControl videoControl;
      private boolean active=false;
      private StringItem messageItem;
       public CameraForm(MyMIDlet midlet){
          super("Camera");
          this.midlet=midlet;
          messageItem = new StringItem("Message","start");
          append(messageItem);
          exitCommand=new Command("Exit",Command.EXIT,1);
          addCommand(exitCommand);
          setCommandListener(this);
          //initialize camera
          try {
             player = Manager.createPlayer("capture://video");
             player.realize();
             //Grab the videoControl and set it to the current display
             videoControl=(VideoControl)(player.getControl("VideoControl"));
             if(videoControl != null){
                 append((Item)(videoControl.initDisplayMode(VideoControl.USE_GUI_PRIMITIVE,null)));
            captureCommand = new Command("Capture",Command.SCREEN,1);
            addCommand(captureCommand);
            messageItem.setText("OK");
        }  else{
            messageItem.setText("No video control");
    } catch(IOException ioe){
          messageItem.setText("IOException:"+ioe.getMessage());
    } catch(MediaException me){
          messageItem.setText("MediaException cameraForm(): "+me.getMessage());
    } catch(SecurityException se){
          messageItem.setText("Securityexception:"+se.getMessage());
    }Thanks!

    Peter,
    Sorry for the late reply, have been really busy the past weeks.
    Yesterday I got another Nokia 6680 on which my MIDlet wouldn't run. Got the MediaException -5 (meaning "Not Supported") again.
    I tried the code *#7370# to hard reset the phone (see Step 1 below), with no success. But I did manage to get it working (after continuing with the procedure below).
    The following explains the steps I followed:
    NOTE: Backup all data on your phone before continuing as all will be lost!
    Step 1:
    a.) Enter the code *#7370#
    b.) Answer [Yes] to the following prompt: "Restore all original phone settings? Phone will restart."
    c.) Enter the security code when the phone prompts for it. (Default: 12345)
    d.) The phone will now restart.
    e.) Once restarted, all data will have been erased and the phone will ask you for some settings.
    Step 2: This is a bit tricky...
    a.) Turn off the phone.
    b.) Press and hold the following keys: [Answer] + [*] + [3]
    [Answer] = Answer key (green phone)
    [*] = Star key
    [3] = Numeric 3 key
    c.) While holding the above keys, press the [Power] button to switch on the phone.
    d.) Once again all data will have been erased and the phone will ask you for some settings.
    Step 3:
    Follow Step 1 again.
    Install your application after each step and test to see if it isn't maybe working. My MIDlet only started working after completing Step 3. I am not sure if Step 1 is actually necessary, but I have listed it as this is the path I did folow.
    That is it, hope this works for you.

  • Urgent Advice Nokia 6680

    Hi. I need a big help. I own a Nokia 6680 that has lasted me for five years until yesterday. I usually maintain a four digit numeric password to access my cell whenever it is turned on. The digits are 2300. Once the password is entered then I will be have full access to use all the functions of the cell. Now the problem is that, the key pad number for Number 2 is not working! All other key pads are working. I took it to the local Nokia Care showroom where they say the problem is not the keypad but the board itself. I think they said the mother board is no longer working. However, if the motherboard is not working, then none of the keypads should work. Everything is working except for keypad Number 2. The Nokia Care persons tried replacing the keypad but still nothing worked. I am happy the 6680 has lasted me all these years, but the problem now is that I have more than 600 contact details on the phone memory that I am not able to access. Is there a WAY to break the password? Any software or device? Once the password is broken, then I can access the cell. Every few months I backup the phone memory details on the memory card but without accessing it on this cell, I am not able to retrieve it. That is the miserable part. I was told there is a software known as Noki Crack. Does this work? Or is there a simpler way? Please advice. Thank you.

    Okey, I understand. Only a Nokia care point can fixe this for you as this is related to hw issue with your keyboard.
    You can find your nearest Nokia care point here: http://europe.nokia.com/support/repair-and-recycle/repair/care-points

  • Nokia 6680 Standby Mode Problem

    I cant change my Nokia 6680 Standby Mode. Its disapeard. When I go to Setting and then Standby Mode, I cant see Activate Standby Mode there anymore. Ive formated phone memroy but still I cant...Anybody has any information about this problem?

    15-Mar-2008 07:57 AM
    clairelouise73 wrote:
    Hi. I've recently been given a Nokia 6680 which I've had unlocked and started using. I've found that when I plug my charger in the phone indicates it is charging but once I pull the charger out (after various periods of time) it shows up as low battery. I have tried 2 different chargers and 2 different batteries. I am currently using an old nokia phone to charge up a battery to put in the 6680 every day. Help? Am I doing something wrong??
    Prior to it being unlocked it charged up no problem.
    If you have a new phone you need to keep it on charge for 16 hours. Once the battery is fully charged the charge indicator stops moving which would tell you that the battery is full.
    If my post has helped you please click the white star on the right

  • Nokia 6680 - switch message from off?

    Hi,
    I would like to send anonymous text messages with my 3G contract nokia 6680. Is this possible?
    Please advise.
    Thanks in advance.
    Nagsy

    don't think its possible to send texts without your number coming up!!

  • Nokia 6680. . Help pls.

    Hello, i have my Nokia 6680. I've been searching my manual and different sites for me to know how can I modify my screen saver on my phone. Pls help me..

    Hi sam_0317
    You could try Psiloc screensaver available from:
    http://shop.psiloc.com/en/Application,65552,Psiloc+Screen+Saver
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Nokia 6680 maximal MMC size

    Hello
    I want ask, what is maximal size of RS-DV-MMC cards that can be used in Nokia 6680. I was looking for it on web, but I didn't find it. I want buy 4GB card but I am not sure it will work properly, post, please, what card do you use and what biggest you tried (remember that card can work properly for example up to 2GB and when you reach this point it may crash etc.).
    Thank you

    It IS possible to change the font on a nokia 6680!
    Just install a new font of a bigger size. More info can be found on : http://www.symbian-freak.com/tunning/fontquide/fonts.htm
    CheersMessage Edited by z500 on 22-Nov-2005
    07:12 PM

  • Nokia 6680 unable to send texts

    I've had a Nokia 6680 for about 7/8 months now. In that time its every so often decided its memory is full (when it isnt) and be unable to send texts. This was normally fixed by turning it off and on. About a week ago this stopped fixing the problem. Over the next few days I had to put up with not being able to send any texts. 3 days ago I hard reset it a few times and it fixed the problem. However the problem has returned again. I really dont want to have to hard reset my phone every few days since thats a bit annoying.
    Has anyone come accross this before? (Phone memory is 66% free, RAM is 99% free and MEmCard is 40% free).

    Very odd, don't really know what to suggest about that one!
    Try entering the number as 0044 instead of +44.
    If you have delivery reports enabled, try disabling them or vice versa.
    Make sure "Reply via same centre" is set to "no" in the messaging options.
    Can't really thing of much else to try! My guess is that it's an odd network fault that is blocking it.

  • Nokia 6680 new firmware?

    Hi guys,
    Did Nokia realese new firmware for Nokia 6680?:
    v5.04.40
    20-11-06
    RM-36
    I was just checking for the new firmware for Nokia 6680,
    via Nokia Software Updater. And I was surprise to find there are
    new updates. Then I upgrade my 6680 from v5.04.07 to v5.04.40.
    After upgrade, I notice that there are some difficulties in making & receiving calls, and sending SMS. I'm staying in Malaysia and using Celcom 3G. I refer the provider on this matter, and they said their network is ok.
    Could it be the upgrades?
    What are the changelog for v5.04.40

    Yeah, that's what I thought. An upgrade is suppose to improve the use. Unless, the new firmware has a tiny bug, or it's an unofficial release. I looked up in the Internet, so far, no info about the new firmware.
    Can Nokia release an unofficial firmware?
    Thanks for the help.
    Firdaus
    xxxxxxx

  • Image Transfer doesn't recognize Android phone

    I tried to use Image Transfer to get the photos off my Moto G phone but IT doesn't recognize a device is hooked up via USB.  I could do it using Android
    Transfer Protocols but of course it's not as good as IT as you have to choose which photos you want so it can take forever.
    Any suggestions?
    Thanx.

    I'm adding that iTunes has no problem reading the iPhone.

Maybe you are looking for