Digikam/Gwenview don't rotate images

Hi,
I have a problem rotating jpg images with the KDE image viewers digikam and gwenview.
Gwenview displays rotated images when I rotate them manually, but if I close and open gwenview they are not rotated.
Also with digikam I cannot rotate images. It displays a message saying the rotation of the image failed. If I start digikam from a console, the error message
"QFile::setFileName: File (/tmp/kde-username/digikamM10192kipiplugin-rotate.JPG) is already opened"
Because the rotation fails with both programs I think the error is in the kipi-plugins somehow. The same error is displayed if I use kipi-plugins 1.1.0 from testing. The rest of the system is up-to-date Arch i686.
Any idea what I can do to solve this problem?

I think there are two problems:
- gwenview and digikam (thumbnail list) unable to rotate JPEGs (it does work with PNGs)
- showfoto crashing when saving images (all formats I tried)
So I created two bug reports upstream: gwenview and digikam/showfoto. The second one has been marked as resolved because I did not provide a GDB backtrace (just KDE's): I will provide the needed backtrace tonight (aproximately 10 hours from now).
Feel free to vote on both of them and/or add whatever relevant information you may have (a 'faster' gdb backtrace for the second one would be of help).
Last edited by TioDuke (2010-02-18 15:25:22)

Similar Messages

  • LR rotates images as they were at the upload

    Hi everybody
    I went back to a folder I haven't been looking for about 3-4 months. After I located the folder from the external disk all the images opened,  with my surprise, without the rotation I have set at the time so I had to to do it all again. Usually LR should retain the settings you apply to images, with no time limitation. So what happened in this case?
    p.s. it's even worse: LR is opening the images, in Grid View, initially with the rotation I set after the first opening but as I scroll down, always in Grid View, the images showed in the screen are rotated back as they were at the upload.
    Then I scroll down a bit more, images that were out of view are showed with the correct rotation and after a while they start rotating as they were at upload .....what the hell is going on???

    I think the key is when you said you have not viewed these pictures in 3-4 months. Therefore LR deleted its previews and the effect you are seeing is LR re-making them. If it does not have a preview in its cache it tries to be quick by showing you the JPG preview in the image file. That's as the camera recorded it. The it makes a preview from the image data, and finally applies the editing steps either from the catalog or the XMP information in the file.
    So if you give LR the time to do all that it should give you the pictures as you last had them in LR.
    I just went back to some pictures from February in my catalog and LR did recall the image orientations.
    BUT - I am also confused. I did a test and rotated a picture in LR. That rotation did not appear in the History panel. That surprised me, because LR does remember any rotations applied. I don't know where.
    Another factor may be that many cameras record the orientation in the EXIF. Thus my Canon DSLR rotates images correctly on the LCD display whereas my Nikon Coolpix P6000 does not. This could be part of your issue:- the camera's notion of orientation vs. LR's.
    So this is only a partial answer but I hope it helps.

  • Rotating Image with Fade Effect

    Ok looking to rotate an image with a fade effect; below is a rotating image code.
    (Wanting this effect to be transitional and smooth. Transparency? Opacity?)
    <script language="JavaScript">
    <!--
    function adArray() {
    for (i=0; i*2<adArray.arguments.length; i++) {
    this[i] = new Object();
    this[i].src = adArray.arguments[i*2];
    this[i].href = adArray.arguments[i*2+1];
    this.length = i;
    function getAdNum() {
    dat = new Date();
    dat = (dat.getTime()+"").charAt(8);
    if (dat.length == 1)
    ad_num = dat%ads.length;
    else
    ad_num = 0;
    return ad_num;
    var ads = new adArray(
    "img1.jpg","http://www.domain.com",
    "img2.jpg","http://www.domain.com",
    "img3.jpg","http://www.domain.com");
    var ad_num = getAdNum();
    document.write('<div align="center"><A HREF="'+ads[ad_num].href+'" target="_blank"><IMG SRC="'+ads[ad_num].src+'" '
    +'BORDER=0 name=js_ad></A></div>');
    link_num = document.links.length-1;
    function rotateSponsor() {
    if (document.images) {
    ad_num = (ad_num+1)%ads.length;
    document.js_ad.src = ads[ad_num].src;
    document.links[link_num].href = ads[ad_num].href;
    setTimeout("rotateSponsor()",4000);
    setTimeout("rotateSponsor()",4000);
    // -->
    </script>
    Any ideas?

    Here is the script I finally got working! It would have not came to me without your help guys!
    <script>
    var pictureWebPartName="Pictures"; // name of the picture library web part
    var showThumbnails = true; //otherwise show full sized images
    var randomImg = true; //set to true to show in random order
    var useCustomLinks = false; //true to use second column as URL for picture clicks
    var RotatingPicturesLoopTime = 5000; //2000 = 2 seconds
    var imgToImgTransition = 1.0; //2 = 2 seconds
    // don't change these
    var selectedImg = 0;
    var imgCache = [];
    var imgTag;
    function RotatingPictures()
    imgTag = document.getElementById("RotatingImage");
    //Find the picture web part and hide it
    var Imgs = [];
    var x = document.getElementsByTagName("TD"); // find all of the table cells
    var LinkList;
    var i=0;
    for (i=0;i<x.length;i++)
    if (x[i].title == pictureWebPartName)
    // tables in tables in tables... ah SharePoint!
    LinkList = x[i].parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode;
    // hide the links list web part
    LinkList.style.display="none";
    break;
    if (!LinkList)
    document.all("RotatingImageMsg").innerHTML="Web Part '" + pictureWebPartName + "' not found!";
    //Copy all of the links from the web part to our array
    var links = LinkList.getElementsByTagName("TR") // find all of the rows
    var url;
    var len;
    for (i=0;i<links.length;i++)
    //if (links(i).id.match("row")!=null)
    if (links[i].childNodes[0].className=="ms-vb2")
    len=Imgs.length
    Imgs[len]=[]
    Imgs[len][0] = links[i].childNodes[0].childNodes[0].href;
    if (useCustomLinks)
    if (links[i].childNodes[1].childNodes.length>0)
    { Imgs[len][1] = links[i].childNodes[1].childNodes[0].href; }
    else
    { Imgs[len][1] = "" }
    if (Imgs.length==0)
    document.all("RotatingImageMsg").innerHTML="No images found in web part '" + pictureWebPartName + "'!";
    for (i = 0; i < Imgs.length; i++)
    imgCache[i] = new Image();
    imgCache[i].src = Imgs[i][0];
    if (useCustomLinks)
    imgCache[i].customlink=Imgs[i][1];
    RotatingPicturesLoop();
    // now show the pictures...
    function RotatingPicturesLoop()
    if (randomImg)
    selectedImg=Math.floor(Math.random()*imgCache.length);
    if (document.all){
    imgTag.style.filter="blendTrans(duration=" + imgToImgTransition + ")";
    imgTag.filters.blendTrans.Apply();
    url=imgCache[selectedImg].src
    if (useCustomLinks)
    { RotatingImageLnk.href=imgCache[selectedImg].customlink; }
    else
    { RotatingImageLnk.href = url; }
    if (showThumbnails)
    // convert URLs to point to the thumbnails...
    // from airshow%20pictures/helicopter.jpg
    // to airshow%20pictures/_t/helicopter_jpg.jpg
    url = revString(url);
    c = url.indexOf(".");
    url = url.substring(0,c) + "_" + url.substring(c+1,url.length);
    c = url.indexOf("/");
    url = url.substring(0,c) + "/t_" + url.substring(c,url.length);
    url = revString(url) + ".jpg";
    imgTag.src = url;
    if (document.all){
    imgTag.filters.blendTrans.Play();
    selectedImg += 1;
    if (selectedImg > (imgCache.length-1)) selectedImg=0;
    setTimeout(RotatingPicturesLoop, RotatingPicturesLoopTime);
    // utility function revString found here:
    // http://www.java2s.com/Code/JavaScript/Language-Basics/PlayingwithStrings.htm
    function revString(str) {
    var retStr = "";
    for (i=str.length - 1 ; i > - 1 ; i--){
    retStr += str.substr(i,1);
    return retStr;
    // add our function to the SharePoint OnLoad event
    _spBodyOnLoadFunctionNames.push("RotatingPictures");
    </script>
    <!-- add your own formatting here... -->
    <center>
    <table border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td id="VU" height="125" width="160" align="center" valign="middle">
    <a name="RotatingImageLnk" id="RotatingImageLnk" alt="click for larger picture">
    <img src="/_layouts/images/dot.gif" name="RotatingImage" id="RotatingImage" border=0>
    </a>
    <span name="RotatingImageMsg" id="RotatingImageMsg"></span>
    </td>
    </tr>
    </table>
    </center>
    Thanks again guys!

  • Severe memory leak in LR5 (CC release v5.0) when cropping (rotating) images

    I have a Quadcore i7 iMac with 12GB of memory.  When I start LR5, there is 8GB remaining.  With nothing else being done, as a edit some images, and especially when I am rotating images in the crop tool to level the horizon, fI sometimes get the "OSX beachball" and the memory immediately drops from 8GB to 10-20MB!!!  The disk goes crazy and LR5 and the entire machine slows to a crawl.  The only way to bring it back is to Force Quit LR5.  But this has happened with the same picture twice already and am getting ready to try #3.
    Please fix this .... this is definitely a bug as there is no reason it should eat 8GB of memory for doing an image rotate.

    There are a number of bugs that have been logged against crop/roate in Lr5. The engineering team are currently working to fix these.

  • Rotated images in inDesign

    I have used CS6 on my Mac (10.6.8) to create a 240 page book with several images on most pages. Some of these have been rotated by about 20 degrees or so for effect, and are fine when viewed on inDesign. However, when exported to pdf in high quality mode a grey (un-rotated) box appears around each of the rotated images. It's faint but it is there. I did try rotating in Photoshop first and then creating a clipping path, which I have done for other images but this appears compromised by the rotation also. Grouping a number of images before rotating, as I have done on the cover, also seems to cause a particular problem, with the crop then coming in at an angle also. Even if you then ungroup these, the program seems to remember they were grouped before and still refuses to do a vertical crop, though it behaves ok with the rotated image before it is grouped. Drop Shadows on the title text appear VERY dull on my screen when viewed in the high-quality pdf mode also, though a friend viewing the same file on his computer does not get this effect. I think I can work round most of these, but the grey boxes are a real issue.
    Thanks
    Les Brown

    Hi Peter
    interesting. I was just clicking on the file, so I think it was Apple preview. However, if I select Acrobat 10.1.1 the image looks good against a white background (my main problem.) Does this mean the file is OK to send for printing in this form? I note that for the cover image (blue background) the drop shadows are still very dull and there is still a slight colour issue with the rotated image.
    Thanks
    Les

  • Rotating images in separate htm document (DW CS4)

    Hi all,
    A few questions:
    1. I created a rotating images htm document by using the swap image function and then changing the code a bit (found this on internet). This works just fine on my PC (LiveView) and the htm document is switching between 3 images. I have placed the document in the images folder. However, when uploaded it doesnt work:
    http://www.competenciagroup.com/images/RotatingImages.htm
    2. If i get this htm document to work on the net I would like to input the htm document with the rotating images into the heading of my main document:
    http://www.competenciagroup.com/ColombiaTravel/index.html
    (just above the menu)
    I could not though figure out how to input the htm document into the existing html document.
    Anybody have any clue on the 2 questions above?
    Thanks in advance,
    Ingvar Malde

    I know plenty of people run into the issue of not being able to see their images while in design view, but mine is the exact opposite.
    My images show up as a tiny blue question mark box in Live View... As well as when I preview it in a browser localy on my machine.
    I think I know why it might be happening but dont know how to fix it...
    When I insert an image DW codes it as such:
    <img src="/images/madintro.jpg" width="470" height="267" />
    The problem seems to lie in DW adding the "/" in front of "images"
    when I manually go in and take out the "/" the image shows magically shows up as it should.
    Why has dreamweaver suddenly defaulted to making bad code? what did I do to cause this issue? And obviously how can I change it back to work again and make the image show in my DW workspace?
    Yes, the slash is exactly the problem. That is known as a Site-root relative link.These types of link are good to use in Templates because they are always the same. They don't need to be "fixed' when you generate a page from your Template into a different folder.
    The downside of using Site-root reltive links, is that you can't access the files locally. You must get the page from a web server. One exception to that is using Preview in Browser (PIB) "Temp" files.
    Read this Tech Note about setting up a Testing Server so you can see these files in Live View and PIB:
    http://blogs.adobe.com/dreamweaver/2008/12/live_view_and_siteroot_relativ.html
    If you want to switch back to using Document relative links, then setthe Relative to: field to be "Document" in the "Browse for file" dialog (folder button next to Link field in PI). This setting is sticky, so all future link will use the same setting.
    Hope this helps,
    Randy

  • Corrupt Rotated Images

    Hi
    I have made some low res scans of 35mm trannies for reference on a project that I'm working on. They are 16 bit and just over 2mb in size. The ones that have been shot in portrait format have been rotated either in Bridge or Photoshop CS3. I've imported these low res scans into Aperture and some of the rotated images display corrupted, the thumbnails in the browser are fine, it's only in the viewer that I get the problem. It only happens to the portrait images that I've rotated and not all of them. I've exported them from Aperture as TIFFs and they display fine in Photoshop.
    You can see an example of the problem here:
    <http://www.food-garden-features.co.uk/aperture/Grab.jpg>
    Can anyone shed some light on this problem?
    Thanks
    Colin.

    Hi Matt
    I'm really sorry about the delay in getting back to you, I've had two cookbooks to finish off and the project with this problem is a personal one so it has been put on the back burner for the time being.
    I don't think my problem is the same as the Adobe "Unsupported Image Format" problem, but I have found a way around it. I was hoping that Aperture 2 would make a miracle cure, but it didn't. I tried going back to Bridge and rotating the problem images back to landscape format (it was only some portrait images that were causing me trouble). this made no difference what so ever. I then tried opening them in Photoshop CS3 and rotating them back to landscape, and saving them. This seemed to do the trick! I didn't even have to re import them into Aperture, I'm not sure if this is because they are referenced files. All I have to do in Aperture is rotate them back to portrait format.
    Thanks to both of you for your ideas.
    Cheers
    Colin.

  • Rotated Images

    When I download a picture to Desktop it transfers the picture to a folder called Rotated Images no matter which ISP I am using. It also happen if I drop an image /picture onto the desktop: it sits there apx 3 seconds then creates a Rotated Images folder & the picture is there rotated 90 degrees.
    I have tried deleting the folder to Trash, emptying the Trash, and Restart. Same thing happens. Although there is no Rotated Images folder on the Desktop, as soon as I drop any image on the Desktop it creates an Rotated Images folder and the picture goes in there and rotates 90 degrees. It seemed to suddenly start. I don't believe I installed any app that would cause it to happen (I hadn't installed an app at the time it started).
    I don't know if it was 'spammed' to my iMac -possibly?
    When I use Spotlight it doesn't find Rotated Images except for the newly created folder on the Desktop.
    Has anyone encountered this problem? Has anyone found a solution? It is confusing and annoying. I have to add it to iPhoto then rotate it and Revert to Original rotates back.
    The work/around is to Rotate & Save in Photoshop, then Import to iPhoto. Bummer.
    Thank you.

    I meant to ask: Has anyone encountered this problem? Has anyone found a solution? It is confusing and annoying. I have to add it to iPhoto then rotate it and Revert to Original rotates back.
    The work/around is to Rotate & Save in Photoshop, then Import to iPhoto. Bummer.
    Thank you.

  • Rotate images DURING import

    To be able to rotate images DURING import would be a nice feature. I can do this with Apple's Image Capture. They are imported wih the rotation I have requested, and this show in the icons too.
    I like popping a folder open and view my images in icon view. I don't have to open a program at all. It's quick and efficent way to view my images, but also the orientation is correct right from the beginning with the original. Maybe one more step in the import process, for those of us who don't mind it, BUT it's also one more step I DON"T have to do in Lightroom, Photoshop, or any other program. And the rotataion in Lightroom are temporary to the eye anyway.
    This is good feature/option to add to the import. Lightroom ROCKS. It just elimanted a multi-step, multi-software import process. Almost. The "rotate during import" feature would seal the deal. It's a big deal to me. Like the Apple Image Capture, you could place rotation icons on each image in the preview window. If you added that, man, solid gold!
    thanks,
    Craig

    DW Harrison:
    Sure, I get that, but I can understand how non-destructive editing is useful in image adjustments where later you may regret having added too much saturation in the reds, so you're glad you can go back to the original. But who wants a portrait image rotated in landscape orientation EVER? It's a personal preference, and, no, not a priority in my opinion.
    Ian:
    You may think your post was enlightening, but, perhaps to someone else. Surely not me. I've always known what the 'real cause' is -- some software, i.e. WEB BROWSWERS, ignore the EXIF tag. Hence, my question was more of a philosophical one: why have portrait images rotated sideways, only to have aware applications ON-THE-FLY rotate them according to the EXIF tag? Why not just have the original file re-written in different dimensions?
    For that matter, I specifically spelled out 'why can't... [the file be] rewritten from 800x600 to 600x800'. Hence I find your response 'They will be if the rotation tag is set in the camera' pretty darn irrelevant. No, they WON'T be rewritten rotated. Only by Graphic Converter if you have the option selected, or other applications that don't come to mind right now.

  • Rotating Image With Reflections

    A few years back I bought a manual for Director 6.0. In the
    back of the manual there was a demo disc showing some samples of
    other people's work. One of the samples was called Big Top. It was
    a totating logo in shinny gold, and as it rotated, you would see
    reflections of objects and light on the surface. At one Time I
    asked how it was done, and was told that an ap called RayDream
    Designer could do it. I was told that in that ap, you could draw a
    3D room, with the four walls, floor and ceiling, and when you
    placed an object in the center of the room and rotated it, you
    would end up with a rotating image with the reflection from the
    walls. I never tried it, and long ago RayDream Designer stopped
    being supported. Recently, I was told that the same thing could be
    done with Photoshop or Flash, but I have not figured out how it is
    done. What I want to do, is create a 3D image of a logo in gold,
    chrome, or somethign reflective, and have it rotate with the
    reflections as it rotates. I have seen similar thing on TV
    commercials, but I think I need a little help on figuring out how
    this is done.

    A few years back I bought a manual for Director 6.0. In the
    back of the manual there was a demo disc showing some samples of
    other people's work. One of the samples was called Big Top. It was
    a totating logo in shinny gold, and as it rotated, you would see
    reflections of objects and light on the surface. At one Time I
    asked how it was done, and was told that an ap called RayDream
    Designer could do it. I was told that in that ap, you could draw a
    3D room, with the four walls, floor and ceiling, and when you
    placed an object in the center of the room and rotated it, you
    would end up with a rotating image with the reflection from the
    walls. I never tried it, and long ago RayDream Designer stopped
    being supported. Recently, I was told that the same thing could be
    done with Photoshop or Flash, but I have not figured out how it is
    done. What I want to do, is create a 3D image of a logo in gold,
    chrome, or somethign reflective, and have it rotate with the
    reflections as it rotates. I have seen similar thing on TV
    commercials, but I think I need a little help on figuring out how
    this is done.

  • My Rotated Images Do Not Save.

    I just processed my entire photography collection with Bridge. I rotated many of the photos. But now, as I'm looking at the folders in Windows Explorer, I notice that none of the images appear as being rotated.
    After reading the product support for rotating images in Bridge: "Rotating does not affect the image data; however, rotating an image in Adobe Bridge may rotate the image view in the native application as well."
    This is bad. Very bad. I do not want to go through ALL of my photos again and re-rotate them in another app. Is there any way for the rotations I made in Bridge to be saved to the image data?

    This is from Adobe:  Although Bridge allows you to quickly and easily rotate images, the rotation doesn't really happen until you open the file up in a graphics application such as Adobe Photoshop® or Adobe Illustrator® and save it in it's rotated state. So if you rotated an image in Bridge and then dragged it into Adobe InDesign®, it would appear with its original orientation.
    So with the above in mind seems like you can use the Image Processor in Bridge to open images in PhotoShop then save it.  It should be then rotated.    Since you are not adding anything the non-rotated images would remain unrotated so you don't have to know which ones were rotated and which ones were not.
    Or am I out to lunch?

  • Rotated Images? WHAT THE FRACK?!

    I don't understand this. Whenever I take an image, and place it on the desktop (Drag/Drop, or from Safari 'Save to Desktop'), it disappears off the desktop, and a folder is created called 'Rotated Images', and it's rotated. Even if I make it rotated back the way it's supposed to be through Preview, once it's back on the desktop, it auto rotates back and goes into the newly automatically created folder..
    How do I disable this feature?

    Try this in another browser and see if this still happening.
    Firefox http://www.mozilla.com/en-US/
    Photoscene
    PowerBook G4 17 inch, PowerBook G4 12 inch   Mac OS X (10.4.7)   Tiger/Panther

  • Rotating images

    Hello,
    I have created a website which displays an image and have added a button which when is clicked will rotate the image. The problem I am having is that the page seems to be loading before the image is updated and the non rotated image is still displayed on the page. I don't think this is a caching problem because I tried appending a unique name to the image source for each page refresh and the old image still appears.
    The reason why I think that the page is refreshed before the image updated is because if I have a popup window to display before the page is refreshed and let it sit there for a short period of time the page refreshes correctly displaying the rotated image.
    Is there any way to halt the browser from refreshing before my java class is completely done writing out the image? My java class that does the rotation is called from a javaservlet if that helps...
    Thanks,
    -- George

    Ok, thats a little more info.
    Funny, your the first person I ever heard of that is using velocity rather than a real web langauge.
    Anyway, I think what your doing is confusing where and when what code should executed. Its a tremendously common misunderstanding.
    If you use a java servlet to get your image names, your going to have to have the page (or part of the page in a frame, iframe or somthing equally lame ) reload.
    If you want your page to have a different image load when somone hits a new link, then you can worry about vm code and getting servlet names, and you *wont use javascript.
    If you want to have an image appear when you highlight a link or have time pass or somthing, then you will use javascript completely to do this, and you will only use VM to write the names and populate the javascript array.
    ~kullgen

  • OCR without rotating image

    In Acrobat 9 I can't find any setting to disable image automatic rotating of recognized documments by OCR.
    I have usually very exact position of originals and I don't need this teature.
    Besides, after this rotating by 0,0... degrees, Acrobat ruins image and add some linear deformates.
    Please, help me how to make OCR without rotate image.

    I am assuming that when you open your photo in CS5 that the layer is automatically locked?
    If yes, then you can right click that layer and there is an option at the top called "Layer From Background...".
    This unlocks that layer without having to duplicate it.
    To rotate an image without changing dimensions of the actual photo?  When you rotate an image the width and the height dimensions are switch depending on how you rotate.
    Under Edit>>Transform, you will get 4 different options to rotate.
    The rotate at the top is to manually rotate the image.  The other rotates are presets which might be what your after.

  • Rotated image/frame issue

    I'm using Frame 8 and Acrobat 3D 8 and having issues with rotated images or frames. When printing to paper, the graphics are fine, but if I print to PDF, the top of the image is cropped. Text lines are visible but the top inch of the imported graphic is not. I wonder if this is a setting in Acrobat or a Frame issue.
    Any help would be appreciated.
    pat

    > I have tried using jpg
    Jpeg is a particularly bad format for screen captures. Tiff would be
    better; I don't know enough about png. Ages ago, in a much earlier
    version, I had trouble with large bitmaps printing properly in Frame
    (not exactly the same problem - they were printing fine for about 3/4 of
    the page and then it printed all "bunched up" and the bottom 1/4 didn't
    print). I started using EPS (bitmap eps, saved from Photoshop). This not
    only solved the problem, it had the added benefit of displaying much
    faster (because the eps files had only a low-res preview, so Frame
    didn't hesitate on each graphic to read in the whole file).
    I'd be happy to look at one of your pngs, see if it works here, but I'm
    on Frame 7 (just ordered Frame 9), so I'm not sure if my results would
    be relevant. Zip and send to kbenson at pegtype dot com
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

Maybe you are looking for

  • Strange artifacts in video

    Hello everyone. I am having a strange problem which my Art Director can't seem to help me with. I'm working on a corporate video and at certain points in the video I want to transition to another scene using a insert wipe (starting from the upper lef

  • DHCP Pool option question

    adm-r1#sh run | sec dhcp ip dhcp relay information option ip dhcp bootp ignore ip dhcp excluded-address 10.1.5.1 10.1.5.99 ip dhcp excluded-address 10.1.5.200 10.1.5.254 ip dhcp pool XXXXXXXXXXXXXXXXXXXX  network 10.1.5.0 255.255.255.0  default-route

  • I think i messed up my mic

    I just got my zen micro so i took it home and got all excited, so i plugged the micro straight into the pc, then i looked at the instructions and it said WARNING:do not insert the zen micro before installing software! so i just installed the software

  • Dual/ multi monitor

    I would like to see more options for dual monitor setups with Win7.   Here is my situation.  My primary monitor is 4:3 and my secondary monitor is widescreen.  I use the primary monitor for opening windows explorer and my secondary monitor for viewin

  • Re: how to make a formal complaint

    Hi Having gone round and round with so called customer services.  I too would like to make formal complaint.  Email would be easier but the link  provided by another forum member brings up a page that doesn't seem to work?? Does anyone know of one? W