Swing jdk1.4 is a buggy release !!!

Hi Gurus !!!
I'm wondering if anyone in the forums could solve this problem:
I have a JDialog class with a swing textfield added with an ActionListener (JDK_1.4.2_04). When I press down the Enter Key, actionEvent is continuously being fired while the ENTER key is down !!!!. this BAD behaviour occurs also when the user clicks on a button repeadetely !!! . I've been working for 2 days trying to solve it with no luck. In jdk1.3.1 release the behaviour is what I expected but I connot switch back to solve it.
Has anybody in the forums solved this ?????????????
I noticed that if I register an action with keystroke KeyStroke.getKeyStroke(KeyEvent.VK_F1,0,true); released the behaviour is correct, But how can I replace the default swing actions ?
Here's the code to test: (I found it in another post in the forum but the solution did'nt appeared )
public class SimpleDialog extends JDialog implements java.awt.event.ActionListener
class MyAction extends AbstractAction {
public void actionPerformed(ActionEvent e) {
System.out.println("TECLA PRESSEED----");
//private JButton jButton1 = new JButton("button");
private JTextField jButton1 = new JTextField("prova") {
protected boolean processKeyBinding(KeyStroke ks,KeyEvent e,int condition,boolean pressed) {
InputMap map = getInputMap(condition);
ActionMap am = getActionMap();
if(map != null && am != null && isEnabled()) {
System.out.println(pressed);
Object binding = map.get(ks);
Action action = (binding == null) ? null : am.get(binding);
if (action != null) {
return SwingUtilities.notifyAction(action, ks, e, this,
e.getModifiers());
return false;
public SimpleDialog()
MyAction action = new MyAction();
KeyStroke ks = KeyStroke.getKeyStroke(KeyEvent.VK_F1,0,true);
jButton1.getInputMap().put(ks, "ajuda");
jButton1.getActionMap().put("ajuda", action);
UIManager.getDefaults().put("Text.focusInputMap", new
UIDefaults.LazyInputMap(new Object[] {
"released HOME", JTextField.notifyAction
this.getContentPane().add(jButton1);
//this.getRootPane().setDefaultButton(jButton1);
jButton1.addActionListener(this);
this.pack();
public void actionPerformed(ActionEvent e)
if (e.getSource() == jButton1)
System.out.println("button pressed");
public static void main(String[] args)
new SimpleDialog().show();

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class DialogTest extends JDialog implements ActionListener
    private JTextField tf;
    boolean okayToProcess;
    public DialogTest()
        super(new JFrame(), "tab and press enter");
        tf = new JTextField("prova", 16);
        okayToProcess = true;
        tf.addActionListener(this);
        tf.addFocusListener(new FieldListener());
        JPanel p = new JPanel();
        p.add(tf);
        getContentPane().add(p, "North");
        getContentPane().add(new JTextField(16), "South");
        setSize(200,125);
        setLocation(400,400);
    public void actionPerformed(ActionEvent e)
        if (e.getSource() == tf && okayToProcess)
            System.out.println("text field action event");
            okayToProcess = false;
    private class FieldListener extends FocusAdapter
        public void focusLost(FocusEvent e)
            okayToProcess = true;
    public static void main(String[] args)
        new DialogTest().show();
}

Similar Messages

  • It's said that JDK1.5 will be released in the 2004 summer....

    Is it true???
    I think it's a nightmare for me.
    I am longing for those new language features:Generics,Static import......and so on.
    Why ????

    You can get the complete alpha release now. I am using it and it rocks.
    See previous posts in this forum for instructions on how to get it.
    -Eric

  • Is this a bug in Swing in JDK1.6/JDK1.7 but not in JDK1.5?

    I have an application for which GUI was developed in Java Swing JDK1.5.I am planning to upgrade the JDK to JDK1.6 but doing so produces problem for me.
    Problem Statement : If I open few dialogs(say 10) and dispose them and than call method 'getOwnedWindows()' , it returns 0 in JDK1.5 but returns 10 in JDK1.6. As in JDK1.6 it returns 10, my algorithm to set focus is not working correctly as it is able to find invlaid/disposed dialogs and try to set the focus on it but not on the correct and valid dialog or component because algorithm uses getOwnedWindows() to get the valid and currently open dialog.
    Can anyone suggest me the workaround to avoid this problem in JDK1.6?
    Following piece of code can demonstrate the problem.
    Custom Dialog Class :
    import javax.swing.JDialog;
    import java.awt.event.ActionListener;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JButton;
    import java.awt.event.ActionEvent;
    public class CustomDialog extends JDialog implements ActionListener {
        private JPanel myPanel = null;
        private JButton yesButton = null;
        private JButton noButton = null;
        private boolean answer = false;
        public boolean getAnswer() { return answer; }
        public CustomDialog(JFrame frame, boolean modal, String myMessage) {
         super(frame, modal);
         myPanel = new JPanel();
         getContentPane().add(myPanel);
         myPanel.add(new JLabel(myMessage));
         yesButton = new JButton("Yes");
         yesButton.addActionListener(this);
         myPanel.add(yesButton);     
         noButton = new JButton("No");
         noButton.addActionListener(this);
         myPanel.add(noButton);     
         pack();
         setLocationRelativeTo(frame);
         setVisible(true);
         //System.out.println("Constrtuctor ends");
        public void actionPerformed(ActionEvent e) {
         if(yesButton == e.getSource()) {
             System.err.println("User chose yes.");
             answer = true;
             //setVisible(false);
         else if(noButton == e.getSource()) {
             System.err.println("User chose no.");
             answer = false;
             //setVisible(false);
        public void customFinalize() {
             try {
                   finalize();
              } catch (Throwable e) {
                   e.printStackTrace();
    }Main Class:
    import java.awt.event.ActionListener;
    import javax.swing.JFrame;
    import javax.swing.JButton;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.event.ActionEvent;
    import java.awt.FlowLayout;
    import java.awt.Window;
    public class TestTheDialog implements ActionListener {
        JFrame mainFrame = null;
        JButton myButton = null;
        JButton myButton_2 = null;
        public TestTheDialog() {
            mainFrame = new JFrame("TestTheDialog Tester");
            mainFrame.addWindowListener(new WindowAdapter() {
                    public void windowClosing(WindowEvent e) {System.exit(0);}
            myButton = new JButton("Test the dialog!");
            myButton_2 = new JButton("Print no. of owned Windows");
            myButton.addActionListener(this);
            myButton_2.addActionListener(this);
            mainFrame.setLocationRelativeTo(null);
            FlowLayout flayout = new FlowLayout();
            mainFrame.setLayout(flayout);
            mainFrame.getContentPane().add(myButton);
            mainFrame.getContentPane().add(myButton_2);
            mainFrame.pack();
            mainFrame.setVisible(true);
        public void actionPerformed(ActionEvent e) {
            if(myButton == e.getSource()) {
                   System.out.println("getOwnedWindows 1 " + mainFrame.getOwnedWindows().length);
                 createMultipleDialogs();
                int i = 0;
                   for (Window singleWindow : mainFrame.getOwnedWindows()) {
                        System.out.println("getOwnedWindows " + i++ + " "
                                  + singleWindow.isShowing() + " "
                                  + singleWindow.isVisible() + " " + singleWindow);
                   System.out.println("getOwnedWindows 2 " + mainFrame.getOwnedWindows().length);
                //System.gc();
                   System.out.println("getOwnedWindows 3 " + mainFrame.getOwnedWindows().length);
                //System.gc();
                   System.out.println("getOwnedWindows 4 " + mainFrame.getOwnedWindows().length);
            } else if (myButton_2 == e.getSource()) {
                   System.out.println("getOwnedWindows now: " + mainFrame.getOwnedWindows().length);
         public void createMultipleDialogs() {
              for (int a = 0; a < 10; a++) {
                   CustomDialog myDialog = new CustomDialog(mainFrame, false,
                             "Do you like Java?");
                   myDialog.dispose();
                   myDialog.customFinalize();
        public static void main(String argv[]) {
            TestTheDialog tester = new TestTheDialog();
    }Running the above code gives different output for JDK1.5 and JDK1.6
    I would appreciate your help in this regards.
    Thanks

    Fix your algorithm to check if the windows are displayable/showing instead of assuming they are?

  • Newest Firefox always unstable, buggy, like a Beta release

    I have been using Firefox for years, and generally like it above all else (currently running 11.0). However, I have had to disable the updates of any kind because ''every'' new release of Firefox is unstable. Maybe it works for an hour or a day, but it will crash or screw up in some fashion. I have chosen to always run an older version of Firefox because of this, and always turn off auto updates.
    Cant you guys get a '''good, stable product '''before you release it? Same with the updates, they are almost always highly unstable, and if your unlucky enough to have auto update enabled, you can bring yourself some serious problems.
    It would be really nice to have some Quality Control as far as your new releases are concerned. Buggy, crashy releases only serve to frustrate most of us. We would really like to trust you, but with each buggy release you undermine our faith in your ability to keep us up to date and, most importantly, Secure. We know you cant account for each and every systems unique set up, but you can do better than whats been happening for the last few years (yes, its been this way or as long as I can remember using Firefox).
    How are we going to fix this? Those who like Beta versions can have them if they want them, but I believe most of us average users want a good, secure, stable release each and every time, which has never been the case with Firefox. There's got to be a better way.

    Every change in Firefox is tested by hundreds (thousands?) of people, but even the largest beta testing program will miss things because of the unique interaction of systems, sites, and add-ons for hundreds of millions of Firefox users.
    If you would like assistance with particular issues, this is a good site for that.
    And of course, I would be remiss in failing to point out that Firefox 11 has some known and publicly disclosed security vulnerabilities, so it's worth making an effort to update if you can.
    Finally, I'll note that there is a separate release schedule for business users that insist on a product with less frequent changes. Maybe you'd be interested in that? [http://www.mozilla.org/en-US/firefox/organizations/faq/ Firefox Extended Support Release FAQ]

  • Errors on my web site started with Flash Player Release a few days ago (Mar 28, 2012)

    Hi,
    I have a Flash based video player on my website.  This was designed and implemented based on an article vy Lisa Larson-Kelley.  It has run flawlessly for several years.  But, when I installed the lastest release of Flash Player a fedw days ago (Mar 28, 2012), I am now getting really annoying issues with the Flash Video Player.
    I expect that I will need to place insturctions for users on how to roll back their version of Flash Player, since this latest version is broken.
    But, many of the people who visit my site are not tech oriented (they are mostly friends and family, so, I don't expect that they will really roll back their version of Flash player.
    I am 100% certain the issue is the latest version of Flash, since these errors never occurred until I installed the latest version. 
    On my work laptop, I have an older version of Flas (10.x.x) and this probelm does not happen.  On my desktop PC at home, I have an older version of Flash 11 installed, and this problem does not happen (in IE9).  The version of Flash PLayer 11 where the issue does *not* occur is 11.1.102.63.
    On that same desktop PC, if I use Chrome, (which automatically defaults to the latest version of Flash which is 11.2.202.228, I get the problems.  So, there is no question that the issue is with the latest version of Flash and not my hardware or drivers.  I get the same problems on three different computers.
    My website has a username and password.  If someone from Adobe wants to replicate the problem send me an e-mail and I will send you the username and password.
    The videoplayer on my website is at this url:  http://www.jjjhi.com/TryMakingFlashVidPlayer/VideoPlaylist.html (but, you will need the username and password).
    The issue is that sometimes (not always) when you select a video to play, inistead of the video loading into the panel as it should (sized as 1025 x 578), instead, all you see is the control skin.  The video begins to play, but all you get is the audio.  It looks like this:
    You can recover from this error by using the skin control to make the image full screen, but, the video looks poor at fulls screen, because it is created at 1024 x 578.  You can then get the correct size by returning from full screen, but, I don't want the pepole who visit my cif\deo playet to have to go all through that.  Especially since most won't even know enough to try making the video full screen.
    This doesn't happen for every video on my web site, but, once it *does* happen once...it will happen for every video selection you make.
    This is unacceptable, and it absolutely a function of Flash version 11.2.202.228.
    Adobe:  Please fix this bug as soon as possible.
    I've implemented an HTML5 based video player and have begun populating it with mp4 versions of my video clips, but, quite honestly, the playback using HTML5 is much worse than with Flash.  I encoded the clips in the HTML5 player with the same Variable Bit Rates as in the F4V clips, and, in the HTML5 player, there are missed frames, and the audio can get out of sync.  So, I *want* to keep using my Flash Based video player, but...if Adobe doesn;t fix this, I will just dial down my VBR till I find one that is slow enough to play in HTML5 and ditch Flash.
    My HTML5 video player is here:
    http://www.jjjhi.com/TryMakingNewVideoPlayer/NewVidPlayer_option1_jth.html
    (again you need the username and password to use it, send me an e-mail and I will give them to you, I just don't want to post them in an open forum).
    Here is a bitmap of the page:  It is quite snazzy looking and is based on an excellent class from Chris Converse at Lynda.com.  But, even though it is 'snazzy looking' the HTML5 player performs poorly on an under-powered machine (like my work laptop).  It uses 100% CPU and misses frames and the audio loses sync.  The same videos encoded with the same VBR for Flash (F4V) play great, *except for the new issue described above!!!!)
    I Adobe can fix this issue with Flash Player 11.2.202.228  ASAP, else, I will  have to 'downgrade' to an HTML5 based video player, that, quite honestly does not perform as well as Flash.
    If you want to reproduce the problem contact me at my e-mail address: [email protected] and I'll send you the username and password.
    You can then prove that the problem does not exist with prior version of Flash player (before 11.2.202.228) but *does* exist with this latest buggy release.
    Thanks,
    John

    Thanks.
    I sent the username and PW to you and Chris.
    Cheers,
    John

  • IPhoto '09 buggy?

    From my perspective this is the most buggy release of this software to date.
    Hopefully someone can shed some light on the main problem I need to get resolved. In prior versions of iPhoto I've been able to burn a CD or DVD to transfer photos to another computer. Doing it this way retained all the pertinent info relating to the photos including the original versions of images, albums, etc. Now when I try this there are a variety of problems on importing:
    1. Albums do not import (the photos and events do, but not albums I've put them in).
    2. The original versions do not import (I can't revert to original)
    3. Movie files do not import (only a JPEG image of the first frame does).
    4. Movie files come in with bogus date and time stamps.
    5. A few images will not open properly after import (they are black). I can "fix" this by opening them in Photoshop and re-saving them.
    1 & 2 are the killers (especially #2). I can work around the rest. Here is what I know so far. I believe the info is on the burned discs, but it's just not getting imported. When I compare the size of the burned disc to the size of just adding up all the photos it is much larger, which tells me the originals are there.
    And here is the most interesting part - this behavior only seems to occur on things which were originally imported and manipulated in iPhoto 09. I can still burn and pull over albums. etc. from iPhoto 09 as long as they originated in a prior version.
    I am using v8.02 (I keep all my software current)

    Mike:
    The iPhoto Library Manager 3.5b which also copies Faces and Places when copying album/events between libraries can be downloaded here. I've run it on some test libraries and it does include the Faces and Places metadata.
    NOTE: The link will automatically download and place the application in your User/Downloads folder.
    Message was edited by: Old Toad

  • 10g and jdk1.5

    1) is it possible to use the generic compiler with 10g preview ?
    2) will the release version have some support for jdk1.5 ?
    I think it could attract many people to 10g to have support for jdk1.5 VERY soon. I don't want to wait several months like I did for jdev to support jdk1.4.
    The release of 10g is close to the release of jdk1.5 (in beta). A great opportunity.

    According to javalobby, jdk 1.5 early access is for this week.
    I'd like to play with it in my holiday in end of december.
    "On a completely separate note, we have been receiving a good deal of email lately asking for details on the upcoming early access release of the preliminary J2SE 1.5 binaries. I spoke today with the product line manager at Sun directly responsible for this, and she confirmed that they are pushing as hard as they can to get the release out the door for Javalobby members. The latest word is that the target date is December 15, but that in no case will it be later than December 22 when Sun begins its holiday break. The purpose of this early access release is for Javalobby members to help provide valuable testing and uncover and remaining bugs in the J2SE 1.5 code, so please keep in mind that this is PRE-RELEASE code and that you cannot expect it to be perfect. I'm excited that Sun is making this opportunity available exclusively to Javalobby members, so I hope you'll make the most of it and help improve Java in the process."

  • [ANN] xframe-swing (frozen columns with the JXTable)

    The xframe team is pleased to announce the release 0.6-beta of our swing subproject, the first beta release.
    Currently the main purpose of this project is the JXTable class, an extension to the JTable which offers frozen columns and groupable column headers while behaving almost exactly like the original JTable. So the intention is to have a true replacement for the JTable where ontop you can use your usual features like filtering, sorting, etc.
    Since the JXTable is being used in the first few commercial projects, we got a lot of feedback and patches which improved stability and usability upto a high level. These projects are not yet finished, so we keep the beta status until the first project goes to production.
    You can download xframe-swing here:
    http://sourceforge.net/project/showfiles.php?group_id=48863&package_id=125567
    Further Readings:
    http://xframe.sourceforge.net/swing/index.html
    http://jroller.com/page/kriede/20040414#swing_table_with_frozen_columns

    The FixedColumnExample from the link that you provided doesn't work with JDK 1.3 or higher.
    Anyway, putting a seperate table for the fixed columns into the row header is the first step to solve the problem of fixed columns.
    The next problem is to synchonize the scrolling behaviour of the two tables. The FixedColumnExample tries to do it by overwriting the valueChange method (maybe this was working with JDK 1.8), but with JDK 1.2 or higher it is recommended to use ChangeListeners. That's what I am doing, as also described here: http://www.chka.de/swing/components/JScrollPane-bugfix.html.
    Another problem is navigation with the tab or arrow keys: The default actions for those events move the selection only within one JTable. It would be nicer, if e.g. the tab key moves the selection within one row across both, the fixed and the scrollable columns.
    Those problems and some more are solved in the CoolTable sample:
    http://jroller.com/resources/kriede/CoolTable.java
    Please try it out and send comments.

  • ITunes 11 buggy with a fringe on top

    iTunes 11 has been a disappointingly buggy release.  In particular, I've had a lot of problems with both iTunes Match -- a service that, hey, I pay extra money to Apple for, which means it should work faultlessly -- and Smart Playlists.  New Smart Playlists would not populate; old Smart Playlists that I count on completely disappeared.  Or, rather, the Smart Playlists were there -- they just became depopulated and useless.  In the past hour and a half of trying to get things to work and searching these forums for an answer, I mainly heard a host of similar complaints dating back to the iTunes 11's release, with no response at all from Apple about these problems.
    In the meantime, at one point the only playlist I had that was populated was the one containing the last 11 albums worth of songs that I've purchased from my laptop (the computer I'm currently using) -- but none of the 4000+ others that I own on my desktop, that are in iCloud via iTunes match -- in spite of the fact that iTunes Match kept assuring me they were all there.
    I did find the useful advice from similarly frustrated users to keep on trying.  I ultimately got things to work for me -- I guess I'll see how long it will last -- by quitting iTunes completely, then reopening, then turning off iTunes Match, then turning it back on again.
    So to other frustrated iTunes 11 users I repeat the refrain: keep on trying, and it will eventually work. At least until the next time it stops working.
    To users of earlier releases of iTunes, I offer this advice: don't upgrade to iTunes 11 until Apple works out the bugs.
    To Apple, I offer this earnest plea: please fix it. There's a reason that Apple has so many diehard fans: because it delivers great stuff that works beautifully. This release of iTunes is a blot on your reputation.  Please fix it. Thanks.

    P.S. -- I am giving feedback to Apple via iTunes Feedback. If you're also having problems, please follow my example. Thanks.

  • How can you force a release update in the appstore?

    Recently KLM updated their app to version 3.4.2 an apparently Release 9890.
    On my iPhone I still have to deal with (buggy) release 9886 even though by now I have deleted & reinstalled the app several times.
    Any suggestions on how to force a release upgrade of an app??

    I have the latest update/version (= 3.4.2).
    But it turns out that there is also a release number when you look at the app under 'Settings'.

  • In photoshop cc is not working properly right button on the tablet stylus genius

    in photoshop cc is not working properly right button on the tablet stylus, when clicked, the menu appears and immediately disappears in Pshotosho CS6 everything was OK, and in other programs all OK.
    Tablet - Genius G-Pen M712X.

    have you participated on here before, smihop? -- do Adobe representatives ever provide a solution? I pay monthly for all adobe cloud applications <-- doesn't it seem like that should come w/some kind of support? (especially when they push out buggy releases <-- which make me wish I could go back a version)

  • ITunes has stopped working

    Tried anew to install iTunes (9.1.1.12) again (I uninstalled after having upgraded to 9.X which was a very buggy release on the Windows side). But after having performed a very l o n g backup of my iPhone 3GS, it starts to do things with my songs and suddenly it displays the error message that iTunes has stopped working and that Windows will notify me when a solution is available. This repeats everytime I connect my iPhone... It seems that we will have to wait for an update as there are many comments about this realease????
    Shouldn't there be a Windows 64-bit iTunes forum as well???

    Have you seen this article on troubleshooting iTunes crashes.
    http://support.apple.com/kb/TS1717
    If you find the problem is user specific and it happens when iTunes is "doing things to files", then look at "check for content files with issues". Sometimes a bad file can crash itunes.

  • IPhone OS 2.0 at Black Screen with Apple Logo, Apps crash and not run

    Apple Support: Do not delete this. I am complying with your requests. According to your T&C, I must state my problems in question form to ask the community or your teams for help in a constructive way. I believe my original post was only playfully negative, but since I am complying now, I would expect that you do not delete this, otherwise you're simplying just trying to put spin on a buggy release. PLEASE HELP. I have not heard back from Feedback, and phone support continually says to RESTORE the phone, which only solves these problems for a few hours.
    1) My iPhone OS 2.0 is very slow, even with a virgin restore with no apps or synchronized content.
    2) My iPhone OS 2.0 reboots at random times.
    3) My PURCHASED applications crash randomly, under unreproducible conditions.
    4) Free applications crash randomly.
    5) My iPhone OS 2.0 will not boot after an irregular interval of reboots, showing only the black screen with the apple logo. Letting this sit for 8 hours simply drains the battery until it goes pitch black. POWER+DOWN_ARROW and an iTunes restore is the only way to recover. This process takes hours to complete.
    I have gone several days without a working phone while away from the iTunes at home to restore my contacts and other data vital to the operation of my business, not to mention a phone that actually works to make and receive calls.
    As stated in the previous post, I'm a loyal Apple customer, and have spent considerable time evangelizing the brand, and have spent hundreds of thousands of dollars by purchasing Apple laptops instead of Dell.
    Can you please tell me how to solve this? If there is no firmware problem, please give me a real solution to fix this. I am not the only one with this problem.
    Thank you in advance,
    Kevin

    Many of us have this problem. I've had it several times now.
    The only way to fix it, is to restore the iPhone.
    I know it seems like it wont boot, or wont do anything, but it will... just do this.
    Start Itunes. Turn off the iPhone, now put it in the dock or plug it into the USB cable, WHILE holding the top button on the phone down. Keep holding it down. It will then show a connect cable icon on the phone. It should show up in iTunes at this point. Proceed to restore the phone per screen instructions.
    Once its back up and booting and working etc...
    MAKE SURE... you DO NOT... install any application or delete any application on your iphone. IF you dare do so.... MAKE ABSOLUTELY certain you do not do ANYTHING at the same time. That means NEVER DL an app from itunes store on your phone, and while it is installing, ... avoid clicking on anything, touching the phone, starting a different app, going back to the itunes store...
    In other words... If you try to multitask... it causes some weird bug.

  • Lightroom 3 - The worst program Adobe has ever put out...

    If anyone cares to read this, I will be the first to say DO NOT UPGRADE!!
    I am spreading the word - facebook, word of mouth, every professional photographer in LA I know, blogs, etc. 
    You gotta raise hell to get changes.
    Lets see if Adobe will do anything about these issues...
    I thought that Adobe created "beta" for a reason - to smooth out all the kinks before they put the disk out. Nope. 
    I have been waiting for them to put out updates on many issues since I purchased the disk a month ago.... Still waiting Adobe!!!
    It is excruciating to watch my photos take literally 4-5 minutes to open.  Even worse, is the time it takes to save from Photoshop CS5 back to Lightroom - I timed 14min. FOR A PHOTO!
    I feel like the old days when I rendered video - went out to get a coffee, and came back to find the spinning of wheel of death still spinning.
    Oh, and I got to talk to India today too! for 3.5 hours - with no resolution to my problems. 
    Susheel accessed my computer remotely  - saw my catalog - sees 73,000 images, and asks "are you a photographer?"  REALLY?!  DId you REALLY just ask me that Susheel??
    Why I HATE Lightroom 3 - let me count the ways:
    1. Adobe closed their tech support in Portland (whom I have spoken to many times, and ALWAYS got my problems resolved.  They always went above & beyond the protocol - and we sit here and wonder why the US economy is crashing), now you get a no-name person in India or in the philippines (who have no extension, no email, not even a direct line so when you sit on a call for 3.5 hours and need to call back you are starting all over again.. Dear Adobe - do we live in 1980?? You are suppose to be a LEADER in technology. 
         I am morally against outsourcing, my artwork is all about the death of american industrial capitalism.  In a time when the US is in crisis, Adobe works on moving things out of the US.  I'm outraged - You can't get someone in the US EVEN IF YOU TRIED!  The best I could do was talk to someone in sales about this - wow. What does that say - American's "look good and sound good to sell our product, but when it comes to something advanced in technology like using the product and trouble shooting, we prefer to use someone with no extension in another country"
    2. They don't offer support for anyone who is running off a network (they expect professionals to be working off their local "c" drive or Mac internal hard drive.  HA!! 
    3. They continued to blame my network - even though my network is running smoothly, has no limitations on access, will open directly into photoshop just fine (and quick!), worked absolutely perfectly in Lightroom 2.... Yeah, it's the network, riiight.
    4. Lightroom 3 is corrupting files when opening into Photoshop CS5 - if I'm lucky enough to open them
    5. When I do get a photograph open, it loses it's filters once saved back into Lightroom (I rate my photos to help me navigate through the masses) - this really is hurting my workflow. When I shoot 800 images in the studio in one day - I DO NOT want to go back and fish around to find the edited version that lost its flag...
    6. I have been promised to get a phone call "sometime next week" since there is no extension I can call back on to move forward.  I'll keep you updated - let you know if Susheel keeps his word.  He couldn't tell me who was going to call me, or when, but he "assures" me it will happen.
         I wont hold my breath

    function(){return A.apply(null,[this].concat($A(arguments)))}
    Keith_Reeder wrote:
    ambienttroutmask wrote:
    So the worst programme Adobe ever put out, yet even though you can have a 30 day trial you still went out and brought it...
    Yep, everything is always someone else's fault. It's never because they've made a stupid decision to buy before making absolutely sure that the software will work for them.
    Seems like nobody is prepared to take responsibility for their own actions these days.
    So, by that logic Adobe does not have to take ANY responsibility for pushing this kludge out the door?  Given they had a RC ready almost INSTANTLY after release should be sufficient to show they KNEW they were pushing garbage out the door.  Adobe is indeed responsible for their offering a know buggy product, bugs which CROSS PLATFORMS so it has to be the core code design not the user hardware or anything a given user has done.  Sure some systems might have setups which help make these issues more apparent, but that is on Adobe to deal with as they should publish limitations and known configurations which can potentially induce greater problems...but these entail an admission and accepting responsibility for the original buggy release...btw, release notes used to be where one would find quirks info and how to work around them post system requirements being carved in stone and set to entice the lowest common denomonator user.
    One more thing...LR is marketed not as a PRO TOOL, it is sold as a tool for the average to hobby level photographer.  That is also has huge appeal to the pro market is a happy accidentally-on-purpose thing...but to berate people who don't feel it's their job to troubleshoot a commercial app is completely unreasonable...but anymore the US consumer is the largest beta tester group on the planet...I wonder how our EU counterparts are fairing as ironically, they have stronger consumer protection laws...try pushing a crap product out in the German market...heh-heh, yeah good luck with that.
    Actually I would say this is not the worst software Adobe has ever pushed out the door but perhaps the worst photography software they ever sent as RTM.  Many, many PDF related apps and utils have actually been worse and we won't get into what they have done to Flash and Dreamweaver after that acquisition.  The closest analog I can see if that of what happened to Norton products post Norton being purchased by Symmantec.
    However, I am willing to give Adobe time to address this because they did have the RC ready almost right away.  Should they have done this?  No way, but perhaps the marketing wonks put the company in the position where it had to meet the release date even if issues were discovered and fixes in the pipeline already and it was gonna be a 3-9 week delay before the issues were mostly fixed.  But they did and well, even those who ran the beta, ran the 30-day trial did not find the issues because they simply did not use that part of the program enough for the bugs to manifest their effects to the degree when you the user, realize something odd is happening.
    I too am pissed, beyond belief as I depend on LR for my business, I can, however work around it for a while but I don't make money as a photographer I use photography for my business so the issues, while causing huge levels of frustration, are not fatal....yet...all I know is I don't want to revert to LR2.7 because I have done so much work onLR3/ LR3.2RC already and the tools themselves are indeed superior in LR3.x....when they work and that is the rub.  So many here are telling those with these bugs affecting their income/workflow bought into this to save time and leverage the bestter NR/sharpening and I say much improved adjustment tools.  I don't use the lense profiles at all really so nothing special for me there.
    I would ask a question...I am sure this has been asked and answered but, eh, why not one more time because search is sooooo "haaaard"
    but does this issue affect all file types?  I am shooting DNG but can switch to PEF if needed and convert on import but would rather just shoot DNG.  I am not willing to switch to JPG because if I have to do this I give up too much control on my images, for that I would switch back to LR2.7.
    Also, what versions of Camera RAW were used in the beta and what versions are being used with LR3.  I know I did upgrade to ACR6.2(?) or whatever the most current version.  I understand there are a ton of factors at play in these bugs but I do doubt it's ACR as my old antique PS CS3 version of Photoshop does not have any problems, of course it's using the old version of ACR 4.6(?) again sorry I forget what version exactly but it's trivial and can be determined.
    I like LR because I don't need the advanced features of PS all that often, still PS is a fun tool to have as a backup for the complicated shots though I don't have time to really spend in it as I would like to...
    But in general I guess I am trying to say, Adobe had to know in advance of the RTM original LR3 because they had the RC ready almost instantly.  Of course past releases of LR also had the same experience just the bugs were, well, not as impactful I suppose.  I have been happy with LR since 1.x versions but this version is painful to support...and I as I previously posted I won't screw with Adobe's refund people, likely off-shored staff who get bonuses for talking customers OUT of getting a refund, I will simply file a chargeback with Mastercard...that is why I use it, so I don't have to let companies waste my time wading through their red-tape.  And btw, Adobe knows the customer will WIN any chargeback because this evidence of a known to be defective product was sold to the consumer and the customer even allowed the mfg to remediate the issue only they failed to deliver in a timely fashion.  So, if one is not happy just "go to the mattresses"...use the chargeback hammer.  The bonus is every chargeback granted to the consumer costs the retailer, Adobe in my case, $35 when they lose...

  • N73 Bug List (long)

    N73 2.0628.0.1
    This model/firmware seems to be a really buggy release. There's a lot of problems people are experiencing with it.
    The moderators of this forum claim that Nokia staff do read and take into considaration problems reported here, although they never reply or confirm any issues and they refuse to provide any kind of publicly available bug reporting system.
    So, maybe if we collect our problems in a single thread it might be easier for Nokia to notice and hopefully correct at least some of them.
    So, here are mine. Some bugs and suggestions below.
    BUGS
    1. [SEVERE] Once I was saving a contact data from a message received by IRDA to Contancts when the phone died completely (with the display on). I had to remove the battery.
    2. [SEVERE] During a call I turned on the recorder. After some time of recording the phone rebooted with no apparent reason.
    3. [SEVERE] N73 has problems with theme installation. When you install too many themes (don't know what is "too many" though; in my case it was 25 but others had problems after installing just a few) they tend to disappear: some from the Themes list and even more from Application Manager. So I have the themes installed and: some of them appear in Themes but don't appear in Application Manager so they cannot be uninstalled; others don't appear anywhere; others appear in both places.
    4. [MINOR] The help text for Themes states that you should press "C" to remove a theme. This is not true. The only way to remove a theme is to uninstall it from Application Manager (and I'm unable to do that due to #3).
    5. [MINOR] Barcode Reader. It's not available anywhere in the menus but when I try to install it I get "This component is built-in" error.
    6. [MINOR] Gallery. Create an album, add a photo to it. Go to Gallery, Options/Albums/View Albums. Highlight the album and select Options/Slide Show/Start. The application crashes. From time to time it also reboots the device.
    7. [MINOR] Gallery. Often when I view a 3 megapixel photo and try to zoom it, I get "not enough memory" error.
    8. Cable connection in USB Mass Storage mode seems to be implemented in a non-standard way. (Or, maybe it is a card formatting/partitioning issue?) Tried it on Linux, and could only see the card as a device (/dev/sdb in my case) but no partition on it (i.e. no /dev/sdb1). I understand that this is not important to Nokia as Linux users are in minority but why can't you do it in a standard way? Practically all USB Mass Storage devices (USB disks, cameras, memory card readers, flash memory sticks) work without problems, but N73 doesn't.
    SUGGESTIONS / WISHLIST
    1. Nokia, please, some more testing before bringing your products to the market! I've been using my N73 for two weaks maybe and encoutered several serious bugs. How is it possible that your qualified testing team which you surely have wasn't able to find them?
    2. Support. There is a lot of complaints about quality of Nokia customer support. I don't have my own experience with it yet so I'm not complaining but why you cannot at least provide an e-mail address? It's always: go to http://europe.nokia.com/A4144989, but then I need to select my country, browse through 5 or so web pages and then all I get is a *tiny* text box telling me "Ask your question". And I need to select my phone model from the list but guess what? it is not even listed there!
    3. More RAM! It is way too small in n73. Just after booting I have about 20 megs and then it's getting lower. A single application like Gallery can easily take 5 - 7 MB and it doesn't seem to return all of it to the system when closed.
    4. Could you please consider providing an easier way of upgrading the firmware? Due to the number of bugs in your software I really need to do the upgrade. But the nearest Nokia service center is about 100 kilometers away. I'd like to do it myself but without a need for third party software (I mean MS Windows).
    5. Available firmware version. It is not displayed on the update page. Some posts in this forum say there is 3.0628.something available. But tried on the software update availability page, entered my phone's code (0541421) and got "Sorry! No software update available for this product code. Try again soon.".
    Why isn't it available for my N73??
    Phew! Anybody something to add here?
    N73-1 V 2.0628.0.0.1

    05-Jan-2007
    08:44 PM
    jacek wrote:
    N73 2.0628.0.1
    8. Cable connection in USB Mass Storage mode seems to be implemented in a non-standard way. (Or, maybe it is a card formatting/partitioning issue?) Tried it on Linux, and could only see the card as a device (/dev/sdb in my case) but no partition on it (i.e. no /dev/sdb1). I understand that this is not important to Nokia as Linux users are in minority but why can't you do it in a standard way? Practically all USB Mass Storage devices (USB disks, cameras, memory card readers, flash memory sticks) work without problems, but N73 doesn't.
    Phew! Anybody something to add here?
    Hey I am in Australia and bought Nokia N73 yesterday and I can't connect it to PC. I am running Windows XP with SP2. Windows reports "One of the USB devices attached to this computer has malfunctioned, and Windows does not recognise it.For assistance in solving this problem, click this message."
    Well clicking on the message pops the device driver troubleshooting dialog which recommends "try reconnecting and if still doesn't work replace the device"
    Any help please?

Maybe you are looking for

  • Could not Start AS Server in the demo package get an yellow icon

    Hello everyone, i got a little problem, i installed the trial version of SAP NetWeaver including (Framework AS Server, Message Server ...) and the Developer Studio. After the standard installation i try to start the services. Instance 0 has no proble

  • Patch Guide for EP6

    Hi, I have just migrated from EP5 to EP6 version 6.0.2.4.1 Portal_Service_Pack_2. I have downloaded patch 33 for (Portal,Sapinst,J2EE) Where can I find documentation relating to the patch sequence and can I go directly to this patch level. Kind regar

  • How do I get the little yellow house back to get to the home page

    I downloaded the new 4.0 and it doesn't have the little house to get back to the home page. How do I get it back?

  • Split  text into  number and  text

    Hi , My problem is something like this....." 5 feet 6 inch ". This is a single string(varchar). since i cannot calculate value (6*5) here .i need to make it taking from database separate. And later calculate value.Is there any possibility throught wh

  • Connectin VC to HU2 system

    Hi all, I wanted to connect the VC to the HU2 System. I did the following configuration: •Destination Type: Services Registry •Destination Name: HU2 •System: ABAP •System Name: HU2 •Hostname: iwdf1030 •Installation Number: 0120003411 •Client: 800 •Au