ATSServer locks up on launching java apps/flash content

Suddenly, every time I try to launch an app that's java-based, or one that uses flash (such as the Shorter Oxford English Dictionary), or any of my browsers load a webpage with flash content, I get the following console hangup:
com.apple.ATSServer[670] ATSServer got a fatal error (status: -4) while processing a message (id: 22) from pid=nnnn.
com.apple.launchd[139] (com.apple.ATSServer) Throttling respawn: Will start in 10 seconds
I have done the following that might have been proximate causes:
cleared duplicate fonts
removed dodgy fonts
cleared font cache
uninstalled MS Office 2008
deleted fonts that the MS Office uninstaller helpfully doesn't delete
but the problem persists. This all seemed to start after either the latest java update, or the latest MS Office 2008 update, but may be nothing to do with either. At least I can access my online banking if I use FlashBlock in firefox, but since this doesn't seem to be a font issue, can someone suggest where to go next with this?
- padmavyuha

Well, actually it's still not working properly, although I've got my dictionary working again - I'm getting a couple of console errors persecond while it's running - and if flash is enable in browsers, it still drops the bomb occasionally. I'll follow this up with Adobe, since it's clearly a flash issue.

Similar Messages

  • Launch Java app through a bat file

    Hi,
    Because I have to launch my Java App through a batch file, I don't know if I can create a new java class to execute this bat file to launch my Java App? Is that gonna work?
    Henry.

    Yes I created a batch file and tested. If I execute my batch file, the java app will be lauched as expected.
    Here is my java class that execute my batch file
    import java.io.*;
    public class LaunchTest {
    public static void main(String args[])
    String cmd[] = new String[3];
    try
    String osName = System.getProperty("os.name" );
    //System will detect current operating system
    if( osName.equals( "Windows NT" ) || osName.equals( "Windows 2000" ) )
    cmd[0] = "cmd.exe" ;
    cmd[1] = "/C";
    cmd[2] = "c:\\Run.bat"; //Run.bat will set classpath and launch my java app
    else if( osName.equals( "Windows 95" ) || osName.equals( "Windows 98" ) )
    cmd[0] = "command.exe" ;
    cmd[1] = "/C";
    cmd[2] = "c:\\Run.bat";//Run.bat will set classpath and launch my java app
    Runtime rt = Runtime.getRuntime();
    //running the commands
    Process proc = rt.exec(cmd);
    // any error message?
    StreamGobbler errorGobbler = new
    StreamGobbler(proc.getErrorStream(), "ERROR");
    // kick them off
    errorGobbler.start();
                   // any error???
    int exitVal = proc.waitFor();
    catch (Throwable t)
    t.printStackTrace();
    System.out.println("error...");
    And here is my batch file
    @echo off
    set path=e:\jbuilder4\jdk1.3\bin
    set classpath=E:\JBuilder4\jdom-b7\jdom-b7\build\jdom.jar;E:\JBuilder4\jdom-b7\jdom-b7\lib\xerces.jar;.
    d:
    cd AutoTest\classes
    java FirmwareTestPack.FirmwareMainClass
    exit
    When I run the java class above, Dos prompt popped up for a second then disappeared. It did not launch my Firmware pplication.
    Thank you.

  • Launch Java App from Windows Desktop

    What's the best way to launch a Java application from a Windows XP desktop without the console showing?

    If your class Main.class is part of a package, you cannot invoke Main directly without providing the package. You may have to include the -classpath option (depending of the working directory). The default value for -classpath is "."
    You should try:
    javaw myPackage.Main
    (if the working directory is parent to directory 'myPackage')
    or
    javaw -classpath .;c:\xxx\xxx\. myPackage.Main
    "c:\xxx\xxx\" is your root package's parent directory. Note that you may have to double quote the specified path.
    For details:
    http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html

  • Launch Java app without going to shell window?

    I saw lots of applications that were build with Java but run just like a Windows applications.
    Can you give me any clues on how to do this? For example, what can I do if I wish to launch a Java application without having to open the command-line window?

    yes, javaw meets what i needed @_@

  • Is there any way to make flash for android in firefox "lock-in", that is control the flash content, not move the page when moving my fingers?

    Like when i want to increase sound on youtube and it moves the page not the sound slider

    Tap the fullscreen button on the Flash video?

  • Java apps lock up on Windows 7 64 bit

    3rd party Java apps and apps I've developed all seemed to be very buggy on one of my 64 bit windows 7 machines with JRE 1.6. I can run them in an XP VM on the same computer with no problems. Some apps lock up immediately and others it's just a matter of time before they lock up. I've searched and searched but haven't seen this issue anywhere else and don't have this problem on my 64 bit Windows 7 machine at home. Does anyone have any idea what might cause this? I'm at a loss and since it's my work PC with the problem I have to test Java apps in the XP VM which is a pain.
    Edited by: ddevil63 on Jul 26, 2010 9:57 AM

    3rd party Java apps and apps I've developed all seemed to be very buggy on one of my 64 bit windows 7 machines with JRE 1.6. I can run them in an XP VM on the same computer with no problems. Some apps lock up immediately and others it's just a matter of time before they lock up. I've searched and searched but haven't seen this issue anywhere else and don't have this problem on my 64 bit Windows 7 machine at home. Does anyone have any idea what might cause this? I'm at a loss and since it's my work PC with the problem I have to test Java apps in the XP VM which is a pain.
    Edited by: ddevil63 on Jul 26, 2010 9:57 AM

  • "system cannot find the file specified" when launching a java app

    Hi,
    we are receiving an error message saying "The system cannot find the file specified" when launching a java app on a server. Exactly the same configuration on another server does not give the same problem.
    The dialog box with the error message only presents one button - OK - and after pressing the button the app continues to run normally. This however is a big problem for us as we are trying to convert the apps into system services using the wrapper (http://wrapper.tanukisoftware.org).
    Note: the problem exibits itself with and without the use of the wrapper.
    I am not very comfortable about reinstalling the JRE on a production server. Is there any way to see what file it is missing? Debug options or something similar?
    The JRE in question is 1.4.2_06. Many thanks in advance for your answers.

    if not setting Post-Processing option results in a cryptic error why doesn't Adobe do one of at least three things?
    1. Don't let user click Export on Export dialog if nothing's selected for Post-Processing.
    2. Default Post-Processing to Do Nothing
    3. Give the user a hint as to what the problem is when the error occurs instead of issuing cryptic error message.
    Allowing this error to persist for so long is ridiculous.

  • How do I close all running applications before launching my java app?

    Does anyone know of anyway I can code to close all running applications, even if I don't know the process names to begin with?
    Is there open source code than anyone has written to do this. Other applications interfere with my app and I need to terminate all running apps/processes before launching my app. Please advise.

    I see we aren't all on the same wavelength here, let
    me rephrase:
    How can I write JAVA code that will terminate all
    running applications so as not to interfere with the
    security of my application's content, as it is
    extremely sensitive content and I need to know that
    no applications are running which could defeat it.
    I would like my application to terminate all running
    applications, is this possible to write in java code.Do you consider all the processes running in the background (launched by the OS) as part of "all running applications"? Do you not consider the OS itself as part of it as well? You're really barking up the wrong tree. But go ahead, I know you won't be convinced regarding the wonkiness of your thinking.

  • Flash Builder doesn't launch my app nor debugger

    Hi, very odd.
    Flash Builder all of a sudden stopped launching my app or the debugger.
    When I press run Flash Builder switches to my browser (Firefox 3.x) then nothing.
    Doesn't open a new tab, no error messages, nothing.
    Exact same thing when I try to debug, except I get an error saying it failed to connect, session timed out.
    It also says to make sure it was compiled with debugger on (huh?) and that I'm running a debugger version of Flash which I am.
    Not sure what to do now. There is no real error message, and no odd behavior other than it just not doing anything.
    Any idea?

    After I hit run the URL that is shown on Firefox is the last page that I was on, so in this case, 'this' pages url; therefore, has nothing to do with what I'm trying to run. So in this case it would be "http://forums.adobe.com/post!reply.jspa?message=3625965"
    Now as for which version:
    Flash Player version: MAC 10,2,153,1 debugger version
    Mac OS: 10.6.7
    Update: Alright, it seems to have been some Firefox bug. I upgraded to Firefox 4.x on a haunch and somehow it must of reset whatever that was causing the problem and it now works as nornal. Thanks for the help though, appreciated.

  • Flash & Java apps crash Safari 4

    There are two websites I frequently go to and recently I have been experiencing problems after I downloaded Safari 4 on both my Mac Pro and Macbook Pro unibody. Both are OS X 10.5.6, and have the latest software updates. I can access both of the sites fine with IE 7 through VMware Fusion.
    First site is Stickam.com. I get an error message for Adobe Flash Player 10 which reads "Error # 2044: Unhanded IO Error Event:. text=Error #2036: Load Never Completed". I push continue and Safari crashes on me.
    The second site is Elluminate.com. It is a java-based web conferencing program I use for my classes. I click to enter the room from Safari 4, and the java application loads fine until the very end and crashes Safari. The error message I received is "The application Elluminate Live! quit unexpectedly. Mac OSX and other applications are not affected. Click to Relaunch....Report....Ignore".
    I have the error reports for both occurrences that I can post if needed. If this can't be resolved, do you think I can reinstall Safari 3 to fix the problem?

    Hi
    The first site played with no problems. Which version of Flash are you using? Latest is found here. Regardless of whether or not you upgrade Flash, "repair permissions" using Disk Utility. When done, restart Safari and try the site again.
    Regarding the second one, I tried to watch a demo. A Java app. was installed in my system, however, crashed when it opened. I suspect the second site is not yet S4 compliant.

  • Java Apps failing to launch

    Hi,
    I hope I'm posting this in the right place, I'm not quite sure. I'm running Windows 2003 Server Standard Edition. I was (attempting) to install WebLogic 8.1 Platform, but the installer kept failing. What would happen is the 'preperation' window would come up but the installer would never launch, even though javaw.exe showed up in the task manager. (I finally installed using console installation.)
    Once that was installed, I tried launching the workshop - yet again the same thing happened. java.exe or javaw.exe shows up in the task manager but the workshop never launches.
    It seems like any java app simply won't launch. How can I troubleshoot/fix this problem? On my hard drive I have:
    j2sdkee1.3.1
    jdk1.3.1_09
    Note, I really know little about java at all. Let me know if this should be in a different forum.
    Thanks
    Tom

    I have similar problem.
    Had Weblogic 8.1 installed without problem, then installed JDK 1.4.2.05 successfully.
    Now everything stop working and even a simple applet on IE would crash the browser. Any applet would die and I'd see java.exe on the Task Manager sitting there doing nothing.
    I uninstalled the JDK but still Weblogic got messed up, can't even uninstall it.
    Any insight would be appreicated. I'd really hate to reimage the OS, only if that's the last resort.
    Basuki

  • How to launch an app from Java in Mac OSX?

    I would like to launch another application from my Java code which will run on OS X. Doesn anyone know how to do this? I think it involves the "Runtime.getRuntime.exec()" method, but I'm not sure how to tell it which application to launch.
    Thanks

    I dont know about OSX but i can give you a generalized
    solution. In all OS's there will be a way to get to
    command prompt. It is not really true: MacOS is one noticeable exception! Version 9, like every previous one, was completely extraneous to the notion of "command prompt", because the Macintosh, since its origin to nowadays, has been a "fanatically" User-Centric system: everything is iconic. A side effect of this approach is that MacOS was a pretty hard platform for low-level developers...
    In MacOSX things have dramatically changed: this OS is a powerful Unix-like one, with the beautiful dress that only a Mac can wear: and finally, all you Mac users, here it is: the shell!
    Of course, in MacOSX (and in MacOS "classic" too) there are paths and executable files.
    MacOS1-9 file-system was a very peculiar one: resource fork and data fork for every file, ":" as path components separator (but what "common" user has ever seen a Macintosh path?) and so on.
    MacOSX will use an Unix-like filesystem, I guess (I'm not a Mac user, I like every OS for its beauties - and therefore dislike Microsoft products even if often they give me bread).
    But the key question is: how do I tell the runtime which file it has to execute?
    Fortunately, every modern SO I know adopts a hyerarchical organization of its files. So, indipendently of what is considered the "root" ("C:\", "/" or whatever else), you can "trace" a relative path from your current path (if you use an Unix or URL idiom, "./") and the file you want to reach.
    So, if your java app ("JavaApp.class") is placed in a folder called "MyJavaApp", nested in another folder called "Programs" that you see when you click on the "MacHD" icon, and you can manually launch the Mac app you're interested in clicking on an icon called "MyMacApp Program", placed in a folder called "MyMacApp", nested in another folder called "Programs" that you see when you click on the "MacHD" icon (it's the same folder we said before :-) ), using Unix or URL sintax we have that:
    your java application is at: [...]/MacHD/Programs/MyJavaApp/JavaApp.class
    the Mac application is at:
    [...]/MacHD/Programs/MyMacApp/MyMacApp Program
    The relative path from the former to the latter is, therefore:
    ../MyMacApp/MyMacApp
    where two dots ("..") are the symbol for "parent folder".
    If the situation is similar to above, the code to launch MyMacApp should be something like this:
    import java.io.File;
    File currentDir=new File("");
    //supposing that double dot (..) is the symbol for "parent folder"
    Runtime.getRuntime(
         new File(currentDir,".."
         +File.separator
         +"MyMacApp"
         +File.separator
         +"MyMacApp Program"
         ).getAbsolutePath()
    in a more portable fashion - if you're not sure ".." works
    (? who cares? we're launching a native app :-)) )
    Runtime.getRuntime(
         new File(currentDir.getParent(),
         "MyMacApp"
         +File.separator
         +"MyMacApp Program"
         ).getAbsolutePath()
    );Hope it works... good work!

  • I need to launch an app that needs java runtime enviro 1.5. It is saying that it is not installed on my mac but I think it is.

    I need to launch an app that requires javaruntime 1.5. My mac is saying that it is not installed but when i go into utilities, it looks like it is.
    Don't know where to go from here.
    I have version 10.7.3.

    I believe that i have the latest version of Java runtime. But my app should be running on it but its not.
    Well, either you don't actually have Java, as you think you do, or the app won't run in the latest Java runtime.  Try entering the following command in the Terminal (found in /Applications/Utilities):
    java -version
    If that causes an install window to appear, you don't have Java at all.
    If it displays a version number, make a note of that version, and ask the developer of the app whether it should run in that version of Java.

  • Help !! My notes app on my iPad will not launch, it just flashes up briefly? and then closes again.. I'm in despair because I had masses of notes there, and like an idiot have no back- up...

    Help !! My notes app on my iPad will not launch, it just flashes up briefly and then closes again.. I'm in despair because I had masses of notes there, and like an idiot have no back- up... ?

    Close the Notes app on the Task Bar and re-launch.
    1. Double-click the Home button to reveal Task Bar
    2. Hold the Notes app down for a second or two until you see the minus sign
    3. Tap the minus sign to close app
    4. Tap area above Task Bar to return to Home screen

  • How do I run multiple java apps in one JVM to reduce memory use?

    Hi all,
    I saw an article either on the web or in a magazine not too long ago about how to "detect" if the app is already running, and if so, it hands off the new instance to the already running JVM, which then creates a thread to run the Java app in. As it turns out, my app will be used in an ASP environment, through Citrix. We may have as many as 50 to 100 users running the same app, each with their own unique user ID, but all using the same one server to run it on. Each instance eats up 25MB of memory right now. So the question is if anybody knows of a URL or an app like this that can handle the process of running the same (or even different Java) apps in one JVM as separate threads, instead of requring several instances of the JVM to run? I know this article presented a fully working example, and I believe I know enough to do it but I wanted ot use the article as a reference to make sure it is done right. I know that each app basically would use the same one "launcher" program that would on first launch "listen" to a port, as well as send a message through the port to see if an existing launcher was running. If it does, it hands off the Java app to be run to the existing luancher application and shuts down the 2nd launching app. By using this method, the JVM eats up its normal memory, but each Java app only consumes its necessary memory as well and doesn't use up more JVM instance memory.
    Thanks.

    <pre>
    import java.util.Properties;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.lang.reflect.Method;
    import java.lang.reflect.InvocationTargetException;
    import java.util.Enumeration;
    import java.util.NoSuchElementException;
    public class RunProg implements Runnable, Cloneable
    private String iProg;
    private String iArgs[];
    public static void main(String args[])
    new RunProg().main();
    // first step is to start main program itself
    private void main()
    Properties properties = System.getProperties();
    try
    properties.load(new FileInputStream("RunProg.properties"));
    catch(IOException e)
    System.setProperties(properties);
    int i = 0;
    System.out.println("enter main, activeCount=" + Thread.activeCount());
    while(true)
    String program = properties.getProperty("Prog" + i);
    if(program == null)
    break;
    StringTokenizer st = new StringTokenizer(program);
    String[] args = new String[st.countTokens() - 1];
    try
    RunProg rp = (RunProg)this.clone();
    rp.iProg = st.nextToken();
    for(int j = 0; st.hasMoreTokens(); j++)
         args[j] = st.nextToken();
    rp.iArgs = args;
    Thread th = new Thread(rp);
    th.setName("prog" + i + "=" + program);
    th.start();
    System.out.println("prog" + i + "=" + program + ", started");
    catch(CloneNotSupportedException e)
    System.out.println("prog" + i + "=" + program + ", can't start");
    i++;
         System.out.println("end of main, activeCount=" + Thread.activeCount());
    // next step is to start all others one by one
    public void run()
    try
    Class c = Class.forName(iProg);
    Class p[] = new Class[1];
    p[0] = String[].class;
    Method m = c.getMethod("main", p);
    Object o[] = new Object[1];
    o[0] = iArgs;
    m.invoke(null, o);
    catch(ClassNotFoundException e)
    System.out.println(iProg + "ClassNotFoundException");
    catch(NoSuchMethodException e)
    System.out.println(iProg + "NoSuchMethodException");
    catch(InvocationTargetException e)
    System.out.println(iProg + "NoSuchMethodException");
    catch(IllegalAccessException e)
    System.out.println(iProg + "NoSuchMethodException");
    System.out.println(Thread.currentThread().getName() + ", ended");
    System.out.println("exit run, activeCount=" + Thread.activeCount());
    // setup SecurityManager to disable method System.exit()
    public RunProg()
         SecurityManager sm = new mySecurityManager();
         System.setSecurityManager(sm);
    // inner-class to disable method System.exit()
    protected class mySecurityManager extends SecurityManager
         public void checkExit(int status)
              super.checkExit(status);
              Thread.currentThread().stop();
              throw new SecurityException();
    * inner-class to analyze StringTokenizer. This class is enhanced to check double Quotation marks
    protected class StringTokenizer implements Enumeration
    private int currentPosition;
    private int maxPosition;
    private String str;
    private String delimiters;
    private boolean retTokens;
    * Constructs a string tokenizer for the specified string. All
    * characters in the <code>delim</code> argument are the delimiters
    * for separating tokens.
    * <p>
    * If the <code>returnTokens</code> flag is <code>true</code>, then
    * the delimiter characters are also returned as tokens. Each
    * delimiter is returned as a string of length one. If the flag is
    * <code>false</code>, the delimiter characters are skipped and only
    * serve as separators between tokens.
    * @param str a string to be parsed.
    * @param delim the delimiters.
    * @param returnTokens flag indicating whether to return the delimiters
    * as tokens.
    public StringTokenizer(String str, String delim, boolean returnTokens)
    currentPosition = 0;
    this.str = str;
    maxPosition = str.length();
    delimiters = delim;
    retTokens = returnTokens;
    * Constructs a string tokenizer for the specified string. The
    * characters in the <code>delim</code> argument are the delimiters
    * for separating tokens. Delimiter characters themselves will not
    * be treated as tokens.
    * @param str a string to be parsed.
    * @param delim the delimiters.
    public StringTokenizer(String str, String delim)
    this(str, delim, false);
    * Constructs a string tokenizer for the specified string. The
    * tokenizer uses the default delimiter set, which is
    * <code>"&#92;t&#92;n&#92;r&#92;f"</code>: the space character, the tab
    * character, the newline character, the carriage-return character,
    * and the form-feed character. Delimiter characters themselves will
    * not be treated as tokens.
    * @param str a string to be parsed.
    public StringTokenizer(String str)
    this(str, " \t\n\r\f", false);
    * Skips delimiters.
    protected void skipDelimiters()
    while(!retTokens &&
    (currentPosition < maxPosition) &&
    (delimiters.indexOf(str.charAt(currentPosition)) >= 0))
    currentPosition++;
    * Tests if there are more tokens available from this tokenizer's string.
    * If this method returns <tt>true</tt>, then a subsequent call to
    * <tt>nextToken</tt> with no argument will successfully return a token.
    * @return <code>true</code> if and only if there is at least one token
    * in the string after the current position; <code>false</code>
    * otherwise.
    public boolean hasMoreTokens()
    skipDelimiters();
    return(currentPosition < maxPosition);
    * Returns the next token from this string tokenizer.
    * @return the next token from this string tokenizer.
    * @exception NoSuchElementException if there are no more tokens in this
    * tokenizer's string.
    public String nextToken()
    skipDelimiters();
    if(currentPosition >= maxPosition)
    throw new NoSuchElementException();
    int start = currentPosition;
    boolean inQuotation = false;
    while((currentPosition < maxPosition) &&
    (delimiters.indexOf(str.charAt(currentPosition)) < 0 || inQuotation))
    if(str.charAt(currentPosition) == '"')
    inQuotation = !inQuotation;
    currentPosition++;
    if(retTokens && (start == currentPosition) &&
    (delimiters.indexOf(str.charAt(currentPosition)) >= 0))
    currentPosition++;
    String s = str.substring(start, currentPosition);
    if(s.charAt(0) == '"')
    s = s.substring(1);
    if(s.charAt(s.length() - 1) == '"')
    s = s.substring(0, s.length() - 1);
    return s;
    * Returns the next token in this string tokenizer's string. First,
    * the set of characters considered to be delimiters by this
    * <tt>StringTokenizer</tt> object is changed to be the characters in
    * the string <tt>delim</tt>. Then the next token in the string
    * after the current position is returned. The current position is
    * advanced beyond the recognized token. The new delimiter set
    * remains the default after this call.
    * @param delim the new delimiters.
    * @return the next token, after switching to the new delimiter set.
    * @exception NoSuchElementException if there are no more tokens in this
    * tokenizer's string.
    public String nextToken(String delim)
    delimiters = delim;
    return nextToken();
    * Returns the same value as the <code>hasMoreTokens</code>
    * method. It exists so that this class can implement the
    * <code>Enumeration</code> interface.
    * @return <code>true</code> if there are more tokens;
    * <code>false</code> otherwise.
    * @see java.util.Enumeration
    * @see java.util.StringTokenizer#hasMoreTokens()
    public boolean hasMoreElements()
    return hasMoreTokens();
    * Returns the same value as the <code>nextToken</code> method,
    * except that its declared return value is <code>Object</code> rather than
    * <code>String</code>. It exists so that this class can implement the
    * <code>Enumeration</code> interface.
    * @return the next token in the string.
    * @exception NoSuchElementException if there are no more tokens in this
    * tokenizer's string.
    * @see java.util.Enumeration
    * @see java.util.StringTokenizer#nextToken()
    public Object nextElement()
    return nextToken();
    * Calculates the number of times that this tokenizer's
    * <code>nextToken</code> method can be called before it generates an
    * exception. The current position is not advanced.
    * @return the number of tokens remaining in the string using the current
    * delimiter set.
    * @see java.util.StringTokenizer#nextToken()
    public int countTokens()
    int count = 0;
    int currpos = currentPosition;
    while(currpos < maxPosition)
    * This is just skipDelimiters(); but it does not affect
    * currentPosition.
    while(!retTokens &&
    (currpos < maxPosition) &&
    (delimiters.indexOf(str.charAt(currpos)) >= 0))
    currpos++;
    if(currpos >= maxPosition)
    break;
    int start = currpos;
    boolean inQuotation = false;
    while((currpos < maxPosition) &&
    (delimiters.indexOf(str.charAt(currpos)) < 0 || inQuotation))
    if(str.charAt(currpos) == '"')
    inQuotation = !inQuotation;
    currpos++;
    if(retTokens && (start == currpos) &&
    (delimiters.indexOf(str.charAt(currpos)) >= 0))
    currpos++;
    count++;
    return count;
    </pre>
    RunProg.properties like this:
    Prog1=GetEnv 47838 837489 892374 839274
    Prog0=GetEnv "djkfds dfkljsd" dsklfj

Maybe you are looking for

  • MDB(Message Driven Bean) is not working in MDM2.0.1

    Hi, I am trying to use MDB for importing files.I followed the Weblogic_jms_Integration(1308181.1) document and i created all the xml files CM_config.xmCM_ejb-jar.xml.wls.jms_1.includel.win.exit_4.include,CM_config.xml.win.jms.include,CM_ejb-jar.xml.w

  • Acrobat Pro X crushes just after opening (Mac OS 10.7.5)

    Hi! I just bought Adobe Creative Suite 6, everything is fine but Adobe Acrobat Pro X that crushes immediately after opening. It is updated to the last update and I have Mac OS 10.7.5. Does this problem disappear moving to Maverics? I had problems fro

  • CD burning problems - upgrade to v 9.1.079 didn't help

    My CD burner has stopped working in iTunes. It starts to burn the first track, then stops and ejects the disc with an error message (error 4251). Before it started doing this, it burned a disc, then produced an error message after the fact (I didn't

  • Still images used in iMovie ('09) look bad, poor quality

    I'm curious why my photos look poor in iMovie? Is this just a lo-res rendering that I'm seeing on screen, or is this really how they're going to look? I'm using the photo browser in iMovie and selecting photos from both iPhoto and Aperture, just as s

  • Lacie d2 drive to Ap-Extr to MacBook Pro

    I am quite new to OSX. Got my lacie d2-Ethernet 300gb drive and can't figure out how to get the MacBook (OSX 10.4) to see it. I can access Internet through the Airport Extreme. I can connect an external USB printer to the USB port on the Extreme and