Java Dialog focus issue with Mac OS X 10.4 (Mac OS X 10.3 is fine)

Hi,
I am trying this sample applet on 2 different Mac OS X's
1) Mac OS X 10.3.9
Safari 1.3.2 (v312.6)
JVM - 1.4.2_09
Here whenever the Browser, running the Applet comes on Top, the
Dialog also comes on Top i.e. if the dialog is hidden behind some window
& I click on the browser running the applet, the Dialog(showing "Hello",
"OK")
also becomes uncovered/visible.
2) Mac OS X 10.4.5
Safari 2.0.3 (v417.8)
JVM - 1.4.2_09
Here clicking on the Browser doesn't make the Dialog Visible.
As per the Java Docs, I think the Behaviour on OS X 10.3.9 is the
correct behaviour.
Is there a way to have that behaviour on OS X 10.4 - any workarounds,
anything I can do so that the dialog doesn't get hidden.
I cannot make the dialog modal.
Given below is the Applet source.
import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;
public class MyTest extends Applet implements ActionListener {
private Button b;
private Dialog myDialog;
public void init() {
b = new Button("Press me");
b.addActionListener(this);
add(b);
show();
private Frame findFrame(Component c) {
for (; c != null; c = c.getParent()) {
if (c instanceof Frame) return (Frame) c;
return null;
public void actionPerformed(ActionEvent e) {
if ( e.getSource() == b ) {
showDlg();
public void showDlg()
if(myDialog == null) {
// Set The Applet as owner
Frame f = findFrame(this);
if(f != null) {
System.out.println("Found Frame");
myDialog = new Dialog(f, false);
myDialog.add(new Label("Hello ") , BorderLayout.NORTH);
myDialog.add(new Button("OK"), BorderLayout.SOUTH);
myDialog.pack();
myDialog.show();
Mac Mini   Mac OS X (10.4.6)  

I used SBC DSL for a bit with my eMac on Panther without a hitch.
It is not that the service will not work, but their bundled software will not - not that you need it anyway.

Similar Messages

  • I tried playing a you tube video, but received a message prompt to download the latest version of Adobe Flash Player. The link to Adobe stated that there are issues with MAC OS X 10.7 and Flash Player 10.3. The new version did not download. Any Suggestion

    I tried playing a you tube video, but received a message prompt to download the latest version of Adobe Flash Player. The link to Adobe stated that there are issues with MAC OS X 10.7 and Flash Player 10.3. The new version did not download. Any Suggestion

    Hi Seattle
    From Adobe site only!
    flashplayer11_b1_install_mac_071311.dmg
    Works fine.
    Cheers Tomi

  • Compatibility issues with Mac OSX Leopard 10.5 and Word 2004 11.6.3 on G5 PowerMac?

    Are there compatibility issues with Mac OSX Leopard V. 10.5 and Word 2004 11.6.3 when installed on a PowerMac G5? I understand the Leopard upgrade is okay on the later Intel Mac, but what about my G5 PowerPC Mac?

    I do not use Microsoft Excel much but when i do use it it works fine on my G5. my powerbook has excel to but sometimes freezes on the powerbook. but not the G5 so give it a try you can always uninstall it if it does not work good
    anitabean wrote:
    Thanks so much for your positive reply! Are you a big user of Excel? That's where I've heard people have had trouble, with cells locking up and so on.
    Crossing my fingers and loading Leopard....
    Cheers.

  • Focus issues with Qt on MacOSX

    Hi
    I'm developing a plugin which targets CS3, 4, 5 and 6. I choose Qt because of the deprecation of ADM. This plugin works well on Windows for each version of Illustrator. Now I"m testing it on MacOS X, I have some focus issues with all version of Illustrator.
    For CS3, 4 and 5 I use the Carbon version of Qt and for CS6 I use the Cocoa version.
    My main problem is when a widget (Qt GUI element) has the focus and if I press the backspace of the keyboard  to replace the current value, the current selected object in the document is deleted.
    Moreover if I try to change the location of an object using the Controls tool bar of Illustrator, the value of the widget changes.
    Did anyone encounter this kind of problems and solve them ?

    Note that "AI Servo" focus has difference from "One Shot" focus mode with respect to what it does when you press the shutter button.
    In "One Shot" mode, the camera uses "Focus Priority".  This means the camera will NOT take a shot if the lens is in auto-focus mode UNTIL it can confirm that it was able to achieve focus on your selected AF point (or on one AF point if you allow it to auto-select the AF point.)  In short:  achieving focus is more important than taking the shot at the exact moment you press the button.  Hence "focus priority"
    In "AI Servo" mode, the camera uses "Release Priority".  This means that when you completely press the shutter button, the camera WILL take the shot immediately and it will do this whether it has had enough time to achieve focus... or not.    In short: capturing the shot at the exact moment you press the shutter button is more important than achieving focus.   Hence "release priority."
    If you quickly press the shutter button to get a shot, the camera is going to shoot first and worry about focus later.  You've got to half-press the shutter to let the camera achieve focus before you fully-press the button.
    Tim Campbell
    5D II, 5D III, 60Da

  • Focus issue with CardLayout (Java 2 SDK, Standard Edition 1.4.0_01)

    I am having an issue with focus and CardLayout with Java 2 SDK, Standard Edition 1.4.0_01. I have created a small sample application to illustrate my problem. In general, I am trying to create a "Wizard" that the user will enter information and then press a "Next" button to proceed to the next step.
    When the first card is displayed, the focus is on the first text field as expected.
    When I go to the next card by clicking "Next", the focus is not on the text field that has requested it (through the requestFocusInWindow method). The focus is on the "Cancel" button, which is the next component to receive focus after the "Next" button on that panel. I do notice that if I use my mouse to bring focus to the window the text field will gain focus.
    Similarly, when I proceed to the last card, the focus is not on the "Finish" button until the mouse moves over the window.
    Is there something I am doing wrong or is there a bug with focus and CardLayout?
    One other problem I have noticed is that the buttons no longer respond to the "Enter" key press and instead respond to the space bar. Any suggestions as to why this is the case?
    Thanks,
    S.L.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CardWindow extends JFrame implements ActionListener {
    public CardWindow() {       
    setTitle("Focus Problems with CardLayout");
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    cards = new JPanel();
    cardLayout = new CardLayout();
    cards.setLayout(cardLayout);
    cards.add(createFirstNamePanel(), "FirstNamePanel");
    cards.add(createLastNamePanel(), "LastNamePanel");
    cards.add(createFullNamePanel(), "FullNamePanel");
    getContentPane().add(cards,BorderLayout.CENTER);
    getContentPane().add(createButtonPanel(), BorderLayout.SOUTH);
    resetButtonPanel();
    pack();
    private JPanel createFirstNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your first name:");
    txtFirstName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtFirstName);
    return panel;
    private JPanel createLastNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your last name:");
    txtLastName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtLastName);
    return panel;
    private JPanel createFullNamePanel(){
    JPanel panel = new JPanel();
    lblFullName = new JLabel();
    resetTextOnFullNamePanel();
    panel.add(lblFullName);
    return panel;
    private JPanel createButtonPanel() {
    buttonPanel = new JPanel();
    btnPrevious = new JButton("< " + "Back");
    btnPrevious.setMnemonic('B');
    btnPrevious.addActionListener(this);
    btnNext = new JButton("Next" + " >");
    btnNext.setMnemonic('N');
    btnNext.addActionListener(this);
    btnCancel = new JButton("Cancel");
    btnCancel.setMnemonic('C');
    btnCancel.addActionListener(this);
    btnFinish = new JButton("Finish");
    btnFinish.setMnemonic('F');
    btnFinish.addActionListener(this);
    buttonPanel.add(btnPrevious);
    buttonPanel.add(btnNext);
    buttonPanel.add(btnCancel);
    buttonPanel.add(btnFinish);
    return buttonPanel;
    private void resetTextOnFullNamePanel(){
    lblFullName.setText("Your name is: " + getFirstName() + " " + getLastName());
    private void resetButtonPanel(){
    Component c[] = buttonPanel.getComponents();
    for(int i = 0; i < c.length; i++){
    c.setVisible(false);
    switch(iWizardStep){
    case FIRSTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case LASTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case FULLNAMEPANEL:
    btnFinish.setVisible(true);
    break;
    buttonPanel.validate();
    public void actionPerformed(ActionEvent e) {
    Object object = e.getSource();
    if (object == btnNext) {           
    btnNextPressed();
    } else if (object == btnPrevious) {           
    btnPreviousPressed();
    } else if (object == btnFinish) {
    System.exit(0);
    } else if (object == btnCancel) {
    System.exit(0);
    private void btnNextPressed() {       
    switch (iWizardStep) {
    case FIRSTNAMEPANEL:
    setFirstName(txtFirstName.getText());
    break;
    case LASTNAMEPANEL:
    setLastName(txtLastName.getText());
    resetTextOnFullNamePanel();
    break;
    iWizardStep++;
    resetButtonPanel();
    this.cardLayout.next(this.cards);
    switch (iWizardStep) {             
    case LASTNAMEPANEL:
    txtLastName.requestFocusInWindow();
    break;
    case FULLNAMEPANEL:
    btnFinish.requestFocusInWindow();
    break;
    private void btnPreviousPressed() {
    iWizardStep--;
    resetButtonPanel();
    this.cardLayout.previous(this.cards);
    public void setFirstName(String value) {
    firstName = value;
    public String getFirstName() {
    return firstName;
    public void setLastName(String value) {
    lastName = value;
    public String getLastName() {
    return lastName;
    public static void main (String[] args) {
    CardWindow c = new CardWindow();
    c.show();
    private CardLayout cardLayout;
    private JPanel cards, buttonPanel;
    private JTextField txtLastName, txtFirstName;
    private JLabel lblFullName;
    private JButton btnNext, btnPrevious, btnCancel, btnFinish;
    private String firstName = "";
    private String lastName = "";
    private int iWizardStep = 0;
    private static final int FIRSTNAMEPANEL = 0;
    private static final int LASTNAMEPANEL = 1;
    private static final int FULLNAMEPANEL = 2;

    Manfred,
    Thanks for your reply. I tried requestFocus() and it gives the same results. Also Sun's 1.4.0 API (http://java.sun.com/j2se/1.4/docs/api/) mentions the following with respect to the requestFocus() method in the JComponent class:
    Because the focus behavior of this method is platform-dependent, developers are strongly encouraged to use requestFocusInWindow when possible.
    That is why I used requestFocusInWindow.
    S.L.

  • Focus issues in Mac OS X Lion

    In my air application we are getting lot many issues related to focus in Mac OS X Lion. In other operating system we dont have any issues of Focus. Any solution?

    Thanks for the additional info. Your setup is different to this thread and more like the other scenario that you posted in, so the steps above don't quite apply.
    But fear not, I can give you what you need to know.
    The first thing is that the method you used to add the printer previously, ie select to Add via Print & Scan and select Windows, was the correct method for connecting to Windows shared printers. What would have been stopping you from printing was Windows. The authentication pop-up you saw was a request from Windows asking for user credentials to permit the printing. At this stage, if you entered your Windows user name and password the printing should have completed. Note that if you don't have a password set for the Windows account then this can cause errors with shared printing. So I suggest you do set a password for Windows (you should do this by default if this computer connects to the Internet) and this can help with getting the printing to work.
    If you were entering the correct details then the second thing is that there are known issues with using Mac drivers when printing via Windows shares. Many vendors do not make printer drivers that work with this type of connection and when you do you can get these authentication messages. So if you were entering the correct Windows user name and password then it could have been the driver rather than Windows causing this pop-up to appear. In this case you need to look at using an alternate driver suite, such as that offered by Gutenprint, although without checking I don't know if your model of Epson is supported. Anyway, the web site will show you if it is.
    If Gutenprint does not list your RX500 as a supported printer then there is a way that you can use the original Epson driver and that involves enabling Unix Print Services on the Vista PC. There is a bit to this so I recommend you try to get the above procedure working before you look at this alternative.

  • Sudden banding issue with Mac and new Canon printer, already called tech

    Good morning fellow Elementites.
    I have been using Photoshop Elements 12 on my MacBook Pro 13 inch, running Maverick OS, printing to HP Photosmart Premium all-in one with no banding issues, ever.
    I did want to upgrade my printer and monitor so I purchased the Canon Pixma Pro 100 and a new external LG IPS monitor to view the PSE program.
    I also purchased ColorMunki Display to calibrate the monitor. Everything is operational with the recommended settings for color etc.
    I printed a .tiff image and a .jpg through the PSE print function. The images that looked perfect on the new monitor and Macbook monitor printed with banding. I called Canon tech support. The man had me perform a few tasks to make sure the printer was operating correctly. We printed test sheets from the printer and they were all as they should be.
    He the said he NEVER prints from PSE. He edits in PSE but prints using Canon's EZ share or print or whatever it's called, doesn't matter cause I do NOT LIKE IT AT ALL. Not to mention it is just another step in the work flow. Not to mention that I paid good money for a photo editing program of high quality and I want to use ALL the features.
    He said the problem isn't the printer but the printing software instructions TO the printer via the Mac OS printer system, or something like this is what he said. He also had me download some other updates and driver files. He then had me remove the printer from my printer list and then add it back.
    He then had me print the .jpg image, (it only prints .jpg which is annoying as heck,) and it came out SO BEAUTIFUL I ALMOST CRIED
    I want to print this quality THROUGH PSE. Does anyone have a clue as to what to do to resolve the issue?  None of the suggestions in other threads from the past seem appropriate enough.
    Eager to hear,
    Regards.

    I have returned home and have copied down all the settings so that I may post them here before I do any more fiddling.  Maybe something glaring will be spotted before I start changing things.
    I opened an image in PSE 12.
    I chose from the PSE menu at the top of the monitor, FILE >PRINT
    A window appears with my photo and boxes and such: 1. Select Printer> CANON PRO 100-SERIES (The other printer isn't concern now).
    Select Paper Size and Orientation, no problems with this or any of the other settings in this window.
    I then select MORE OPTIONS button at bottom of window.
    Another window opens.
    There are 3 options listed on the left hand side PRINTING CHOICES which it is automatically on, CUSTOM PRINT SIZE which I haven't needed yet, and COLOR MANAGEMENT.
    I select COLOR MANAGEMENT.
    COLOR HANDLING is set to PRINTER MANAGES COLOR.
    IMAGE SPACE is listed, not in any box, as sRGB IEC61966-2.1
    PRINTER PROFILE is listed in a box that is grayed out and not selectable, as CANON IJ COLOR PRINTE...
    RENDERING INTENT is set in a selectable box as RELATIVE COLORMETRIC.
    (There is a little mssg below all this that reminds me to remember to enable color management in the printer preferences dialog.  I was never able to find this action and after doing some research I read that this mssg is a boo boo as the function is automatic in MAC running Maverick, supposedly).
    I then click OK and the box goes away.
    I then click the PAGE SET UP button.
    A window titled PRINT opens.
    The Printer selection box says CANON PRO=100 series.
    The next box always confuses me because nothing in the list appears to pertain to me when I want to print my photos.  It is the Presets box.
    I believe FAST PRINTING ON PLAIN PAPER is always showing when I open this window.  But I don't want that so I always look to see if there is something I should choose that applies.  I don't know what they mean by DEFAULT SETTINGS in this case.  LAST USED SETTINGS would be ok if that was what I wanted each time I printed.  FAST and FINE on Plain Paper?  I have been assuming they mean plain copy paper so I don't choose that.  SAVE CURRENT SETTINGS AS PRESET, I don't choose that because I haven't been sure of the settings.  And the SHOW PRESETS does me no good becuase you can't change anything in there.
    PAPER SIZE, not an issue at the moment.
    LAYOUT button is my next stop, by now I am exhausted
    I look at COLOR MATCHING which shows CANON COLOR MATCHING as the selected method.  (The other choice is COLOR SYNC but I don't know anything about that one and haven't been told to change it.)
    PAPER HANDLING & COVER PAGE, N/A at this time.
    QUALITY & MEDIUM.  I choose my paper type, paper source, print quality which for my photos I select HIGH.  I don't touch COLOR OPTIONS because that is scary looking.  And BORDER and MARGIN I have no issue with.
    I then hit SAVE and the window closes.
    Then I select PRINT in the lower right of the window that has my photo in it and from which I acessed all these other things.
    Phew.  So, can anyone tell me if they see anything wrong here, PLEASE.
    Regards,
    P.

  • Issues with Mac Version of Adobe Captivate 6

    I am having issues with Adobe Captivate 6 for Mac.  I am missing functionality.  Specifically the advanced actions dialog box.  I get "null" value in all the fields in the dialog box.  Also when I open captivate the welcome screen is blank.  I tried uninstalling and re-installing but I am still having the same issues.  Am I missing something on the install?  Has anyone else experienced these issues?

    Hi,
    Did it worked fine previously? Can share some more information like your Mac version?
    Can you share the screenshot of the problem screens?
    Also, Try to follow these steps, to verify in case your Preferences have not gone corrupted--
    1) Close Captivate
    2) Launch Finder
    3) Go -- Go to Location
    4) ~/Library -- Go to Preference>Adobe> Adobe Captivate 6, Rename the Folder to 'Adobe Captivate 6_Old '
    5) Relaunch Captivate and verify if thing improve.
    Thanks,
    Anjaneai

  • Internal hard drive issue with Mac Pro

    I work for two office that share information through a VPN. Each office has one Mac Pro being used as a server for data storage. The Pros have four internal hard drives (1TB each).
    Hard drives in the Pro for OFFICE 1 were configured like so:
    HD1 - OS/Boot drive
    HD2 - Time Machine backup of HD1/DATA1/DATA2
    DATA1 - Data storage
    DATA2 - Data storage
    Three weeks ago: Time Machine could not find HD2 and could not backup. I rebooted the machine and HD2 reappeared. However, after the reboot, DATA1 did not mount. I was unable to find DATA1 in Disk Utility. However, the drive could be accessed by all other Macs on the network. This machine was taken to the local Apple Store and we were told that HD2 was a bad drive and need to be replaced. We opted not to replaced the drive at this time and turned Time Machine backups off. We haven't had any problems with DATA1 since. (NOTE: During the weeks prior, the client machines intermittently lost connection with DATA1 and would have to reconnect)
    Last week: OFFICE 2 - Mac Pro hard drives configured the same as OFFICE 1; however, HD2 was not used for TM backups. TM was turned on and set to backup HD1/DATA1/DATA2 to HD2 (exactly like OFFICE 1). The next day, TM could not find HD2 and backups stopped running. I rebooted the machine, HD2 reappeared, but we did not restart the TM backups.
    Today: OFFICE 2 client machines have experienced intermittent disconnecting of DATA1.
    I wasn't extremely concerned with the situation at OFFICE 1 as these Pros are almost five years old and in constant use. We plan on purchasing an external drive for the TM backups. HOWEVER, with a similar situation now being experienced in OFFICE 2, I am perplexed.
    Could both machine be experiencing hard drive failures weeks apart? They were both purchased and installed at the same time.
    Is there a known issue with TM and internal drives?
    One difference between the two machines: OFFICE 1 is running OS X 10.8.5; OFFICE 2 runs 10.6.8
    Any suggestions/help is appreciated. Thanks!

    Relying on TimeMachine has some issues, along with only having one, I use at least two swapping TimeMachine so that they rotate AND I clone every drive (volume actually) so I can swap drives if need be, especially useful for t he system but good for any drive.
    Power issues in t he buildings?
    There are some programs that will scan for and report and./or attempt to reassign a failing sector ("fail" is qualitative, is 10 write failures a fail? then the 9th is not but it is a "weak sector.") Some run in the background.
    Mirror can be 2 or 3 ( I prefer 3, that way if one fails I STILL have a mirror array in place) where any failure is not acceptable, AND where the array data is backed up usually - less important  when using a three-drive configurations.
    How old, when last initialized (zero), and is it showing spare blocks being used? that last is the most indicative of failed drive.
    Rare but a bad SATA cable or power (seeing how the cables are tucked away) is only way generally for multiple failures in same drive bay or computer. Note: early on in 2006-7 there were reports of some customers having motherboard and trouble with a drive bay , and t he problems showed up early.
    Often though it is NVRAM or SMC related issue trigged by something else, a USB cable or device that is faulty, even a PCIe controller that is the culprit. And replacing cable, keyboard, device, and resetting SMC and NVRAM (often NVRAM needed to be done multiple times, but never keep resetting SMC) - unplugged and when you connect back up, do not install anything other than system, keyboard and mouse and see if that helps.
    With a drive, likely the drive in 85% or more, is fine, but the directory is not, or it needs to be erased to rebuild all the system partitions.
    1TB is small for TimeMachine. 350% of the amount of data, and always have free space for a full backup set of all the data. T.M. will try and prefers to automatically backup any and everything plugged in and connected, rather than my preference which is ASK FIRST to add a drive to TM backup set, otherwise leave it out. 600GB of data and system would mean 2.5TB drive, maybe 2TB minimum.

  • Issues with mac pro 2014 and Adobe CC

    Having major issues with my New Mac Pro since installing 10.9.3.  The issues are with render in Adobe CC products and glitches on displays.
    Model Name:          Mac Pro
      Model Identifier:          MacPro6,1
      Processor Name:          12-Core Intel Xeon E5
      Processor Speed:          2.7 GHz
      Number of Processors:          1
      Total Number of Cores:          12
      L2 Cache (per Core):          256 KB
      L3 Cache:          30 MB
      Memory:          64 GB
      Boot ROM Version:          MP61.0116.B05
      SMC Version (system):          2.20f18
      Illumination Version:          1.4a6

    Well known issue and no solution yet. There is nothing wrong with your computer.  http://9to5mac.com/2014/05/21/os-x-10-9-3-breaking-mac-pro-graphics-card-compati bility-with-critical-pro-apps/

  • PSE 10 Install issue with Mac OS 10.6.8

    Hi,
    I'm having trouble installing a copy of PSE 10 on a Macbook Pro (Intel 2.4 GHz) with Mac OS X version 10.6.8.  I've tried downloading the software twice and get errors on both copies.  Here is the latest error:
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 23 error(s), 3 warning(s)
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0 will be uninstalled now.
    ----------- Payload: {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0 -----------
    ERROR: DF027: Unable to copy file from "/private/tmp/.tempdirJZhvRqio/Assets1/Adobe Photoshop Elements Editor.app/Contents/Required/PDFL/Fonts/AdobeMingStd-Light.otf" to "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Required/PDFL/Fonts/AdobeMingStd-Light.otf" Error 0(Seq 1343)
    ERROR: DW063: Command ARKCopyFileCommand failed.(Seq 1343)
    ERROR: DF037: Unable to delete directory "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Required/PDFL/Fonts"(Seq 1332)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 1332)
    ERROR: DF037: Unable to delete directory "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Required/PDFL"(Seq 1152)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 1152)
    ERROR: DF037: Unable to delete directory "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Required"(Seq 1098)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 1098)
    ERROR: DF023: Unable to delete file "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Info.plist". Error 0(Seq 2)
    ERROR: DW063: Error rolling back command ARKCopyFileCommand(Seq 2)
    ERROR: DF001: Unable to get permissions of "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents"(Seq 2)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 2)
    ERROR: DF001: Unable to get permissions of "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app"(Seq 2)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 2)
    ERROR: DF001: Unable to get permissions of "/Applications/Adobe Photoshop Elements 10/Support Files"(Seq 2)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 2)
    ERROR: DF015: Unable to delete symlink "/Applications/Adobe Photoshop Elements 10/Adobe Photoshop Elements 10"(Seq 1)
    ERROR: DW063: Error rolling back command ARKCopySymlinkCommand(Seq 1)
    ERROR: DF001: Unable to get permissions of "/Applications/Adobe Photoshop Elements 10"(Seq 1)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 1)
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Photoshop Elements 10: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US: Install failed
    The second downloaded version made it farther than the first on the installation.  It makes it to the installation of PSE 10 and then jumps from 60% installed to 98% and shows the above message.  This is getting really frustrating given that it takes me several hours to download a copy of this software.
    Any advice would be greatly appreciated.

    Hi Barbara,
    Thanks for the advice.  Unfortunately, it didn't work.  I deleted (and emptied the trash) of the Adobe folder in the Hard drive>library>application support folders, uninstalled the partial install of PSE 10 using Adobe's uninstall, turned off the antivirus software, and tried installing from a new administrative account.  Here is the error code from this most recent attempt.
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 23 error(s), 1 warning(s)
    ----------- Payload: {60CB5C6D-5B99-45D3-BAB5-E7728182101E} Adobe Photoshop Elements 10 10.0.0.0 -----------
    ERROR: DF027: Unable to copy file from "/private/tmp/.tempdirSAstoywp/Assets1/Adobe Photoshop Elements Editor.app/Contents/Required/PDFL/Fonts/AdobeMingStd-Light.otf" to "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Required/PDFL/Fonts/AdobeMingStd-Light.otf" Error 0(Seq 1343)
    ERROR: DW063: Command ARKCopyFileCommand failed.(Seq 1343)
    ERROR: DF037: Unable to delete directory "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Required/PDFL/Fonts"(Seq 1332)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 1332)
    ERROR: DF037: Unable to delete directory "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Required/PDFL"(Seq 1152)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 1152)
    ERROR: DF037: Unable to delete directory "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Required"(Seq 1098)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 1098)
    ERROR: DF023: Unable to delete file "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents/Info.plist". Error 0(Seq 2)
    ERROR: DW063: Error rolling back command ARKCopyFileCommand(Seq 2)
    ERROR: DF001: Unable to get permissions of "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app/Contents"(Seq 2)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 2)
    ERROR: DF001: Unable to get permissions of "/Applications/Adobe Photoshop Elements 10/Support Files/Adobe Photoshop Elements Editor.app"(Seq 2)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 2)
    ERROR: DF001: Unable to get permissions of "/Applications/Adobe Photoshop Elements 10/Support Files"(Seq 2)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 2)
    ERROR: DF015: Unable to delete symlink "/Applications/Adobe Photoshop Elements 10/Adobe Photoshop Elements 10"(Seq 1)
    ERROR: DW063: Error rolling back command ARKCopySymlinkCommand(Seq 1)
    ERROR: DF001: Unable to get permissions of "/Applications/Adobe Photoshop Elements 10"(Seq 1)
    ERROR: DW063: Error rolling back command ARKCreateDirectoryCommand(Seq 1)
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Photoshop Elements 10: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Photoshop Elements 10_AdobePhotoshopElements10_en_US: Install failed
    This computer has had some previous Photoshop versions migrated to it over the years (Photoshop 4.0 for OS 9, and Photoshop 7.0).  Photoshop 7.0 stopped working after I upgraded the OS from Tiger to Snow Leopard, and I no longer have the disks or serial number so that is why I'm trying install PSE 10.  Could these old versions (which I tried to delete, but did not have a specific uninstall version for) be a source of this issue?  If so, is there a way to make sure they're all gone?
    Thanks

  • Permission/Privilege Issues With Mac OS Lion

    I created a new user account after I installed Lion, transferred my files over, and now I'm having issues with my account. I don't know if permissions and privilages are responsible for the issues, but seemingly so. I also have to mention that when I was changing over user accounts, I ended up wanting to change the short names on both my old and new accounts, so I used the root user to do so. Here are some problems I've been experiencing:
    - When I open system preferences, it always opens up to the General pane. No matter what.
    - After restarting, certain windows that I had open at a certain time keep opening up, no matter if I closed them out and had completely new windows open.
    - Preferences in certain applications will not save. Audacity opens up each time I start my computer, there is a tick box for show this screen when starting Audacity, I untick it, but it still opens up each time. Photoshop gives me a message that my preferences can't be saved because I don't have the right privilages. Textedit keeps opening up to a certain file I had open a couple of days ago, and when I try to save a new document, it gives me an error. Safari only remembers history from a couple of days ago. And when I try to reset Safari, and reopen it, the same old history is displayed.
    - When I try to move files to my desktop or to the Trash, I have to authenticate it.
    I tried Repairing the disk, repairing permissions, inserting my Mac os leopard disk and doing the same, and using the Reset Password utility on the Mac os installation disk to repair permissions to my home folder, but nothing is working.

    Hi everyone, I have found a solution. This worked for me:
    1) Create a new user account. Make sure it has a desireable name, otherwise you're going to want to change it later, and that will cause permission issues. (check if preferences are saving in this temporary new account, if not, I can't help you.)
    2) Transfer all the files you want to keep by putting them in the SHARED folder.
    3) Change permissions to the folders and files in your shared folder by right clicking and clicking on GET INFO. Then go to the very bottom of the popup menu and unlock the picture of the lock. Next change permissions so that your new account will have permission to view the files. You might have to add your new account to the list by pressing the plus button, or simply allow staff the read and right, or just let everyone read and right. Next click on the gear menu (the one with the little gear on it.) and click on APPLY TO ENCLOSED ITEMS.
    4) Go to your new user account and take the things in the shared folder and put them where you had them in your older account.
    Now you have a new user with the files you want, the permissions right, and preferences will save!
    I really really really hope this works for you. I know how extremely frustrating it was. It worked for me, and I am so relieved now.

  • Display Issues with Mac Pro 1.1 HELP!!

    I have a Mac Pro 1,1:
    Model Name: Mac Pro
    Model Identifier: MacPro1,1
    Processor Name: Dual-Core Intel Xeon
    Processor Speed: 2.66 GHz
    Number Of Processors: 2
    Total Number Of Cores: 4
    L2 Cache (per processor): 4 MB
    Memory: 4 GB
    Bus Speed: 1.33 GHz
    Boot ROM Version: MP11.005D.B00
    SMC Version: 1.7f10
    Running OSX 10.6.3
    I'm on my second graphics card [ATI Radeon HD 2600] after having issues with the original [NVIDIA GeForce 7300 GT]. The issue with the NVIDIA card was that, at times, it would display digital artifacts, glitches, distortion and freeze up the system forcing me to have to do a hard shut down. I found many reports of similar issues with that card and the Mac Pro 1,1's.
    When I replaced it with the ATI the problem went away for 6 months and now IT"S BACK.
    So, are there any particular graphics cards that work OK with the Mac Pro 1,1? I don't want to waste my money again only to encounter the same issue!
    I'm also contemplating getting a new Mac all together.
    Please advise, I've read many threads with this issue and they all seem to point to the same deal: replace the card. I can't afford to keep replacing graphics cards.
    Saki

    The 2600XT required 10.5.2+ and while it may 'look' like a G5 the Mac Pro is not. G5 refers to IBM PowerPC based, not Intel Xeon EFI based.
    You're running 10.6.3, might want to update your profile itself.

  • Compatibility issues with mac OS - Lightroom 4 works where CS5 won't

    Hope someone can shed some light on this issue...
    I tried installing Lightroom 4 on Mac OS 10.6.1 (which is currently running CS5 without issues) but the specs call for OS 10.6.8 or later (10.7). When I updated my OS to 10.6.8, none of my CS5 apps work! They encounter launch errors - InDesign, Illustrator, Dreamweaver... only Photoshop seems to work. So, I reverted back to OS 10.6.1 and all the programs function. Is Adobe working on a solution to fix this issue? I see with the forums that several other users have noted the same issue with CS5 not working in the OS 10.6.8 environment. I don't want to upgrade my OS just to have Lightroom function, but none the CS apps. I was thinking of partitioning my HD to load both OS, but that shouldn't be the workaround. I am very disappointed that I've purchased Lightroom 4 and now am unable to use it due to compatibility issues with the OS with the rest of CS5.0.

    Pixelzboy are you receiving any specific errors when launching your applications under 10.6.8?  CS5 should work just fine with 10.6.8 as well as 10.7.3.  You may also want to post to the product specific forums with your launch errors as the users in those forums will be more familiar with troubleshooting steps specific to those products.

  • E2100L Cisco Connect and Network Magic compatibility issues with Mac OS X 10.7 Lion

     When you will release the latest version for Wireless router Linksys E2100L?, because I bought a MAC with Lion and I can´t use my Router.
    Regards,
    Daniel

    Older versions of Cisco Connect for Mac computers have compatibility issues with the latest release of Mac OS X (10.7 “Lion”). Only Cisco Connect versions 1.4.11222 and newer are compatible with the Lion operating system.
    Here is the link to ensure that Cisco Connect can be installed on your Mac: http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=a4e763be954243cfa0ab960c0fac7105_KB_23xxx_EN_v1.xm...
    There is no such information about the release of Cisco Connect for E2100L for the Mac OS X (10.7 “Lion”) compatibility, so you need to wait for further release of the firmrware for E2100L. 

Maybe you are looking for

  • Why does my Adobe Reader DC stop working when I click scroll down options?

    I used to use PDF Suite 2014 Standard to view pdf files. However, tonight a message appeared when I attempted to open files saying ..."if the document does not load then the pdf viewer may not be able to display this type of document" I went to the w

  • [Resolved] WDK bug with url links

    Hello, My problem concerns the Wireless Developer Kit (10.1.2.0). First I will explain my context: I develop XHTML-MP jsp web pages with Jdeveloper in order to display them on Pocket PC or mobile phones. My problem is that when I want, for instance,

  • Xperia Z1S backup does not seem to have worked

    Last night I updated to lollipop, and that messed up my messenger. So I did a backup using PC companion, formatted my phone, and then used PC companion to restore the backup to my phone. It didnt give me any errors, just told me to unplug my phone, t

  • Routing error in Application Best Practice App (TDG) ?

    Hi All, i try Application Best Practices ... but if i select always another product ... the category and the Vendor are always the same. But if we check the json files there are different. Or should it not work in mock modus? regards Bernard

  • I cannot connect to internet after I update system.

    Hi, I update my system a few day ago (use systemd to replace rc.d) and I cannot connect internet. I guess my router table is broken, but I cannot find any problem. I use ping to try some IP. And I find I connect to local machine only. Do I miss some