vote up 0 vote down star

I wrote an application in Java and when it runs on one customer's computer running OS X The Save and Export buttons are disabled. (Everything else works in the application.)

Both of these buttons open up a standard save file dialog.

Any ideas?

flag

42% accept rate
Are the save & Export buttons something you wrote? The Export button doesn't sound familiar for any dialogs I know. – Heath Borders Sep 19 '08 at 18:51
I just implemented JButtons that when pressed open the standard Save diablog. – steve Sep 19 '08 at 18:58
I think we need more information to answer your question. do you have any example code? You aren't doing any setEnabled/isEnabled things, property listeners or anything else to determine the state of your buttons? – John Gardner Sep 19 '08 at 19:03

3 Answers

vote up 2 vote down

The fact that these buttons open a file dialog probably has nothing to do with it being disabled. Buttons can end up being disabled for a number of reasons,

  • its setEnabled can be called with false,
  • when using an action, its setEnabled can be called with false, and
  • when using an action, it can have a property "enabled" that potentially disables it; see Action for more information, there's a list of properties there.

Could you post how you 'implemented the JButtons'?

link|flag
Could you expand on when using an action, it can have a property "enabled" that potentially disables it.? I'll post implementation later today when I have code in front of me. – steve Sep 19 '08 at 19:11
vote up 0 vote down

A stab in the dark, but most macs are still running Java 1.5; check if your current code misbehaves with Java 1.5 on your end. Maybe that's where you problem lies.

link|flag
vote up 0 vote down check

This was caused by misinformation recieved from the customer.

Turns out the customer was trying to save to a location where files can't be saved on his/her hard drive.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.