Incompatible SL with all previous Adobe.  SMB disaster

Can anyone help make SL work with Photoshop CS Illustrator CS Acrobat Pro 7 and Golive2 CS. The apps all worked happily in our small business until the SL upgrade.
Just how many earlier business users of Adobe products have been cutout by Apple's flagship OS, it must be 10^5+.

In the general section of the info panel, an app that requires rosetta to open
should say:
Kind: Application (PowerPC)
I believe The Apps that are universal (both power pc and intel) will give you
the "open with rosetta" option, those that are power pc only will not.
Here is a little power pc app:
http://mac.softpedia.com/get/System-Utilities/FGDataBackup.shtml
download and install it and see if it will start. If it doesn't, then
something is wrong with rosetta install on your machine.
It should open and look like this:
http://mac.softpedia.com/progScreenshots/FGDataBackup-Screenshot-16294.html
Kj

Similar Messages

  • I have been able to open PDF docs using C# API Process.Start("Full_path_To_the_PDF_File") in windows 7 or windows 8 with all previous versions of Acrobat32 reader.

    I have been able to open PDF docs using C# API Process.Start("Full_path_To_the_PDF_File") in windows 7 or windows 8 with all previous versions of Acrobat32 reader.
    However, with v11.0, the same command, in Windows 8, it does not open the PDF document. I can see the Acrobat(32) started in the task manager, but the document does open. Not sure how I can troble shoot this problem. Any help would be appreciated.

    I haven't use the C# API but I imagine it is the same as C ShellExecute. Which in turn is the same thing (in essence) as double clicking in Windows Explorer.
    So... does Adobe Reader run normally on this machine?
    And does it start and open if you double click on a PDF file?

  • I have bought a Apple iMac with Retina 5K display! Can I use it with all my Adobe Creative Cloud

    I have bought a Apple iMac with Retina 5K display yesterday! But today I read something negative about this Imac regarding to to Adobe Creative Cloud, - so I would ask if I can use this iMac with Retina 5K with all my Adobe Creative Cloud programs??
    I have not unpack it yet, so I would be happy if you could tell me if I should keep it or exchange another Mac if this iMac with Retina 5K display does not work OK in Adobe Creative Cloud. I mostly use the programs Photoshop, Illustrator, InDesign, and Muse.
    I look forward to hearing from you!

    WOW!!
    That was great to hear.
    I have just read this tread: https://forums.adobe.com/thread/1626784?start=0&tstart=0
    So therefore I was worry about Illustrator which I use most of all programs.
    Thank you !!

  • How do I continue to be able to download Adobe pdf files with FF4.0 as I was able to with all previous version?

    With FF 4.0 I can no longer download Adobe pdf files. At any website when I click the pdf icon something is displayed about a plugin-handler and nothing further happens - there is either no download or the download stops. Sometimes a partial frame of the pdf frame displays but nothing further happens. I never had this problem with previous versions of FF.

    You must be doing something wrong, or perhaps Windows 7 is interfering. Here's the step-by-step process:
    Launch LabVIEW 2009.
    Open an 8.6 VI. It should show up with an asterisk in the title bar.
    Make some changes.
    Select File -> Save for Previous Version.
    Verify that "8.6" is selected in the dropdown.
    Click "Save...".
    In the dialog click the "Save" button to accept the default of saving the VI into a new folder called "<VI Name> Folder".
    Close the VI. When asked if you want to save changes click "Don't Save".
    Check the timestamp on the newly created file in that folder.
    Open the same 8.6 VI again.
    Make some changes. 
    Select File -> Save for Previous Version.
    Verify that "8.6" is selected in the dropdown.
    Click "Save...".
    The "File name" textbox should have the same default name as previously. If you click "Save" Windows should move you into that folder, and the save dialog should remain open. The file listing should contain the VI.
    Click on the "Current Folder" button. You should get a dialog warning you that the operation will save over existing files. Click "OK" to continue. The VI will be saved as the previous version over the previous save that was done. To verify this, check the timestamp on the file.
    I just did the above on LV2009 running under XP just so I could get the button names correct.
    You can repeat steps 10-16 as many times as you want without needing to create a new folder.

  • Compare newly added Vector Element with all previous

    Hi all
    I am adding Point2D elements to a vector "Numbers" in such a way that every newly randomly created element that is at a distance of 0.3 from all the previous points is added else not.
    I have written a code that only checks from the last element but not all the previous elements.
    Can someone check what wrong am I doing.
    The code is runnable.
    import java.awt.geom.Point2D;
    import java.util.*;
    public class Distance
         Vector<Point2D> numbers = new Vector<Point2D>();
         Random rnd = new Random();
         void getList()
         double xCoord,yCoord;
         for(int i=0;i<5;i++)// is is the no. of coordinates stored later only "b" to be used
         xCoord = rnd.nextDouble();          // X-coord of AP
         yCoord = rnd.nextDouble();          // Y coord of AP
         if(i<2)
              numbers.addElement(new Point2D.Double(xCoord,yCoord));
              System.out.println("0th n 1st element added : "+i+ "   "+numbers.get(i));
         else
         for(int j=i-1;j>i-2;j--)
              if((numbers.get(j).distance(xCoord,yCoord))>0.3)
                   numbers.addElement(new Point2D.Double(xCoord,yCoord));
                   System.out.println("next element added : "+i+ "   "+numbers.get(j)+"  with distance: "
                             +(numbers.get(j).distance(xCoord,yCoord))+"from "+ xCoord + " "+ yCoord);
         Iterator it = numbers.iterator ();
           while (it.hasNext ())
            System.out.println(it.next());
         public static void main(String[] argv)
              Distance d = new Distance();
              d.getList();
    }Thanks a lot

    Hi all
    I am adding Point2D elements to a vector "Numbers" in such a way that every newly randomly created element that is at a distance of 0.3 from all the previous points is added else not.
    I have written a code that only checks from the last element but not all the previous elements.
    Can someone check what wrong am I doing.
    The code is runnable.
    import java.awt.geom.Point2D;
    import java.util.*;
    public class Distance
         Vector<Point2D> numbers = new Vector<Point2D>();
         Random rnd = new Random();
         void getList()
         double xCoord,yCoord;
         for(int i=0;i<5;i++)// is is the no. of coordinates stored later only "b" to be used
         xCoord = rnd.nextDouble();          // X-coord of AP
         yCoord = rnd.nextDouble();          // Y coord of AP
         if(i<2)
              numbers.addElement(new Point2D.Double(xCoord,yCoord));
              System.out.println("0th n 1st element added : "+i+ "   "+numbers.get(i));
         else
         for(int j=i-1;j>i-2;j--)
              if((numbers.get(j).distance(xCoord,yCoord))>0.3)
                   numbers.addElement(new Point2D.Double(xCoord,yCoord));
                   System.out.println("next element added : "+i+ "   "+numbers.get(j)+"  with distance: "
                             +(numbers.get(j).distance(xCoord,yCoord))+"from "+ xCoord + " "+ yCoord);
         Iterator it = numbers.iterator ();
           while (it.hasNext ())
            System.out.println(it.next());
         public static void main(String[] argv)
              Distance d = new Distance();
              d.getList();
    }Thanks a lot

  • How to send an email with all previous email addresses attached deleted.

    I like to delete all email addresses before I forward them. How do I do that? With Internet Explorer I just highlighted the items and hit the delete button. Nothing seem to work to eliminate unwanted email addresses from being forwarded.

    That is a question for whatever you are using for email; Firefox doesn't do email, but it does access webmail services. Also, the service offered by many webmail services may be slightly different for the browser being used, or a preference in that services software might need to be set for the particular browser being used.
    The first thing to do is to fix your User Agent string which is reported to every website you visit. It identifies the browser you are using as being Firefox 3.6.18. Your UserAgent string in Firefox is probably messed up by another program that you installed. Some type of "''Search Toolbar"''<br />
    [http://en.wikipedia.org/wiki/User_Agent]
    type '''about:config''' in the URL bar and hit Enter <br />
    ''If you see the warning, you can confirm that you want to access that page.'' <br />
    Filter = '''general.useragent.''' <br />
    Right-click the preferences that are '''bold''', one line at a time, and select '''''Reset'''''. <br />
    Then restart Firefox

  • First project in CS4 and major issues with preview and such.....experienced with all previous PPRO v

    So to sum it up, I have been working in Premiere since version 4.2. I am familiar with program.
    I decided to test CS4 on a simple project, as I usually work on complex HD videos. I captured a friends wedding, shot by someone else (uncle or aunt) in DV mode. I open a CS4 project in DV NTSC 720x480 and import my clip. This should be a simple edit.
    I drag clips to the timeline and do some very basic dissolves in and out to smooth out the rough cuts of the camera operator. So far so good. I am previewing the video out on my second monitor which happens to be an HDTV via the premiere playback to secondary monitor feature.
    I drag a color correction filter onto a clip and "wham" the preview goes away. Then I turn the effect off and it comes back. When I scrub the timeline, all I see is the first frame of that clip all the way through. It's stuck. I have to build a preview to get it to play. In addition, I cannot see a preview of anything when I am makijng color adjustments except in the small monitor window of Premiere. This is basic editing 101....never had to give it a though before and now basic functionality is going haywire. Ofte images are all negative looking too.
    So I started a new project in HD and setup to preview to second monitor. I created a simple title and dragged it to the timeline. It won't preview to the second monitor at all. A simple title. Only in the little premiere monitor. Then I import a jpg....same thing. I have to build a preview to see anything....
    Then....I have these 2 clips on the timeline, a premiere title butted up against a jpg. With no effects, it now will not even show the title anywhere. During the five seconds of the title, I see the jpg (which is coming up next, but in a negative mode...you know reversed out basically) then when it gets to the jpg it shows. If I change the size of anything....it stops working again until I render.....
    I have to say that in the 45 minutes that I have been trying Cs4, it has behaved so strangely it is scaring me. CS3 has it's quirks but they typically present themselves in huge projects, not brand new ones with 2 clips in them, neither of these are even HD video! Just a title and a jpg.
    Any ideas? I have CS3 production Suite running great. Hopefully I missed a simple new setting or something. Yeah...right.
    Intel Q6600
    4GB Ram
    Nvidia 7950
    2 Terabytes of Raid Drives
    Sound Blaster Audigy Card
    My system is not slow by any means.....
    thanks.

    Jim,
    I have accomplished this with an ATI card also, so it can be done. I am not sure what you are trying to imply. It absolutely works. If you are implying that simply because it doesn't blank the screen out when no video is being played that it is not a true output you are wrong. Are there better more color accurate ways to do this? Sure....for thousands of dollars for SDI or HDMI cards then production grade LCDs I'm sure it could work better.
    My video card outputs a 1920x1080 signal to my HDTV....that I calibrate to the best of its ability considering it is not a production monitor. When in Premiere I get full high res 1920x1080 HD video playing on this monitor looking darn close to what it will look like when rendered to Blu-ray, whereas the image on my awsome 30" Dell LCD is not accurate at all. I mean it looks clean and awesome but is not very close to an HDTV colorwise.
    This absolutely works. As good as it is, it is not as accurate as dedicated equipment and color production monitors.
    To be clear, it is an extension of the desktop, and premiere is able to display the entire resolution of the video over the entire thing.

  • I am unable to read lotus notes email from my work. I was able to view it with all previous firefox versions.

    We use lotus notes at work and I have always been able to open my mail. After updating to the new Firefox 4.0, now i am getting the warning, "Domino Access Warning: Sorry we are unable to process your request at this time.....

    Fanta Pants wrote:
    i bought  an iphone 5 second hand
    The Apple ID and Password that was Originally used to Activate the iDevice is required.
    If you cannot get this information from the seller
    Removing a device from a previous owner’s account
    You need to return the Device for a refund, as you will not be able to re-activate it.

  • Mac Laptop dies with all my Adobe info; Admin has the serial codes

    I've recently replaced my mac laptop and before the old one died, I did the migration and it seemed to go through successfully. On opening any software, @I kept getting a pop up window for purchasing an update but thought this was a sales pitch through CC. Unfortunately, the "trial" ended today and I'm not able to open any of my software. It's asking for the serial numbers to my Adobe Creative Cloud and I believe I just accepted the invite and didn't have to enter a serial code. Am I missing something because I've never received a serial code for this Cloud set.

    migrating adobe software is often problematic.  adobe software should be properly installed.
    at this point, uninstall clean and then install your software per Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    if you need installation file(s),
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • In trying to transfer iWeb pages (not uploaded) to another computer I went into the library and transferred the domain onto the desktop. Disaster! On opening iWeb all previous (uploaded) sites have disappeared. Help!

    In trying to transfer iWeb pages (not uploaded) to another computer I went into the Library and transferred the domain onto the desktop. Disaster! On opening iWeb all previous (uploaded) sites have disappeared. On opening the domain all I can recover is the many component parts, and when unzipped the code. Help! Mike

    Code in a domain file - really?  That is not possible because the domain.sites file does not contain any html or css code at all - the domain file is your iWeb data file and you won't see any code until you publish your website.
    If you can see html code, then you have the wrong file and it is a published version of your site which iWeb can do nothing with - iWeb has no import facility so cannot open any html files.
    Go back and ensure that you have the correct domain.sites files that can be found under your User Library/Application Support/iWeb/domain.sites and if you have Mavericks then you need to go to Go and press the alt key to reveal your hidden User Library, so that you can then get to Application Support and then iWeb and then your domain.sites file.
    You will also need to go and download either DomainCracker or iWebSwitch which allows you to open individual domain files under Mavericks, because from Lion onwards, you cannot open individual domain files.
    Also, it says that you are still using iWeb 08?  If this is so, you'll either need to upgrade to iWeb 09 by going to Amazon and purchasing the iLife 09 or 11 boxed set, both of which contain iWeb 09 or you need to switch to newer software that is actively being supported and developed such as EverWeb (http://www.everwebapp.com).

  • I recently uploaded OSX 10.6.7 and ever since then, my Boris titler in FCP does not work with all the fonts, notably Avenir. It actually crashes FCP now. It was fine with the previous version. What's up Apple?

    I recently uploaded OSX 10.6.7 and ever since then, my Boris titler in FCP does not work with all the fonts, notably Avenir. It actually crashes FCP now. It was fine with the previous version. What's up Apple?

    I know what your'e going through, Gary.   OSX 10.6.7 is an absolute disaster.   Since I upgraded, I've had problems in FCP, Logic, Garageband, even issue dealing with peripheral hardware like external monitors.
    Before 10.6.7 my system was running fine.
    I've brought this up with Apple repeatedly.   They smile and shrug.   They've been helpful resolving the issues, but none of them has been easy to solve.  I have spent days, dealing back and forth with tech support, sending logs, etc., before solutions have been found.  
    I wish I could give you an answer to your question.   My only guess is that Apple has totally dropped the ball on this one.   In the future they should provide a disclaimer when they offer an upgrade.  Something like:   "Caution: all of your software may not function after this upgrade. But go ahead, you'll feel cool that your OS is the latest thing."
    As someone who has been with Apple for close to 25 years, I'm disturbed by what appears to be an increasing sloppiness in their work.   This is especially disturbing when you depend upon their system to make your living.
    Good luck.
    david

  • How do I convert an Adobe PDF file to Word on my Mac with all the data intact?

    How do I convert a scanned Adobe PDF file to Word on my Mac with all the data intact?

    http://www.macworld.com/article/1162699/how_to_convert_pdfs_to_word_and_other_fo rmats_.html
    https://itunes.apple.com/us/app/pdf-converter-free/id422540367

  • I was running KeyPassFox with Firefox 8.0.1, but the plugin does not work in the new release (9) . Is there a way to restore my previous version with all of my bookmarks intact? I do not mind if I have to restore the plugins myself.

    I was running KeyPassFox with Firefox 8.0.1, but the plugin does not work in the new release (9) . Is there a way to restore my previous version with all of my bookmarks intact? I do not mind if I have to restore the plugins myself.
    The plugin shows on the list as enabled and functioning, yet the tool does not show on the toolbar. It would appear that I need to restore the previous version of Firefox and wait until a newer release of the plugin is available before upgrading the browser.

    I copied the iTunes file from the external drive and it's in both places.  I thought all I would need is the iTunes program (which I downloaded to new computer) and my iTunes library file.  There must be something else that's missing.  My iTunes library looks the same on the new computer as it does when I open it on the external drive.  If I click on an iTunes library song from my new computer, it will only play if I have the external drive plugged in.
    My back-up drive is a mess.  I have multiple copies of music, video, photo, and document files and I don't know how that happened. ={  Obviously, I don't know how to back up stuff properly and there are back-up files extending over a 6- to 8-year period.  I think all I did was just drag and drop the main folders from the back-up drive to the same main folders on the C: drive.  Also (and I'm kind of fuzzy on this) Windows used to automatically save music files in a folder within my document files (which makes no sense to me).  As my Jewish friends would say, "Oy Vey!" 

  • I want to go back to the previous 2014.2 version.  .3 is much too buggy and full of error messages. Creating problems as I am on a timeline with my client and I don't have time to fool around with all the problems.

    2014 .3 is much too buggy and full of error messages. Creating problems as I am on a timeline with my client and I don't have time to fool around with all the problems.

    You didn't mention what error(s) you've encountered? A workaround for the most commonly hit problem is here Re: error in Muse : Object UID:U6875 has two (or more) owners: U3633 and U3165
    If you have a copy of your .muse file that has not been saved using 2014.3, you can downgrade by uninstalling Muse and then choose Previous Version in the Filters drop down in the Apps panel of the Creative Cloud desktop app. There will be a popup next to Muse where you can select a prior version to install.

  • I dont have any icons except computers and settings.  how do i find istore with all my previous purchased content?

    i dont have any icons except computers and settings.  how do i find istore with all my previous purchased content?

    That is the result when the Apple TV has lost the Internet connection.

Maybe you are looking for

  • Associative Array (Object) problems

    Here is the function i'm dealing with i'm reading in a delimited string and using indexed arrays to break them up and assign the keys and values to an associative array in a loop. i'm using variables in the loop and the array loads as expected in the

  • Input field validation in a Table based on the value of other column

    Hi all I have a table with 2 columns. column1 is of text view and  column2 is Input field. The user should not be allowed to enter a value  in the column2 ( input field) greater than the value populated in column1(textview). So for Eg; if the column1

  • Can anyone solve it by example

    sir ***folder1 contain folder2**** ***folder2 contains class files and abc.jar*** i make a jar file name abc.jar which contain a folder named images. images have one property file i read to try it but still fail so the path is abc.jar\images\user.pro

  • Cool effect..how can i create this effect on Motion 3?

    that's great. Someone please tell me how can i create this effect on motion 3? http://www.ayatoweb.com/aetips_e/ae17_mov05e.html thanks

  • How to use selection column in a table control

    I have given the name of the selection column to be 'DEF_SEL',now i want to select rows in the table control using the 'selection column attribute' and maniupulate it programmatically so that i would transport the rows selected using selection coulmn