Win XP: LZW compression in Elements 4

If I save a scanned slide (48 bit) as a tif file with LZW compression it grows by approx 15% BIGGER - 64.8Mb to 74.6Mb.
If I do the same with a 24 bit scan it is reduced to a third of its original size. Any idea why LZW doesn't seem to work with 48 bit data or how to correct it?

I know what AD means, I just don't understand what you want.
If you want to bind the Mac to a Windows 2000 Server you will need to use Directory Access (/Applications/Utilities/Directory Access) and then enable Active Directory in the services list. After that press the Configure… button, enter the server's info and press Bind… I have never done this (although I will be doing it soon because my school has a Windows 2003 Server and I want to use my MacBook in my classes) so, if someone that has something to add/change, please do.

Similar Messages

  • Is there a way to do an automatic LZW Compression of all existing images?

    Hi,
         I have spent quite some time trying various ways to compress entire folders of Canon images,  imported with the Canon Utility. Although they are TIFF,  seems some software utilities don't even offer "LZW compression". That would save half the disk space when the original TIFF files are all over 45 MB (Canon 50D). Certainly the Canon utility does not - probably because they didn't want to pay the TIF license fee.
         It would be nice if there was a CS5 script command to automatically replace a folder, or more, with LZW compressed images. In fact, there does not even seem to be a way to change the PS CS5 "General Presets" to always use LZW compression of files, if that is desired - it always reverts to NONE in the SAVE AS command. Haven't found any info in Help,  on where to change this.
         I did find some success using the "File->Scripts->Image Processing" function. However, for some strange reason, even though I specified that the LZW file be "SAVE in SAME Location", as the selected folder name - it still creates duplicate TIFF (LZW) images, properly compressed, in a sub folder named "TIF". Not only is this incorrect, but how did it choose that default name? Haven't found an explanation in Help.  That isn't all bad, just inconvenient, since this then requires extra work to copy folders back to the original image folder, delete the new TIFF subfolder, along with the usual warnings.
         I realize that all this inconvenience is a safeguard against accidental over writes, but I would like to have the option. Auto Compresion Conversion of files and folders should be a standard capability, as well as a standard Preset option.
    Does anybody know of a safe and convenient program to Batch Process folders to automatically compress image files - in place, without opening each image?
    Thanks,
    Joe

    Thanks for this lead - absolutely a gold find!
        I tried both of them, and I found the second script - " Picture
    Processor III" - better suited to solving my problem.
        While they both can do the same thing - "LZW compressing" an
    uncompressed set of image files" - Dr. Brown's version actually creates a
    "duplicate" ... copy(1) file - in addition to the existing uncompressed file
    , in the same directory (if selected). ,  just as PS CS5 does with an
    unwanted & unexpected dummy folder. This may be a safer workflow, but just
    adds more work in later going through all the subdirectories (if specified),
    just to find, select, and erase all the originals after the process.
        PP-3, on the other hand, uses a temp file for compression, and then
    replaces the original. The only quibbles is that PP3 doesn't keep the
    "original creation date", which would have been useful in maintaining
    records and to distinguish between images in the directory list.
    Furthermore, unlike Dr. Brown's, it doesn't provide a "prefix/suffix" file
    renaming option box, (when not replacing the original file) - but that
    wasn't my original concern.
        Glad you provided links to both - I'll use PP3 most often, but if I need
    to rename files, DB is a very good alternative, for that situation. I
    particularly like the "ALL File Types" option, since that allows the easy
    conversion of all camera types (e.g. Canon & Nikon) RAW files to LZW TIF,
    in just one pass. That saves a lot of work.
    Kudos to the script creator!
    Joe

  • Saving TIFF with LZW compression results in larger file size.

    I know this never used to be the case with previous versions of Photoshop, but since I upgraded to CS5.1, when I save files with LZW compression checked, the resultant file size is higher than if I uncheck the box.
    For example one file with LZW compression is 56.3MB, and without it is 47.8mb
    Is it just me, or have Adobe got their code mixed up?
    Edit: This appears to only affect 16-bit images, with 8-bit images, LZW works as expected.
    Message was edited by: Toundy. Added info about 16-bit images.

    From the above link:
    Before you Post:
    Firstly - have you really checked the 'help' option in the program? Many problems can be solved far faster by getting the answer from the Help File.
    Secondly - check the Forum FAQ folder. There's advice there on many common questions and problems.
    Thirdly - use the 'Knowledgebase Search' option near the top of this page. Or you can click here to go to the relevant page and enter your search words there - or just search for 'Photoshop' there to see summaries of all the relevant items.
    Fourthly, try searching this forum. It may well be your question has already been asked and answered.The archives are full of useful advice. Please remember to perform a search to see if your question has previously been answered. You can click here to search the Photoshop-for-Macintosh forum.
    Lastly, Check whether you are entitled to Adobe technical support -  click here for a summary of support options.
    If you can't find the answer by any of those methods, do post your question in the relevant forum here.

  • Do photos tagged in Elements 6 (Win) import accurately via Bridge (Elements 8 - Mac)

    I have thousands of photos that I have managed using Adobe Elements (Win) and am now moving to a Mac.   Will Adobe Elements 8 (Mac) using the included Adobe Bridge properly carry-over all the tags that I have assigned to the photos over the years.   I have 'written' these Tags & keyword properties' to the files using the function in Elements 6.

    There are usually not many Elements users around here. But the easiest way
    to find out is to make a copy of a randomly chosen amount of files from
    different data and try those copies your self in Bridge to see if they
    reflect all the data you want.
    Will Adobe Elements 8 (Mac) using the included Adobe Bridge properly
    carry-over all the tags that I have assigned to the photos over the years.

  • Simple LZW Compression Algorithm

    I have to write a very simple LZW algorithm based on the following psuedocode as part of my final year thesis.
    1. word=" ";
    2. while not end_of_file
    x=read_next_character;
    if word + x is in the dictionary
    word = word + x
    else
    output the dictionary index for word;
    add word + x to the dictionary;
    word = x;
    3. end_of_file now true;
    output the dictionary number for word;
    I have implemented this in Java (code follows)
    import java.io.*;
    import java.util.*;
    import java.lang.*;
    public class LZWencode
         public static void main (String [] args) throws IOException
              String original = "ACBBAAC";
              String compressed = "";
              String word = "";
              char x;
              Vector dictionary = new Vector ();
              BufferedReader in = new BufferedReader(new FileReader("dictionary.txt"));
              String t=in.readLine();
              while (t!=null)
                   dictionary.addElement(t);
                   t=in.readLine();
              for(int i=0;i<original.length();i++)
                   x=original.charAt(i);
                   for(int k=1;k<=dictionary.size();k++)
                        if((word + x).equals(dictionary.elementAt(k)))
                             word = word + x;
                             System.out.println(word);
                        else
                             compressed = compressed + dictionary.indexOf(word) ;
                             dictionary.add(word + x);
                             System.out.println(dictionary.indexOf(word+x));
                             word = x + "";
                   break;
              System.out.println(compressed);
    }but it seems to skip the if word is in dictionary bit and go straight to else each time through the for loop. The dictionary is a .txt file with three entries A, B
    and C which is read into a vector which is then updated. The vector is updated with new dictionary entries but the program can't seem to find them!
    Sorry for the poor description of my problem - hope someone can help!

    Thanks a lot. Works absolutly fine except for one small change. When it gets to the end of file it misses out the code for the last word. I've managed to fix this by making a slight change to include a clause when the word is in the dictionary and is at the end of the file - if(i==(original.length()-1))..............
    import java.io.*;
    import java.util.*;
    import java.lang.*;
    public class LZWencode
         public static void main (String [] args) throws IOException
              String original = "ACBBAAC";
              String compressed = "";
              String word = "";
              char x;
              Vector dictionary = new Vector();
              BufferedReader in =     new BufferedReader(new FileReader("dictionary.txt"));
              String t = in.readLine();
              while (t != null)
                   dictionary.addElement(t);
                   t = in.readLine();
              for (int i = 0; i < original.length(); i++)
                   x = original.charAt(i);
                   boolean found = false;
                   for (int k = 0; k < dictionary.size(); k++)
                        if ((word + x).equals(dictionary.elementAt(k)))
                             word = word + x;
                             found = true;
                             if(i==(original.length()-1))
                                  compressed = compressed + dictionary.indexOf(word);
                             break;
                   if (!found)
                        compressed = compressed + dictionary.indexOf(word);
                        dictionary.add(word + x);
                        word = x + "";
              System.out.println(compressed);
    }

  • LZW compression in PL/SQL?

    Anyone done it or know of it having been done and free?

    I am almost there in my own implementation (maybe 60-65%). Setting up temporary blobs is just the pain to do manually, but I have created test blobs anyway. Basically I set up a table of integers to act as a byte array, both for input and output. Read and convert each raw byte into the corresponding index of the byte array, then dictionary compress (lzw) using a table as (CODE, SYMBOL_1, SYMBOL_2, DESC) Desc is really just for visually seeing the resultant dictionary entry in the corresponding ascii chars.
    It is for small file segments, not entire files. Very specific file segments.

  • Downloading Mac version and Getting Win version of paid for elements 10

    I tried to download Elemets 10 - paid for not trial, and selected the win/mac download option.  The file that downloaded is a win exe file.  What now?  Why did I get a win version when I want a mac version and how do I fix it please?

    The link provided above will take you to the steps to open your account and access the downloads you have available.  This will allow you to verify that you do not have the Mac download available to you within your account already.
    Alternately you can contact our support team who can look up your order and verify you purchased the correct version of the software.  For the best assistance, I recommend our chat support at http://adobe.ly/yxj0t6.  Our chat representatives can provide a personalized experience to resolve the issue you have described.

  • LZW tif compression?

    Is LZW compression an option with 1.1 when saving a raw file a 8 or 16 bit tif?

    I take it you mean "Export Version" as ... I do not believe so. I double checked by searching the user guide, but nothing about LZW except the glossary. The save TIF as 50% of original is a physical reduction, not lossless compression.

  • Elements 3.0 cannot save lighting effects styles

    I am running a PIII 1 gig with 2 gig of memory Running win 2000Pro. I have Elements 3.0 installed and I have been using the lighting effects filter, but I have noticed that when the lighting effects box comes up there are no styles listed. Also I cannot save any lighting effects styles. When I try to save a Style I get the following error message:
    'An error occured while trying to save the style'
    I do not use any file compression on any of the drives or folder on my system.
    Any tips would be greatly appreciated...
    One more thing there are lighting effects styles on the hard drive. I found them in the Plugins folder under Filters/Lighing Styles.
    Don

    Thanks for the link to the FAQ Terri.
    I checked and the proper settings were already present, but I reset them anyway. (couldn't hurt). Re-booted and cleared the preference files again. I still cannot see the lighting styles that are on the computer and I still cannot save the ones I build.
    I have also tried and Un-install and re-install, but there must have been some files that were not cleared because after the re-install some of my settings came back. I will have to try again and this time I will make sure nothing is left after the Un-install.
    I am very please with the help I have recieved on the Forum.. It always pays to have more than one mind looking for solutions.
    Thanks again
    Don

  • Gif decoding/LZW troubles

    Hi. As a project, I'm trying to write a GIF parser that takes a file as an input and displays the image as output. I've been going pretty steadily through the GIF documentation and etc. etc. I've been looking at "http://en.wikipedia.org/wiki/GIF#Example_.gif_file" and I've recreated the image file that wikipedia gives the bytes for.
    Now, here's my problem: the raster data that the GIF contains doesn't make sense. I'm using a very simple 3x5 GIF image that has one black pixel in the top corner and one black pixel directly below and to the left.
    http://i68.photobucket.com/albums/i1/hellochar/exampleshow.jpg
    For those of you unfamiliar with GIF, the image data is stored using the LZW compression algorithm, which saves space by compressing multiple pixels into single entries. The encoded data is "00 51 FC 1B 28 70 A0 C1 83 01 01". Taking a look at the actual bits, the data is (underscores seperate the bytes)
    00000000_01010001_11111100_00011011_00101000_01110000_10100000_11000001_10000011 _00000001_00000001
    I'm supposed to be reading 9 bit codes, as per the GIF specification. Each code corresponds to a list of pixels to be output. For instance, if I read the hex code "0x028", that translates to color 40, which maps to a black pixel. So I'd output a black pixel. The map starts with predefined mappings for codes 0-255, and special treatment for codes 256 and 257. More mappings are created as you read through the data. If I'm reading 9 bits per code, the data looks like this (underscores seperate the 9 bit codes)
    000000000_101000111_111100000_110110010_100001110_000101000_001100000_110000011_0000 00010_0000001
    The first code I read is 0, which is at the start of every GIF raster data stream. The next code I read is "101000111", which is code #327. That doesn't make sense though, because I don't have a mapping for code #327 yet. #327 doesn't exist. What is going on? Also, there's that last 7 bits that I'm not sure what to do about.
    I wrote my own LZW compressor to help me, and plugged in the pixels to see the data that came out of it. My compressor uses the exact same algorithm that is described by the various GIF documentations I have looked at
    http://www.martinreddy.net/gfx/2d/GIF-comp.txt
    http://en.wikipedia.org/wiki/LZW
    http://www.dspguide.com/ch27/5.htm
    The coded raster data that was outputted was different than the one saved in the GIF file;
    Bits found in GIF file
    00000000010100011111110000011011001010000 11100001010000011000001100000110000000100000001
    Bits given by algorithm
    1000000000001010000111111111000000111000 00010100000011100000110100000111100000001
    They're even of different lengths sizes!
    If I plugged the bits given by the algorithm into my GIF parser, it decoded the data with no problem. It almost seems like the GIF's data was encoded using a different algorithm! (I just used Microsoft Paint to make the GIF). But there's no way that's possible; I know that there's something wrong with the decompressor, even though I followed the documentation to the letter.
    Here's the code for the decompressor:
         void readImageData(InputStream fio, int{} table) throws Exception {
              println("Reading image data...");
              curBlock = readBlock(fio); //reads the raster data.
              dictionary = new LinkedList<List<Integer>>();
              for (int i : table) {
                   List<Integer> l = new LinkedList<Integer>();
                   l.add(i);
                   dictionary.add(l);
              dictionary.add(new LinkedList()); //placeholder for clr
              dictionary.add(new LinkedList()); //placeholder for end
              println("Starting code size: " + codeSize);
              int oldCode = readBits(codeSize);
              output(dictionary.get(oldCode));
              int curCode;
              println();
              while (index < curBlock.length) {
                   curCode = readBits(codeSize);
                   List<Integer> string;
                   int c = 0;
                   if(curCode < dictionary.size()) {
                        print("Code exists -- ");
                        string = dictionary.get(curCode);
                   else {
                        print("Code doesn't exist -- ");
                        string = dictionary.get(oldCode);                                                        //line 177
                        string.add(c); //this shouldn't happen on the first run.
                   output(string);
                   c = string.get(0);
                   List<Integer> entry = new LinkedList(dictionary.get(oldCode));
                   entry.add(c);
                   addToDictionary(entry);
                   oldCode = curCode;
                   println();
              loop();
         byte[] curBlock;
         List<List<Integer>> dictionary;
         int codeSize;
         void addToDictionary(List<Integer> str) {
              dictionary.add(str);
              if(dictionary.size() > pow(2, codeSize)) codeSize++;
         Here's the output of the program:
    Reading image data...
    Reading block of size 11
    Starting code size: 9
    Read code 0(9) -- output (0, 0, 0) --
    Read code 327(9) -- Code doesn't exist -- output (0, 0, 0) -- output (0, 0, 0) --
    Read code 480(9) -- Code doesn't exist --
    java.lang.IndexOutOfBoundsException: Index: 327, Size: 259
    at java.util.LinkedList.entry(LinkedList.java:365)
    at java.util.LinkedList.get(LinkedList.java:315)
    at gifparser.Main.readImageData(Main.java:177)
    at gifparser.Main.open(Main.java:108)
    I know this is all quite convoluted, but I'm thoroughly confused at this point. What is going on?!

    It takes effort to answer questions; you're not the only person asking for help. But if you have asked the same question in other forums, someone may have already answered you there. Yet we're still working here to answer your question, wasting our time. You don't expect us to monitor every forum you might have asked your question, do you?
    For these reasons, the rule is: no cross-posting.

  • Premiere Elements 11 shut down while starting; without error message

    hello everybody,
    pe11 worked well at my Laptop.
    Since a week it always shut down while starting it.
    No error message!
    I already reinstalled it, tried to start with admin rights, but it doesn't work.
    Thanks for your answers!
    Win 7 64bit

    Matze S
    Premiere Elements 11 on Windows 7 64 bit.
    Before a week ago, how long had you been working with Premiere Elements 11 on Windows 7 64 bit without problems?
    Does the problem exist with and without the antivirus and firewall(s) disabled?
    Is your video card/graphics card up to date according to the web site of the manufacturer of the card?
    Do you have the latest version of QuickTime installed on that computer with Premiere Elements 11?
    Any new programs, 3rd party plug-ins and codecs, installed?
    Where are the Scratch Disks directed and how much free space is at those designated locations? Any pile ups
    of preview files in the Adobe Premiere Elements Preview Files Folder or conformed audio files in the Media Cache
    Files Folder.
    Let us get the classic deletion of the Adobe Premiere Elements Prefs file out of the way.
    Local Disk C
    Users
    Owner
    AppData
    Roaming
    Adobe
    Premiere Elements
    11.0
    and in the 11.0 Folder is the Adobe Premiere Elements Prefs file that you delete. If that does not work, then delete the whole 11.0 Folder
    in which it exists. Be sure to be working with Show Hidden Files, Folders, and Drives active so that you can see the complete path cited.
    Depending on how things are going, you might also include right clicking the desktop icon for the program, selecting and applying Run As
    Administrator.
    Let us work through the above and then, based on your results, we can decide what next if necessary.
    Thank you.
    ATR

  • Clarification using Elements 7 and Sony DVD architect please ..

    Hello all,
    I am close to finishing my 2nd set of "How To" instructional DVD's.
    I have been reviewing the required steps in order to create a menu with "Sony DVD Architect."
    I see in a past discussion that it was mentioned to:
    “ .. Export [your Elements project] as an MPEG2 file without DVD markers, then adding the DVD markers and menu in either NERO or Sony DVD Architect Studio .. Note if you export MPEG2 you need to use the smart-rendering in the applications to ensure your video isn't re-rendered ... resulting in a slight quality hit.”
    Is this still a good way to do this?  Would it be better/worse to export the Premiere Elements
    project as an ".avi" file and pull that ".avi" file into Sony DVD Architect?  Then, render with Sony DVD Architect?
    Thanks!
    --Tom Nickel

    Steve,
    Thank you very much for your prompt reply!
    Yes, I wasn't concered about markers, I figured that I'd create all of that in DVD Architect.
    But, you've raised an issue that I had not thought about!
    My DVD will be about 1 hour, 25 minutes.
    Of course, I did expect a small loss in quality as some compression will be required in order for the material to fit on a standard DVD.
    So, where sould the compression be done?  I know that Elements will compress down to whatever length is necessary
    (To render, a selection something to the order of: "fit contents to disk").
    Even if I "pre-compress" in Elements to fit on a standard DVD will DVD Architect re-compress the program material?
    Thanks again,
    --Tom Nickel

  • Restoring wine menu in KDE [SOLVED]

    Hi, i'm using KDE 4.4.1 and wine. Before i decided to clean up mess in KDE menu, all wine installed menu items were under "lost and found"
    As http://wiki.archlinux.org/index.php/Win … Fix.5B1.5D states, i have edited /etc/xdg/menus/kde-applications.menu
    Now i had Wine menu, but i didn't need all items, so i ran kde menu editor, and some items were removed. After relogin, wine menu didn't have "Programs" submenu at all :s. I deleted wine menu from KDE menu
    Now, hot to restore that?
    I figure out that all desktop files created by wine are in /home/bagheera/.local/share/applications/
    In /home/bagheera/.config/menus/ i have several files:
    -rw-r--r-- 1 bagheera users 15647 03-15 12:22 applications-kmenuedit.menu
    -rw-r--r-- 1 bagheera 1000 3527 03-15 13:11 applications.menu
    -rw-r--r-- 1 bagheera users 3527 03-15 13:11 applications.menu~
    -rw-r--r-- 1 bagheera 1000 2349 2008-12-09 applications.menu.undo-10
    -rw-r--r-- 1 bagheera 1000 2418 2008-12-09 applications.menu.undo-11
    -rw-r--r-- 1 bagheera 1000 2492 2008-12-09 applications.menu.undo-12
    -rw-r--r-- 1 bagheera 1000 2571 2008-12-09 applications.menu.undo-13
    -rw-r--r-- 1 bagheera 1000 2647 2008-12-09 applications.menu.undo-14
    -rw-r--r-- 1 bagheera 1000 3358 2009-01-21 applications.menu.undo-15
    -rw-r--r-- 1 bagheera 1000 3373 2009-01-21 applications.menu.undo-16
    drwxr-xr-x 2 bagheera 1000 28672 03-15 12:35 applications-merged
    drwxr-xr-x 2 bagheera 1000 4096 2009-01-20 kde4-applications-merged
    drwxr-xr-x 2 bagheera 1000 4096 03-15 12:43 kde-applications-merged
    -rw-r--r-- 1 bagheera 1000 345 2009-03-20 settings.menu
    Do i need "undo" file, can they be safely removed?
    Witch file contains "wine menu"?
    There is so many files:
    settings.menu
    <!DOCTYPE Menu
    PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
    'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
    <Menu>
    <Name>Desktop</Name>
    <MergeFile type="parent">/etc/xdg/menus/settings.menu</MergeFile>
    <Include>
    <Filename>gnomecc.desktop</Filename>
    </Include>
    <AppDir>/home/bagheera/.local/share/applications</AppDir>
    </Menu>
    applications-kmenuedit.menu
    <!DOCTYPE Menu PUBLIC '-//freedesktop//DTD Menu 1.0//EN' 'http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd'>
    <Menu>
    <Menu>
    <Name>Development</Name>
    <Layout>
    <Merge type="files"/>
    <Filename>pyCrust.desktop</Filename>
    <Merge type="menus"/>
    <Menuname>Web Development</Menuname>
    <Menuname>Translation</Menuname>
    <Menuname>X-KDE-KDevelopIDE</Menuname>
    <Filename>java-monitoring-and-management-console.desktop</Filename>
    <Filename>kde4-akonadiconsole.desktop</Filename>
    <Filename>netbeans.desktop</Filename>
    <Filename>python2.5.desktop</Filename>
    <Filename>kde4-kapptemplate.desktop</Filename>
    <Filename>designer.desktop</Filename>
    <Filename>kde4-kompare.desktop</Filename>
    <Filename>kde4-cervisia.desktop</Filename>
    <Filename>kde4-kcachegrind.desktop</Filename>
    <Filename>java-visualvm.desktop</Filename>
    <Filename>kde4-umbrello.desktop</Filename>
    <Filename>kde4-kuiviewer.desktop</Filename>
    <Filename>assistant.desktop</Filename>
    <Filename>kde4-kbugbuster.desktop</Filename>
    <Filename>geany.desktop</Filename>
    </Layout>
    <Include>
    <Filename>pyCrust.desktop</Filename>
    </Include>
    </Menu>
    <Menu>
    <Name>Applications</Name>
    <Exclude>
    <Filename>wine-Programy-4shared Service-4shared Uploader.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-AC3Filter.desktop</Filename>
    <Filename>wine-Programy-AutoCAD R14-AutoCAD R14.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Tools-Xvid StatsReader.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoHotkey.desktop</Filename>
    <Filename>wine-Programy-AutoCAD R14-AutoCAD Readme.desktop</Filename>
    <Filename>wine-Programy-Larian Studios-Beyond Divinity Demo-Configuration.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-Cyberlink MPEG-2 decoder.desktop</Filename>
    <Filename>wine-Programy-DeliPlayer-DeliPlayer.desktop</Filename>
    <Filename>wine-Programy-Miranda IM-Database Tool.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Documentation.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-DirectVobSub.desktop</Filename>
    <Filename>wine-Programy-AviSynth 2.5-Folder wtyczek.desktop</Filename>
    <Filename>wine-Programy-Atmel AVR Tools-AVR QTouch Studio.desktop</Filename>
    <Filename>wine-Programy-Audacity.desktop</Filename>
    <Filename>wine-Programy-AviSynth 2.5-Angielska dokumentacja.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoIt3 Window Spy.desktop</Filename>
    <Filename>wine-Programy-SubEdit-Player-SubEdit Pomoc.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoHotkey Help File.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoScriptWriter (recorder).desktop</Filename>
    <Filename>wine-Programy-Atmel AVR Tools-AVR Battery Studio.desktop</Filename>
    <Filename>wine-Programy-Borland Delphi 7-Help-Error Messages & Warnings.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Download Manager.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-FDM remote control server.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Download Manager on the Web.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Upload Manager.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Instalacja.desktop</Filename>
    <Filename>wine-Programy-MySQL Oracle Import, Export & Convert Software-MySQL Oracle Import, Export & Convert Software.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Pierwsze kroki.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Pomoc online.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Pomoc techniczna offline.desktop</Filename>
    <Filename>wine-Programy-Unreal-Play Unreal.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Poradnik do gry (trzynasty schron).desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Readme.desktop</Filename>
    <Filename>wine-Programy-Unreal-Information-Release Notes.desktop</Filename>
    <Filename>oraclexe-runsql.desktop</Filename>
    <Filename>alacarte-made.desktop</Filename>
    <Filename>Shareaza.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Słownik Fallout.desktop</Filename>
    <Filename>oraclexe-startdb.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Szkolna.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Uninstall Free Download Manager.desktop</Filename>
    <Filename>wine-Programy-MySQL Oracle Import, Export & Convert Software-Uninstall MySQL Oracle Import.desktop</Filename>
    <Filename>wine-Programy-Unreal-Unreal Editor.desktop</Filename>
    <Filename>wine-Programy-Unreal-Unreal Safe Mode.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Uruchom grę Fallout.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Usuń grę Fallout.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Usuń WSCAD 5.0.desktop</Filename>
    <Filename>wine-Programy-WIBU-KEY-WIBU-KEY Help (English).desktop</Filename>
    <Filename>wine-WinRAR.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-WSCAD File Viewer.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Przejęcie danych.desktop</Filename>
    <Filename>wine-winecfg.desktop</Filename>
    </Exclude>
    <Include/>
    <Layout>
    <Merge type="files"/>
    <Filename>screensavers-biof.desktop</Filename>
    <Filename>screensavers-busyspheres.desktop</Filename>
    <Filename>screensavers-colorfire.desktop</Filename>
    <Filename>screensavers-cyclone.desktop</Filename>
    <Filename>screensavers-pixelcity.desktop</Filename>
    <Filename>screensavers-drempels.desktop</Filename>
    <Filename>screensavers-euphoria.desktop</Filename>
    <Filename>screensavers-feedback.desktop</Filename>
    <Filename>screensavers-fieldlines.desktop</Filename>
    <Filename>screensavers-flocks.desktop</Filename>
    <Filename>screensavers-flux.desktop</Filename>
    <Filename>screensavers-helios.desktop</Filename>
    <Filename>screensavers-hufo_smoke.desktop</Filename>
    <Filename>screensavers-hufo_tunnel.desktop</Filename>
    <Filename>screensavers-hyperspace.desktop</Filename>
    <Filename>screensavers-lattice.desktop</Filename>
    <Filename>screensavers-lorenz.desktop</Filename>
    <Filename>screensavers-matrixview.desktop</Filename>
    <Filename>screensavers-plasma.desktop</Filename>
    <Filename>screensavers-skyrocket.desktop</Filename>
    <Filename>screensavers-solarwinds.desktop</Filename>
    <Filename>screensavers-spirographx.desktop</Filename>
    <Filename>screensavers-sundancer2.desktop</Filename>
    </Layout>
    </Menu>
    <Menu>
    <Name>.hidden</Name>
    <Include>
    <Filename>wine-Programy-4shared Service-4shared Uploader.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-AC3Filter.desktop</Filename>
    <Filename>wine-Programy-AutoCAD R14-AutoCAD R14.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Tools-Xvid StatsReader.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoHotkey.desktop</Filename>
    <Filename>wine-Programy-AutoCAD R14-AutoCAD Readme.desktop</Filename>
    <Filename>wine-Programy-Larian Studios-Beyond Divinity Demo-Configuration.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-Cyberlink MPEG-2 decoder.desktop</Filename>
    <Filename>wine-Programy-DeliPlayer-DeliPlayer.desktop</Filename>
    <Filename>wine-Programy-Miranda IM-Database Tool.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Documentation.desktop</Filename>
    <Filename>wine-Programy-K-Lite Codec Pack-Configuration-DirectVobSub.desktop</Filename>
    <Filename>wine-Programy-AviSynth 2.5-Folder wtyczek.desktop</Filename>
    <Filename>wine-Programy-Atmel AVR Tools-AVR QTouch Studio.desktop</Filename>
    <Filename>wine-Programy-Audacity.desktop</Filename>
    <Filename>wine-Programy-AviSynth 2.5-Angielska dokumentacja.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoIt3 Window Spy.desktop</Filename>
    <Filename>wine-Programy-SubEdit-Player-SubEdit Pomoc.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoHotkey Help File.desktop</Filename>
    <Filename>wine-Programy-AutoHotkey-AutoScriptWriter (recorder).desktop</Filename>
    <Filename>wine-Programy-Atmel AVR Tools-AVR Battery Studio.desktop</Filename>
    <Filename>wine-Programy-Startup-ST5UNST Uninstaller.desktop</Filename>
    <Filename>wine-Programy-Borland Delphi 7-Help-Error Messages & Warnings.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Download Manager.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-FDM remote control server.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Download Manager on the Web.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Free Upload Manager.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Instalacja.desktop</Filename>
    <Filename>wine-Programy-MySQL Oracle Import, Export & Convert Software-MySQL Oracle Import, Export & Convert Software.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Pierwsze kroki.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Pomoc online.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Pomoc techniczna offline.desktop</Filename>
    <Filename>wine-Programy-Unreal-Play Unreal.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Poradnik do gry (trzynasty schron).desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Readme.desktop</Filename>
    <Filename>wine-Programy-Unreal-Information-Release Notes.desktop</Filename>
    <Filename>oraclexe-runsql.desktop</Filename>
    <Filename>alacarte-made.desktop</Filename>
    <Filename>Shareaza.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Dokumentacja-Słownik Fallout.desktop</Filename>
    <Filename>oraclexe-startdb.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Szkolna.desktop</Filename>
    <Filename>wine-Programy-Free Download Manager-Uninstall Free Download Manager.desktop</Filename>
    <Filename>wine-Programy-MySQL Oracle Import, Export & Convert Software-Uninstall MySQL Oracle Import.desktop</Filename>
    <Filename>wine-Programy-Unreal-Unreal Editor.desktop</Filename>
    <Filename>wine-Programy-Unreal-Unreal Safe Mode.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Uruchom grę Fallout.desktop</Filename>
    <Filename>wine-Programy-Fallout Saga DVD-Fallout-Usuń grę Fallout.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Usuń WSCAD 5.0.desktop</Filename>
    <Filename>wine-Programy-WIBU-KEY-WIBU-KEY Help (English).desktop</Filename>
    <Filename>wine-WinRAR.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-WSCAD File Viewer.desktop</Filename>
    <Filename>wine-Programy-WSCAD 5.0-Przejęcie danych.desktop</Filename>
    </Include>
    </Menu>
    <Menu>
    <Name>wine-wine</Name>
    <Menu>
    <Name>wine-Programy</Name>
    <Layout>
    <Merge type="menus"/>
    <Menuname>wine-Programy-Bulk Rename Utility</Menuname>
    <Menuname>wine-Programy-K-Lite Codec Pack</Menuname>
    <Menuname>wine-Programy-Microsoft Office</Menuname>
    <Menuname>wine-Programy-PowerISO</Menuname>
    <Menuname>wine-Programy-Shareaza</Menuname>
    <Menuname>wine-Programy-Startup</Menuname>
    <Menuname>wine-Programy-TED Notepad</Menuname>
    <Menuname>wine-Programy-WinRAR</Menuname>
    <Menuname>wine-Programy-WinUAE</Menuname>
    <Menuname>wine-Programy-XnView</Menuname>
    <Menuname>wine-Programy-Xvid</Menuname>
    <Merge type="files"/>
    <Filename>wine-Programy-Windows Media Player.desktop</Filename>
    </Layout>
    <Menu>
    <Name>wine-Programy-Startup</Name>
    <Layout/>
    <Exclude>
    <Filename>wine-Programy-Startup-ST5UNST Uninstaller.desktop</Filename>
    </Exclude>
    </Menu>
    <Deleted/>
    <Menu>
    <Name>wine-Programy-4shared Service</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Atari</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Atmel AVR Tools</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-AutoCAD R14</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-AutoCAD R14.0 - odinstalowanie</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-AutoHotkey</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Black Isle</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Borland Delphi 7</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Bullfrog</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-DeliPlayer</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Diablo</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-DreamCatcher</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-EuroPlus+ Angielski z Cambridge</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-femm 4.2</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Heroes of Might and Magic III</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Intelligent Converters</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Interplay</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-xp-AntiSpy</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Winamp</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Unreal Antologia</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-SubEdit-Player</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Sierra</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-NAPI-PROJEKT</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Miranda IM</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-MicroSim Eval 8</Name>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>wine-Programy-Larian Studios</Name>
    <Deleted/>
    </Menu>
    </Menu>
    <Menu>
    <Name>wine-Programs</Name>
    <Deleted/>
    </Menu>
    <Include>
    <Filename>wine-winecfg.desktop</Filename>
    <Filename>dysk C.desktop</Filename>
    </Include>
    <Layout>
    <Merge type="menus"/>
    <Menuname>Programy</Menuname>
    <Merge type="files"/>
    <Filename>dysk C.desktop</Filename>
    <Filename>wine-winecfg.desktop</Filename>
    <Filename>wine-Nowy dokument Office.desktop</Filename>
    <Filename>wine-Otwórz dokument Office.desktop</Filename>
    </Layout>
    <Menu>
    <Name>Programy</Name>
    <NotDeleted/>
    <Layout>
    <Merge type="files"/>
    <Filename>TEDNotepad.desktop</Filename>
    </Layout>
    <Include>
    <Filename>TEDNotepad.desktop</Filename>
    </Include>
    </Menu>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>Programy</Name>
    <Directory>Programy.directory</Directory>
    </Menu>
    <Move>
    <Old>Programy/</Old>
    <New>wine-wine/Programy/</New>
    </Move>
    <Layout>
    <Merge type="menus"/>
    <Menuname>Programy</Menuname>
    <Menuname>Office</Menuname>
    <Menuname>Education</Menuname>
    <Menuname>Graphics</Menuname>
    <Menuname>Games</Menuname>
    <Menuname>Internet</Menuname>
    <Menuname>Multimedia</Menuname>
    <Menuname>Utilities</Menuname>
    <Menuname>Development</Menuname>
    <Menuname>Science</Menuname>
    <Menuname>System</Menuname>
    <Menuname>Settingsmenu</Menuname>
    <Menuname>Arch Linux</Menuname>
    <Menuname>Applications</Menuname>
    <Merge type="files"/>
    <Filename>kde4-Help.desktop</Filename>
    <Filename>kde4-kfind.desktop</Filename>
    </Layout>
    </Menu>
    applications.menu
    <!DOCTYPE Menu
    PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
    'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
    <Menu>
    <Name>Applications</Name>
    <MergeFile type="parent">/etc/xdg/menus/applications.menu</MergeFile>
    <Menu>
    <Name>System</Name>
    <DirectoryDir>/home/bagheera/.local/share/desktop-directories</DirectoryDir>
    </Menu>
    <Menu>
    <Name>Development</Name>
    <DirectoryDir>/home/bagheera/.local/share/desktop-directories</DirectoryDir>
    <Include>
    <Filename>python2.5.desktop</Filename>
    </Include>
    <AppDir>/home/bagheera/.local/share/applications</AppDir>
    </Menu>
    <Menu>
    <Name>Other</Name>
    <DirectoryDir>/home/bagheera/.local/share/desktop-directories</DirectoryDir>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>alacarte-made</Name>
    <Directory>alacarte-made.directory</Directory>
    <Deleted/>
    </Menu>
    <DefaultLayout inline="false"/>
    <Menu>
    <Name>alacarte-made-1</Name>
    <Directory>alacarte-made-1.directory</Directory>
    <Deleted/>
    </Menu>
    <Menu>
    <Name>Multimedia</Name>
    <Include>
    <Filename>cdemu-client.desktop</Filename>
    </Include>
    <AppDir>/home/bagheera/.local/share/applications</AppDir>
    <Include>
    <Filename>vumeter.desktop</Filename>
    </Include>
    </Menu>
    <Menu>
    <Name>Office</Name>
    <Include>
    <Filename>ooo-math.desktop</Filename>
    </Include>
    <AppDir>/home/bagheera/.local/share/applications</AppDir>
    </Menu>
    <Menu>
    <Name>wine-wine</Name>
    <Menu>
    <Name>wine-Programs</Name>
    <DirectoryDir>/home/bagheera/.local/share/desktop-directories</DirectoryDir>
    </Menu>
    <Menu>
    <Name>wine-Programy</Name>
    <Menu>
    <Name>wine-Programy-4shared Service</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-AutoCAD R14</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-AutoCAD R14.0 - odinstalowanie</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-MicroSim Eval 8</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Miranda IM</Name>
    </Menu>
    <Include>
    <Filename>EuroPlus+ Angielski z Cambridge.desktop</Filename>
    </Include>
    <Menu>
    <Name>wine-Programy-Intelligent Converters</Name>
    </Menu>
    <Include>
    <Filename>WinRAR.desktop</Filename>
    </Include>
    <Include>
    <Filename>TED Notepad.desktop</Filename>
    </Include>
    <Include>
    <Filename>Shareaza.desktop</Filename>
    </Include>
    <Menu>
    <Name>wine-Programy-WinRAR</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-TED Notepad</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Shareaza</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-EuroPlus+ Angielski z Cambridge</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Atari</Name>
    <Menu>
    <Name>wine-Programy-Atari-Temple of Elemental Evil</Name>
    </Menu>
    </Menu>
    <Menu>
    <Name>wine-Programy-WinUAE</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-PowerISO</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-NAPI-PROJEKT</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-femm 4.2</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Diablo</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Heroes of Might and Magic III</Name>
    </Menu>
    <Menu>
    <Name>wine-Programy-Xvid</Name>
    </Menu>
    </Menu>
    <AppDir>/home/bagheera/.local/share/applications</AppDir>
    <Exclude>
    <Filename>wine-µTorrent.desktop</Filename>
    </Exclude>
    </Menu>
    <Menu>
    <Name>Education</Name>
    <Include>
    <Filename>alacarte-made.desktop</Filename>
    </Include>
    </Menu>
    </Menu>
    K, i got it!
    I have removed all files from ~/.config/menus/ except applications-kmenuedit.menu, and removed all sections from file except first *menu:
    <!DOCTYPE Menu PUBLIC '-//freedesktop//DTD Menu 1.0//EN' 'http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd'>
    <Menu>
    <Menu>
    <Name>Development</Name>
    <Include>
    <Filename>pyCrust.desktop</Filename>
    <Filename>IDLE.desktop</Filename>
    </Include>
    <Layout>
    <Merge type="files" />
    <Filename>IDLE.desktop</Filename>
    <Filename>pyCrust.desktop</Filename>
    <Merge type="menus" />
    <Menuname>Web Development</Menuname>
    <Menuname>Translation</Menuname>
    <Menuname>X-KDE-KDevelopIDE</Menuname>
    <Filename>kde4-cervisia.desktop</Filename>
    <Filename>CMake.desktop</Filename>
    <Filename>geany.desktop</Filename>
    <Filename>java-monitoring-and-management-console.desktop</Filename>
    <Filename>java-visualvm.desktop</Filename>
    <Filename>kde4-kcachegrind.desktop</Filename>
    <Filename>kde4-kompare.desktop</Filename>
    <Filename>kde4-akonadiconsole.desktop</Filename>
    <Filename>kde4-kuiviewer.desktop</Filename>
    <Filename>netbeans.desktop</Filename>
    <Filename>kde4-kbugbuster.desktop</Filename>
    <Filename>assistant.desktop</Filename>
    <Filename>designer.desktop</Filename>
    <Filename>kde4-kapptemplate.desktop</Filename>
    <Filename>kde4-umbrello.desktop</Filename>
    </Layout>
    </Menu>
    </Menu>
    *contents may vary
    Now i have wine menu back :]
    Last edited by bagheera (2010-03-15 13:01:08)

    faxmanloveswaffles wrote:bump?
    Please don't do that. Please read the Forum Etiquette, in particular the section on bumping:
    Posting a single word or useless message (bumping) to attract attention to your thread is not allowed. Do your own research, continue to troubleshoot, post the results, and be patient with the community. If people are reading your thread without answering or offering help, you may try supplying more details, or ask to be pointed in the right direction. Often, the reason for posts remaining unanswered is due in large part to the sparse details in the original post itself, or, the obvious availability of solutions in the wiki, on the forum or on the web, and the community's unwillingness to point out the obvious.
    Last edited by 2ManyDogs (2012-10-28 19:47:06)

  • Transfering tags from Album 2.0 to Photoshop Elements 9.0

    I'm trying transfer my pictures and tags to a new computer.  the old platform was Win XP with Photoshop Album 2.0 (PA2) and the new computer is Win 7 64bit with Photoshop Elements 9.0. (PE9)
    So far I have been successful in moving the photos to a directory on the new computer and I can view the photos in PE9.  But the tags did not transfer to the new catalog.
    I must be missing something basic.  Is there an additional file that needs to be transfered to make the old tags work on PE9?
    Looking forward to anyone's suggestions.
    Cheers,
    Andy

    In theory, yes you can transfer tags from PSA2 to PSE9, however because of the large distance between the versions, sometimes the method fails.
    The preferred method is to convert the PSA2 catalog file to PSE9. To do this, you need to create a backup using PSA2 (File->Backup Catalog), and then move everything from this backup to the new computer, launch PSE9, and then File->Restore Catalog. As I said, sometimes with older versions of PSE/PSA, the method fails, you won't know until you try it.
    Another possibility (not really sure if PSA2 had this capability) is to have PSA2 write the tags to the individual photo files, then copy all the photos to the new computer and import to PSE9.

  • LZW - the great mystery

    Hi again.
    I made a Program, to print 'n scale images with JAI...
    Now comes the problem...
    It works, and I mean it really works... but a lot of the pics i need to be printed with this are tiff
    and LZW compressed...
    Now my question...
    has anybody out there ever done LZW decompressing with JAI, Java or jimi...???
    please let me know how it works...
    thx Silvercrow

    hm...
    google was my first step, looking 'bout this....
    but, for the reason that there is 90 % garbage listed, I thought...: "Hey, ask the JAva-Forum" ...
    OK, what I'd like to say is: Help me with this ... PLEASE!!!! robbing on my knees
    Silvercrow

Maybe you are looking for

  • How to update ordered list having a constraint

    hi friends, I have to update a column for all the records in the table with a unique contraint ex-- select rec_no from tablename; 9 8 7 6 5 now i have to update this like select rec_no from tablename; 8 7 6 5 4 but when i am doing update tablename se

  • BI analysis auths and traces don't work after client copy

    Hello, We recently moved our BI Development to a new server.  Now, the analysis authorizations I created and assigned to the S_RS_AUTH object are no longer working.  And, the 'Execute as User' feature in rsecadmin transaction to trace a user is no lo

  • Raw Device in RAC

    Hi, I want to use Raw-Devide in RAC, Could you Say To me That How Can We see and work with Oracle Database Files when thay are in "unformated and without letter partitions(logic part.)" in Raw-Devide ? when Oracle begin to Format them? Thanks a lot

  • Opening an iMovie '08 project in iMovie HD?

    Does anyone know if it's possible to take a project that was created in iMovie '08, and open it in iMovie HD?

  • Ethernet controller Driver

    Hi: DL and install the second driver on the list from the link below... http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=13&PFid=5&Level=5&Conn=4&DownTypeID=3&GetDown=false