3 issues on Apple Mac, program runs fine on Windows

Hello,
some users have trouble running my app on their apple macintosh machines. i don't have one myself, so it's pretty hard for me to find what is causing the issues, i'd appreciate your help therefore.
1) frame not receiving close notification
public class Trakker_Main extends JFrame
     public Trakker_Main()
          // snipped some code
          addWindowListener(new java.awt.event.WindowAdapter()
              public void windowClosing(WindowEvent winEvt)
                   doShutdown();
}on my windows pc, "doShutdown" is called when i press ALT+F4 or the close button in the top right corner.
on a users mac pc, it is not called when he presses the "apple + Q" combination. why?
2) (drag&)drop not working
i have a JTable and enable drop support for files from windows explorer / apple "finder" with this call:
fileTable.setTransferHandler(new FSTransfer());
public class FSTransfer extends TransferHandler
         public boolean importData(JComponent comp, Transferable t)
              Util.log("DEBUG: importData called", Level.SEVERE);
               // Make sure we have the right starting points
               if (!(comp instanceof JTable))
                    return false;
              Util.log("DEBUG: importData called 2", Level.SEVERE);
               if (!t.isDataFlavorSupported(DataFlavor.javaFileListFlavor))
                    return false;
              Util.log("DEBUG: importData called 3", Level.SEVERE);
               try
                    @SuppressWarnings("unchecked")
                    List<File> data = (List<File>)t.getTransferData(DataFlavor.javaFileListFlavor);
                    File[] files = (File[])data.toArray();
                   Util.log("DEBUG: importData files: " + files.length, Level.SEVERE);
                    Thread thread = new Thread(new FileAddThread(files));
                   thread.start();
                   Util.log("DEBUG: importData thread started", Level.SEVERE);
                   setStatusText("Adding, please wait...");
                    return true;
               catch (Exception ex)
                    Util.log("DRAGNDROP ERROR: " + ex.getMessage(), Level.SEVERE);
               return false;
          // we only support file lists
          public boolean canImport(JComponent comp, DataFlavor[] transferFlavors)
              Util.log("DEBUG: canImport called 1", Level.SEVERE);
               if (comp instanceof JTable)
                   Util.log("DEBUG: canImport called 2", Level.SEVERE);
                    for (int i = 0; i < transferFlavors.length; i++)
                         if (!transferFlavors.equals(DataFlavor.javaFileListFlavor))
                              return false;
                    return true;
               return false;
          static final long serialVersionUID = 0;
dropping files in windows works perfectly, but not on the mac. what am i doing wrong?
3) table sorting not possible in java 1.5
in java 1.6 (available on windows) i can easily sort tables with:          TableRowSorter<FileTableModel> sorter = new TableRowSorter<FileTableModel>();
          fileTable.setRowSorter( sorter );
          sorter.setModel( fileTableModel );
unfortunately there is no java1.6 on mac, only 1.5. do i need to implement my own sorting algorythm now?
thank you for your help & hints.
robert                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

1. It's been awhile since I've used it, but you might want to check out Apple's [OSXAdapter class|http://developer.apple.com/samplecode/OSXAdapter/index.html] to handle OSX-specific stuff. It provides a means to do Mac-specific stuff (single menubar, Preferences/About in the application menu, etc.). It also supports specifying a "quit" operation, which may be what you're looking for. Best of all, it has a "dynamic" implementation so that you can use it without directly using any Apple-specific Java classes and thus breaking cross-platform compatibility.
3. Check out this for a way to make JTables sortable.

Similar Messages

  • Why does my program run fine in highlight execution, but not normally?

    When I highlight execution, the program runs fine, but when I run the program normally, nothing happens. (I believe the program is stuck at the initialize cam vi). If someone could help me out, I'd be very thankful
    Attachments:
    intensity10.vi ‏139 KB

    The first troubleshooting technique I did was to add several "waits" throughout the program, particularily with the loops. I learned the problem was actually with the hardware itself and the camera mode. The camera must take an empty frame before it can store the image, thus the for loop needed to be replaced with a while loop.
    However, after fixing the program using boolean logic, 2 of the buttons disappear on my front panel during use (which I will have to further troubleshoot). Thank you!
    Attachments:
    intensity11.vi ‏158 KB

  • My java program runs fine even if i don't specify access specifier of class

    Hi,
    My java program runs fine even if i don't specify access specifier of class as public .
    Then why do they say that atleast one class should be specified as public.
    please help.

    public access specifier is the default access
    specifier
    so if you dont give the access specifier before the
    class name it is not wrong.I think that you are wrong. The default specifier is package or "package-private".
    See here:
    http://java.sun.com/docs/books/tutorial/java/javaOO/accesscontrol.html
    Message was edited by:
    petes1234

  • I m using apple mac pc, when we start windows 7 , apple mouse doesn't work properly it take to much time to gain signals from the pc and many times it not work but when we use mac it moves fastly and works properly. please suggest me. thanks ravi

    i m using apple mac pc, when we start windows 7 , apple mouse doesn't work properly it take to much time to gain signals from the pc and many times it not work but when we use mac it moves fastly and works properly. please suggest me.
    thanks
    ravi
    <Email removed by Host>                                                                                                                                                                                                                                       

    sounds more like Bluetooth rather than moue, but w/o knowing w/o posting mac model type/year we... will... not... know... what you have
    All computers are personal computers, a PC though is also "non-Apple" in common usage.
    Mac also is platform and OS.
    Very confused reading what you are trying to tell us.

  • Why do some old Mac programs run slowly in Classic mode?

    I successfully installed OS 9 Classic Mode on an eMac.  At first, some of my old programs (Thinkin' Things, Millie's Math House, both edmark) ran fine, but as time went on they started jerking and freezing as they ran.  I re-started and it continued to do the same thing.  Any ideas on why these programs run slowly like this? 

    I gathered the info you suggested in previous message, but I was wondering if you could help me interpret it.
    Here's what I got:
    In Activity Monitor; System Memory; Page ins/outs = 12277/0.
    Memory is listed as 1.024 MB, with 822.11 MB free.
    I looked under CPU tab in Activity Monitor and did not exactly now what I was looking for.  What should I do with the CPU #'s?
    I opened Console in Utilities & there were any clues or repeating messages.
    The 40 MB hard drive has 9 MB free.
    I ran the 9.2 CD-based educ. software again.  Some does not boot up.  Some run fine.  Others are choppy at times. 
    Anyway, does this info suggest anything to you.  I wonder if it's a compatability issue between System 10.4.11, Classic Mode and the Power PC chip?  Was this common with Classic Mode? 
    I thank you so much in adavance dor any suggestions on how to solve this problem.
    Ed

  • How to measure if my Mac is running fine tuned

    I've been using my Mac for a while now and it seems to really cook. Lately, the past 3-4 months, it seems like a higher percentage of the time I'm waiting on it finish the spinning ball quite often?
    I installed iStats and it seems my CPU usage is pretty high for some reason and I can't tell why?
    Is there any way for me to know or measure if my Mac is running optimally? The CPU is pretty high but the ram doesn't seem to be an issue. It never spikes in usage.

    Open Activity Monitor, click on the CPU% column to sort in descending order. This should let you know what's consuming CPU time. Consider a little maintenance:
    Kappy's Personal Suggestions for OS X Maintenance
    For disk repairs use Disk Utility. For situations DU cannot handle the best third-party utilities are: Disk Warrior; DW only fixes problems with the disk directory, but most disk problems are caused by directory corruption; Disk Warrior 4.x is now Intel Mac compatible. TechTool Pro provides additional repair options including file repair and recovery, system diagnostics, and disk defragmentation. TechTool Pro 4.5.1 or higher are Intel Mac compatible; Drive Genius is similar to TechTool Pro in terms of the various repair services provided. Versions 1.5.1 or later are Intel Mac compatible.
    OS X performs certain maintenance functions that are scheduled to occur on a daily, weekly, or monthly period. The maintenance scripts run in the early AM only if the computer is turned on 24/7 (no sleep.) If this isn't the case, then an excellent solution is to download and install a shareware utility such as Macaroni, JAW PseudoAnacron, or Anacron that will automate the maintenance activity regardless of whether the computer is turned off or asleep. Dependence upon third-party utilities to run the periodic maintenance scripts had been significantly reduced in Tiger and Leopard.
    OS X automatically defrags files less than 20 MBs in size, so unless you have a disk full of very large files there's little need for defragmenting the hard drive. As for virus protection there are few if any such animals affecting OS X. You can protect the computer easily using the freeware Open Source virus protection software ClamXAV. Personally I would avoid most commercial anti-virus software because of their potential for causing problems.
    I would also recommend downloading the shareware utility TinkerTool System that you can use for periodic maintenance such as removing old logfiles and archives, clearing caches, etc.
    For emergency repairs install the freeware utility Applejack. If you cannot start up in OS X, you may be able to start in single-user mode from which you can run Applejack to do a whole set of repair and maintenance routines from the commandline. Note that presently AppleJack is not compatible with Leopard.
    When you install any new system software or updates be sure to repair the hard drive and permissions beforehand. I also recommend booting into safe mode before doing system software updates.
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    1. Retrospect Desktop (Commercial - not yet universal binary)
    2. Synchronize! Pro X (Commercial)
    3. Synk (Backup, Standard, or Pro)
    4. Deja Vu (Shareware)
    5. PsynchX 2.1.1 and RsyncX 2.1 (Freeware)
    6. Carbon Copy Cloner (Freeware - 3.0 is a Universal Binary)
    7. SuperDuper! (Commercial)
    8. Data Backup (Commercial)
    The following utilities can also be used for backup, but cannot create bootable clones:
    1. Backup (requires a .Mac account with Apple both to get the software and to use it.)
    2. Toast
    3. Impression
    4. arRSync
    Apple's Backup is a full backup tool capable of also backing up across multiple media such as CD/DVD. However, it cannot create bootable backups. It is primarily an "archiving" utility as are the other two.
    Impression and Toast are disk image based backups, only. Particularly useful if you need to backup to CD/DVD across multiple media.
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore.
    Additional suggestions will be found in Mac Maintenance Quick Assist.
    Referenced software can be found at www.versiontracker.com and www.macupdate.com.

  • Can I install Linux for Windows on my Apple Mac and afterwards use old windows programs as PageMaker on my new Mac. If yes where can I find Linus windows for Mac

    Can I install Linux for Windows at my new Mac and afterwards use old Windows programs as Photo Shop and PageMaker on my Mac? If yes where at the Internet can I find Linux for Mac and Windows?

    What is your definition of a "Linux for Windows" ?
    There is Linux like Ubuntu which can be installed on a Mac
    See the UbuntuForuns here https://wiki.ubuntu.com/MactelSupportTeam
    And there is Microsoft Windows which can be installed and used on a Mac with Apples BootCamp http://www.apple.com/support/bootcamp/ or through Virtualization apps like Parallels, VMWare Fusion or VirtualBox.
    Windows Programs don't run in a Linux only in Windows.
    Stefan

  • Memory leak? amd 64 bit using 1.4.2_03 program runs fine on other computers

    I have a program that runs fine on a red hat linux desktop and a pentium 1.6ghz xp pro laptop but on my amd 64 bit 3400+ xp pro desktop after ~20 seconds it slows to a crawl. i was originally using j2sdk1.4.2_04 but noticed this was not available for download anymore so i switched to j2sdk1.4.2_03 but have the same problem. my laptop is using j2sdk1.4.2_03. im not sure what the red hat linux machine is using. this is a starfield simulator and when it starts to slow all the stars turn gray and its like the drawLine is not working right either. anyone have any ideas? code is below
    import java.awt.*;
    import java.awt.event.WindowListener;
    import java.awt.event.WindowEvent;
    import java.util.*;
    import javax.swing.*;
    import java.io.*;
    class StarfieldWindowListener implements WindowListener
    public void windowActivated( WindowEvent e ) {}
    public void windowClosed( WindowEvent e ) {}
    public void windowClosing( WindowEvent e )
    System.exit(0);
    public void windowDeactivated( WindowEvent e ) {}
    public void windowDeiconified( WindowEvent e ) {}
    public void windowIconified( WindowEvent e ) {}
    public void windowOpened( WindowEvent e ) {}
    public class StarfieldSimulator
         public static void main (String args[])
              JFrame frame = new JFrame ("Starfield Simulator");
              frame.getContentPane ().setLayout (new BorderLayout ());
              if (args.length == 0) frame.getContentPane ().add (new Starfield (500));
              else frame.getContentPane ().add (new Starfield (Integer.parseInt (args[0])));
    frame.addWindowListener(new StarfieldWindowListener());
              frame.setSize (1024, 768);
              frame.show ();
    class Point3D
         public double x, y, z;
    public float r, g, b;
    public Color c;
         public Point3D (double x, double y, double z)
    Random random = new Random ();
              this.x = x;
              this.y = y;
              this.z = z;
    r = random.nextFloat();
    g = random.nextFloat();
    b = random.nextFloat();
    c = new Color( r, g, b );
    class Starfield extends JComponent
         protected boolean first;
         protected Point3D points[][];
         protected Random random;
         private int trail = 20;
    private double rot = .0005, co = Math.cos( rot ), si = Math.sin( rot );
         public Starfield (int numPoints)
    //RepaintManager repaintManager = RepaintManager.currentManager(this); repaintManager.setDoubleBufferingEnabled(false);
              first = true;
              random = new Random ();
              points = new Point3D[numPoints][trail];
              for( int y = 0; y < numPoints; ++y )
                   for( int x = 1; x < trail; ++x )
                        points[y][x] = new Point3D( 0, 0, 0 );
              for (int index = 0; index < numPoints; index++)
                   points[index][0] = new Point3D ((random.nextDouble () - 0.5) * 2.0, (random.nextDouble () - 0.5) * 2.0, (random.nextDouble () - 0.5) * 2.0);
         public void paint (Graphics g)
    //DebugGraphics g = new DebugGraphics(g1);
    int i;
              int halfWidth = getWidth () / 2;
              int halfHeight = getHeight () / 2;
              g.setColor (Color.black);
              g.fillRect (0, 0, getWidth (), getHeight ());
              int pointsLength = points.length;
              for (int index = 0; index < pointsLength; index++)
                   for( i = trail - 1; i >= 1; --i )
                        points[index] = points[index][i - 1];
    if( points[index][0].z <= 0.0 )
    while (points[index][0].z <= 0.0) points[index][0] = new Point3D ((random.nextDouble () - 0.5) * 2.0, (random.nextDouble () - 0.5) * 2.0, (random.nextDouble () - 0.5) * 2.0);
    points[index][0].r = random.nextFloat();
    points[index][0].g = random.nextFloat();
    points[index][0].b = random.nextFloat();
    for( i = 1; i < trail; ++i )
    points[index][i].x =points[index][i].y = points[index][i].z = 0;
    g.setColor (points[index][0].c);
                   for( i = 0; i < trail; ++i )
                        points[index][i].x = points[index][i].x * co - points[index][i].y * si;
                        points[index][i].y = points[index][i].y * co + points[index][i].x * si;
    int sx1, sy1, sx2, sy2;
    sx1 = (int) ((points[index][0].x * halfWidth) / ((points[index][0].z) * 10.0)) + halfWidth;
    sy1 = (int) ((points[index][0].y * halfHeight) / ((points[index][0].z) * 10.0)) + halfHeight;
    if( points[index][(trail - 1)].z == 0 )
    g.drawRect( sx1, sy1, 1, 1 );
    else
    sx2 = (int) ((points[index][(trail - 1)].x * halfWidth) / ((points[index][(trail - 1)].z + .0005 * (trail - 1)) * 10.0)) + halfWidth;
    sy2 = (int) ((points[index][(trail - 1)].y * halfHeight) / ((points[index][(trail - 1)].z + .0005 * (trail - 1)) * 10.0)) + halfHeight;
    g.drawLine( sx1, sy1, sx2, sy2 );
    points[index][0].r = (float) Math.min ( points[index][0].r + .00005, 1.0 );
    points[index][0].g = (float) Math.min ( points[index][0].g + .00005, 1.0 );
    points[index][0].b = (float) Math.min ( points[index][0].b + .00005, 1.0 );
    points[index][0].c = new Color( points[index][0].r, points[index][0].g, points[index][0].b );
                   points[index][0].z -= 0.0025;
    try {
    Thread.sleep(1);
    } catch (InterruptedException e) {
    e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
    repaint();

    doesnt ANYONE have an answer?? please?Apparently not. If the answer involves us typing in your program, understanding it, debugging it, etc., hey, we all have jobs, too. We can answer specific questions ("How do I do <some specific task>?" or "I tried this and that <specific task> but ran into <specific problem>"). But we don't have all day to debug everyone's programs.
    * First of all, use the code formatting markup around your code (See the Formatting Help link).
    * Secondly, tell us what you have tried - have you looked at your Task Manager and recorded your program's size? Compare it on the machines where it runs well, and the one where it doesn't.

  • Program running fine in Debug mode but failing in direct execution

    Hi All,
    I am facing a peculiar problem, I have created a report that create STO then Delivery and then Shipment one after one. I have used BAPI to do so. If STO creation is successful then Create Delivery and if delivery creation is also successfull then create Shipment.
    When I run this program by pressing execute button it is only creating STO and coming out ,but if I run it in Debug mode I get all the three( STO, Delivey,Shipment). Since it run fine in debug so I can't found where the problem is.
    Can any one help???
    Regards
    Hemant

    Hi guys,
    A learning for me .... how important WAIt parmeter is in commit work .. Initially i have not set WAIT paramater in commit BAPI to X due to this further processing.. Delivery and Shipment creation was failing in direct execution ... as after STO creation I was reding EKPO and that was failing in direct execution , but in backgroung everything was ok.
    Thanks for your time.
    Cheers
    Hemant

  • Photoshop CS5 lags, but other programs run fine

    I installed the CS5 Creative Suites onto my eMachines E525 latpop. It came with 2 GB of RAM but I upgraded it to 4 GB.
    Harddrive is at 165GB free of 220GB.
    Processor is Intel Celeron CPU 900 @ 2.20 GHz, 2194Mhz, 1 Core, 1 Logical Processor
    All the other programs in the suite run fine. The only problem I'm having is with Photoshop. Whenever I use a tool, it lags. If I use any of the shape tool, as I drag it out, it lags. Same goes for the brush tool and any other tool that I use.  Efficiency is at 100% whenever I have a document open, but the tools  still drag. Even on a blank 500x500 document at 72 dpi lags.
    I've looked through the Optimize Photoshop Perfomance page, and I've done all that I know I can do, and it still lags.
    I turned off OpenGL Drawing, Let Photoshop use 2385MB (70%). I've changed it to let it use more, but that doesn't help.
    I installed Photoshop, InDesign, Illustrator, Dreamweaver, and Flash Catalyst from the Suite.
    I also have Norton 360.
    Is Norton causing Photoshop to be slow or is it something else?
    Is there anything I can do to fix the lag or do I need to make more upgrades to my laptop?

    What display interface is in that laptop (e.g., a nVidia model, Intel model, etc.)?
    The OpenGL implementation in the video driver can have a drastic effect on the performance.  Have you tried the following as a diagnostic?
    Edit - Preferences - Performance.
    Uncheck [ ] Enable OpenGL Drawing.
    Close and restart Photoshop.
    If after doing the above you see the lag problem eliminated, you might want to check with your laptop maker (or in rare cases the video interface maker) to see if any updated display drivers have been released.  Many OpenGL problems have been corrected in recent driver releases.
    Make sure you re-enable OpenGL after changing drivers to see if the highest performance is now available to you.
    You could also try keeping OpenGL enabled but going into the [Advanced Settings...] and changing to Basic mode.
    -Noel

  • Program runs fine then takes a long time to close

    Hi Everyone,
    I have written a mid sized application, which is running fine until it comes to closing, then it takes an age to close. If it has only been running for a short time it closes fine, but after some time running it takes longer and longer to close. Until you try to close, it remains fully responsive and performing well.
    I have heard the phrase 'memory leak' banded around, but am not 100% sure how I would have created one of these. I am also looking into my queues accidentally getting too big.
    If you had this a problem like this, where would you look first?
    I could do with some advice around common places that this kind of thing happens.
    I don't really want to post my whole application on here, but it includes:
    Multiple loop event based producer consumer
    Camera acquisisition and image processing
    DAQ for some simple digital I/O
    Reading and writing to text and image files
    Error handling
    Compiled as an executable
    No local variable abuse
    Any advice would be appreciated.
    Thanks.

    Any building of arrays?  If those get large, the application can start to get sluggish.
    P@Anand is probably on the right track.  Make sure you check your closing operations and make sure a loop isn't left sitting there for a long time.
    I have also seen file handling take a lot of time to delete temporary files or close large files.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Can Mac Pro run AHCI under Windows?  No native command queuing?

    It seems that Mac Pro runs AHCI under OS X.
    Under Windows Vista 32/64 or XP 32/64, some reason AHCI cannot be enabled. It seems to only run legacy IDE mode. Even with modern HD, Mac Pro can not seems to take advantage of AHCI benefits such as hot-plugging and native command queuing. Does Apple thinks that native command queuing is necessary feature under OS X but not under Windows?
    Even with installing AHCI driver using F6 during Windows installation, AHCI mode cannot be obtained.
    Is there a simple way to enable AHCI mode besides modifying the grub bootloader as some suggested in forum? Or is it not possible until Apple modifies BIOS CSM or allows EFI modification? It seems that Apple wont address this issue with firmware update since Intel Mac Pros have been available for years now.
    Any suggestion of enabling AHCI under windows XP / Vista will be welcomed.

    HD Tune wont expect to show any change with or without NCQ.
    NCQ will show advantage in server environment or heavy multi-tasking environment, not on I/O meter. NCQ may even slow some game playing in some instance.
    AHCI adds other stuff like hotswapping or other modern goodies, not just NCQ.
    Mac Pro has Intel chip / controller capable of AHCI and RAID (well pseudo Intel Matrix RAID) only if Apple allows us to enble it in EFI.

  • Can Labview Programs run from the Windows System Tray?

    Does anyone know if Labview Runtime executables can be run in the Windows System tray? Any help would be appreciated.
    I'm creating a program that I want to run in the background, not visible on the desktop or taskbar.
    Thanks,
    Tom

    Requirements    Price: $29.95
     Application Software:
    LabVIEW 7.0+
     Toolkits Software:
     Additional Software:
     Language's:
    LabVIEW
    INVtray LabVIEW Toolkit allows the programmer to create a LabVIEW program that can be hidden from the task bar and accessed through the System Tray.  Comes with a sample VI that demonstrates all the features of the toolkit.

  • How Can I Open Nikon D750 RAW with CS6, which runs fine on Windows XP

    Successfully installed PhotoShop CS6 disks 6 mos ago on my offline Windows XP Computer (Did this via Adobe Phone support, which seems to be no longer available.)
    Just bought Nikon D750 and thinking I may need an update for the CS6 PhotoShop RAW File Converter.
    I've heard the patch won't run on an XP machine, which seems odd to me since the program runs on it with no problems.
    Is there a way to try to download this patch on one computer (laptop) and install it on the other computer ("workstation"), which has the CS6 installed?
    Related question:
    If I have to buy a new computer  : ) will I be able to run those CS6 disks on that computer with the new operating system, along with the D750 converter?
    Feel like I am caught in no man's land.

    Successfully installed PhotoShop CS6 disks 6 mos ago on my offline Windows XP Computer (Did this via Adobe Phone support, which seems to be no longer available.)
    Just bought Nikon D750 and thinking I may need an update for the CS6 PhotoShop RAW File Converter.
    I've heard the patch won't run on an XP machine, which seems odd to me since the program runs on it with no problems.
    Is there a way to try to download this patch on one computer (laptop) and install it on the other computer ("workstation"), which has the CS6 installed?
    Related question:
    If I have to buy a new computer  : ) will I be able to run those CS6 disks on that computer with the new operating system, along with the D750 converter?
    Feel like I am caught in no man's land.

  • After updating to Firefox 11.0 Mac, Firefox runs, but no window can be seen

    I'm running OSX 10.5.2 I just upgraded to Firefox 11.0. Firefox runs, but no windows can be seen.

    See also:
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    *Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 and later Safe mode disables extensions and disables hardware acceleration.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • How do I manually move "iTunes" mp3 to iPhone?

    Ok here's the deal... I have a New iPhone 4s and a $24.99 iTunes Match Membership with 8,000 songs stored on iCloud. I have a 64kbps audio file that is 8 hours long, and is 95mb. It won't upload to the iCloud as it is only 64kbps, and must be greater

  • Can  I install my Ipad 2 with Mac OS 10.4.11 software?

    Can I install my new Ipad 2 with Mac OS 10.4.11 software..? Thanks for your response.

  • Problem with SQLJ ? NoSuchMethodError

    Hi, I wrote an application which makes use of sqlj and jdbc; it works fine on my local machine. But after deploying to the application server 9.0.2 the following error message occurs as soon as a jsp tries to invoke a method in a class file: java.lan

  • Why not using LOCALs in LOOPs ?

    Why avoiding LOCALs in LOOPs? (I saw some posts that suggest it). In my case, I have one button (Stop) and I want to be able to stop the application along 3 different independent loops. How can I do it without locals ? Thanks

  • Table necessary for join - no columns wanted

    I have three tables, A,B and C. A joins to B and B joins to C. I want to see information from A and C but not B. Discoverer workbooks will not let me select just table A and C, I must select table B for the join condition to work. How can I "hide" th