Getting older plugins to work in CS5 Intel (rosetta?)

Hi,  I have just bought a macbook pro and have installed all my eye candy plugins. They do not show up in the filters list in photoshop and i'm wondering if they are too old.  I've tried booting photoshop in 32bit mode, not sure if that's relevant though. I read online that you can force apps to boot in rosetta (by selecting 'open in rosetta' from get info) but PS doesn't show that option. Neither do the plugins from their 'get info' window.  Is there a way around this as I don't want to buy all 10 plugins again if I can avoid it.  They worked on my powerbook with CS4, is this a snow leopard or intel problem? thanks

Rosetta is for PowerPC emulation, and Photoshop CS5 has no PowerPC code, only Intel native code.
You probably just need to update/upgrade the EyeCandy plugins.

Similar Messages

  • Is it possible to get a Plugin to work on CS5

    For a number of years I used the superb Plug-in from Adobe Exchanage ..
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1044520
    It installs 'Kedaffie’s filters' .. with sub filter "Bring back the reds"
    Now upgraded PC to W7 (32 bit) and Photoshop CS5 extended, now when I try to use this on CS5  it crashes the app.  On Adobe support pages it does say that many early plug-ins will not work with CS5.
    Does anybody know how to get this to work under CS5 or is knowledgeable enough to upgrade the plug-in so it will work ?
    Alternatively anybody know how to contact Eduard Winter the author.

    appreciate that ... was hoping someone would have contact details of people who have accounts ... and someone while not passing on his contact details, would at least fwd a request or notification to him.
    An alternative .. is there any group of gurus I could go to who author Plug-ins    and maybe I could request someone to look at teh existing Plug-in and do whatever is necessary so it would work on CS5 .....  it was such a damn good feature.

  • How do I get my plugins to work?

    I have just upgraded (?)  to Elements 13 but I cannot get my plugins to work...... If I use the "Additional Plugins"  option you can only have 1 plugin at a time working.   I use the Nik collection and also DXO Viewpoint 2 if they are not going to work in PSE13 can I revert back to PSE11 and forget 13?

    Thank you Maestro............greatly appreciated .......... I will try that once Adobe have decided to repond to another issue that has arisen.   My serial number supplied with my disc from Amazon uk is apparently registered as an upgrade to CS6 and logged to another user.   However, the Adobe systems accpeted the s/n during the installation process??   So I'm now wondering if Adobe have an issue with their serial number allocation process or indeed with their registration systems.  As yet all I've been told is to contact Amazon...... come on Adobe accept this issue and investigate...... I'm sure Amazon do not sell bootleg copies of your software  !!!

  • How can I get Java plugin to work

    How can I get Java plugin to work ?

    Greetings Dun1203,
    Welcome to the Apple Support Communities!
    I understand that you would like to install or update Java on your Mac. For information on this process, please use the information provided in the attached link. 
    Java updates available for OS X on August 28, 2013 - Apple Support
    Cheers,
    Joe

  • How do I get my plugins to work in PS CC2014?

    How do I get my plugins to work in PS CC 2014?

    What plug-ins? What system? You need to be more specific. if they are commercial third-party plug-ins, get the proper 2014 versions from the vendors and install them.
    Mylenium

  • Upgrade CS3 custom plugins to work with CS5

    Hello everyone,
    I have several InDesign plugins developed with CS3 SDK, and now we'd want to make them work with CS5.
    As the first step, I'd want to get some general idea regarding how large the scope of effort it would require.
    So I'm wondering if anyone knows whether we have any tools help with such upgrades. Or if anyone could help pointing me at some instructions that would be great.
    Thanks a ton!
    -Jeff

    Hi Jeff,
    You could look into the programming guide for a complete reference into what all are the changes you need to make into your plugin for porting into CS5.
    But i will mention some main points that hopefully will get you started.
    1. You need to seperate your plugin into two plugins that i.e. model and UI plugins. For that what i suggest is consider placing things like persistent interfaces and commands, maybe selection suites and the same into the model plugin and the rest into UI plugin.
    2. You could start by not linking against the WidgetBin.lib on the Windows proj and not using the "IndesignModelUI.framework" in the MAC project. The files giving compilation error would be a potential target to move to the UI plugin.
    3. Next is when you  have decided what all things are to be present in the model plugin, then use the CS5 SDK to compile this project, you will probably get some compilation errors which you can fix with the help of the Indesign SDK help.
    4. Once the model plugin is compiled you can place all the other files and features from the original plugin not included in the model plugin into a new plugin(UI). This project will link against the WidgetBin.lib on the Windows proj and the "IndesignModelUI.framework" in the MAC project.
    5. Once the UI plugin is ready and then you have made the appropriate API changes, you still might have some linking and compilation errors because of the code moved into the model plugin. For this you need to make a facade generally used for communication btw the model and UI plugin. Place all the functions of the model plugin that the UI plugin uses in the facade and replace the call of these function appropriately in the UI plugin.
    6. Lastly you will have to make some changes in the project  settings as well for CS5 to copy the resource files with the plugin as well, please refer CS5 porting guide.
    If you follow these steps, you would be able to load your CS3 plugin into CS5. And basically the effort in terms of porting the plugin mainly depends upon the quality of code to be ported. If the original code is written with good insight and using good practices of design patterns, porting is not a very time consuming task.
    Hope this helps.

  • Can't get jsp:plugin to work with jb5

    I am trying to get a Swing applet compiled with JDK 1.3.1 to run on a jsp page using the <jsp:plugin> tag. At this stage it is a ridiculously simple applet (just some JLabels and JTextFields) but I can't get it to work. Here is the jsp code:
    <jsp:plugin type="applet" code="nz.astarte.ganttapplet.GanttApplet"
    codebase="./WEB-INF/classes" jreversion="1.3.1"
    width="400" height="175">
    <jsp:fallback>
    Plugin support could not be determined
    </jsp:fallback>
    </jsp:plugin>
    When I run it in the jb5 ide nothing shows up at all. OK, I figured the ide doesn't support the plugin, so leaving the ide running (which provides me with a web server) I go into IE (version 5) and enter the url to the page, which is http://localhost:8080/AppletCommunications/GanttApplet.jsp
    I get the page, and the gray box saying loading the applet but the plugin console tells me:
    load: class nz.astarte.ganttapplet.GanttApplet not found.
    java.lang.ClassNotFoundException: java.io.FileNotFoundException: http://localhost:8080/AppletCommunications/WEB-INF/classes/nz/astarte/ganttapplet/GanttApplet.class
    Why not? Under the directory where the jsp page is located is the directory structure WEB-INF/classes/nz/astarte/ganttapplet and in that directory is a GanttApplet.class file.
    I cannot understand why it isn't found. Do applets work with the jb5 ide? Is there something blindingly obvious that I've missed?
    Thanks, Andrew

    I appear to have solved it, but it is not clear to me why.
    I created a jar file of the required classes, and placed it in the same directory as the jsp file. My jsp code then looked like:
    <jsp:plugin type="applet" code="nz.astarte.ganttapplet.GanttApplet"
    codebase="."
    archive="GanttApplet.jar"
    jreversion="1.3.1"
    width="400" height="175">
    <jsp:fallback>
    Plugin support could not be determined
    </jsp:fallback>
    </jsp:plugin>
    This works fine. However I would expect to be able to move the jar file to some other directory, so that the jar file and jsp files are separated. I spent hours trying to work out why it wouldn't work when I had the jar
    file in WEB-INF/classes (under the jsp file directory) and had codebase="WEB-INF/classes/". In the end I put the jar file into a directory I defined separately called wotnot and defined codebase="wotnot/"
    Now it works. However I still think I should be able to have the jar file anywhere, including WEB-INF/classes and would love for someone to tell me why not!
    Thanks, Andrew

  • How can we get Flash plugin to work in Lion?

    Any way to get a Flash plugin to work in Lion?
    Web sites with Flash components are messing up Safari function.

    I tried going to the page in Firefox (after having uninstalled and reinstalled Flash), and Firefox Error Console reported (among other warnings):
    Warning: An unbalanced tree was written using document.write() causing data from the network to be reparsed. For more information https://developer.mozilla.org/en/Optimizing_Your_Pages_for_Speculative_Parsing
    Source File: http://dw.courts.wa.gov/index.cfm?fa=home.casesearch&terms=accept&flashform=0&ta b=clj
    Line: 35
    Also:
    Warning: An unbalanced tree was written using document.write() causing data from the network to be reparsed. For more information https://developer.mozilla.org/en/Optimizing_Your_Pages_for_Speculative_Parsing
    Source File: http://dw.courts.wa.gov/?fa=home.casesearchTerms
    Line: 23
    I have reported this issue to Apple as feedback, and I will be attempting to contact the WA courts site admin on Monday as well. I am enjoying some of the new features of Lion and hopeful this issue can get resolved soon. As systems continue development, it will have to be eventually.
    Any additional observations, especially from tech-savvy folks, most welcome.

  • Can get projpeg plugin to work??

    Hi,
    I have got photoshop CS3 and im trying to get projpeg to run in cs3 photoshop.
    I put the holder in the plugin section but it does not show up.
    I used to have it working on my old imac but my computer broke so got new imac but since then it does not work.
    im not 100% sure if i had it working in cs2 or 3 as dont over use it but its a good plugin. the only other problem the company who sold it has shutdown but went on there site and you can still download but for FREE hmm
    http://www.boxtopsoft.com/projpeg.html
    and clues? in what im doing wrong
    hope you can advice
    Many thanks
    Tim

    I appear to have solved it, but it is not clear to me why.
    I created a jar file of the required classes, and placed it in the same directory as the jsp file. My jsp code then looked like:
    <jsp:plugin type="applet" code="nz.astarte.ganttapplet.GanttApplet"
    codebase="."
    archive="GanttApplet.jar"
    jreversion="1.3.1"
    width="400" height="175">
    <jsp:fallback>
    Plugin support could not be determined
    </jsp:fallback>
    </jsp:plugin>
    This works fine. However I would expect to be able to move the jar file to some other directory, so that the jar file and jsp files are separated. I spent hours trying to work out why it wouldn't work when I had the jar
    file in WEB-INF/classes (under the jsp file directory) and had codebase="WEB-INF/classes/". In the end I put the jar file into a directory I defined separately called wotnot and defined codebase="wotnot/"
    Now it works. However I still think I should be able to have the jar file anywhere, including WEB-INF/classes and would love for someone to tell me why not!
    Thanks, Andrew

  • Can't get ApertureToPBase plugin to work

    Has anyone gotten the ApertureToPBase plugin to work? When I try to export an image, it just hangs at the login prompt with the 'Logging Into PBase' screen scrolling endlessly (If it's a network issue I would expect it to eventually time-out, but it never does). ApertureToPBase comes with no documentation included with the package or on it's website. Does anyone know what protocol it's using to remotely login and transfer files to PBase? Any help debugging this would be appreciated.
    Mac Pro Quad Xeon 2.66GHz   Mac OS X (10.4.9)   X1900XT, 4GB RAM, 30'' ACD

    anybody gonna help me??

  • Any way to get older applications to run on an Intel-based Mac?

    I bought a Mac for work. The two programs we use are Quark Express 5.0 and Adobe Photoshop 7.0. Photoshop was installed without problem, but Quark and the rest of the Adobe programs, like PageMaker, give me a message that says they are not supported on this system. Is there any way at all to get these to install?

    Quark 5 is a Classic version not OSX and the new Intel Macs do not run Classic.
    There is a third party MacIntel Classic emulator out there somewhere but I can't find my info on it, you'll have to Google it.
    Or you can just get Quark 7. However, there might be problems if it's not Universal, and with Quark's history I'd be amazed if they've made that update yet. You might be better off getting an older and cheaper version of 6, which is also OSX.
    Beware, it must be a legit copy because starting with 6 Quark has to be registered online or it won't work.

  • Getting mplayer-plugin to work with opera 9

    according to
    http://my.opera.com/community/forums/to … ?id=131761
    mplayer-plugin needs to be compiled with --enable-x so it works with opera9. i hope the maintainer updates the package in the repos!

    i tried to compile mplayer-plugin from ABS, with --enable-x option, but i get this:
    $ makepkg
    ==> Entering fakeroot environment
    ==> Making package: mplayer-plugin 3.25-2 (Thu Jun 22 17:49:11 PHT 2006)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    ==> Found mplayerplug-in-3.25.tar.gz in build dir
    ==> Found mplayerplug-in.conf in build dir
    ==> Validating source files with MD5sums
    mplayerplug-in-3.25.tar.gz ... Passed
    mplayerplug-in.conf ... Passed
    ==> Extracting Sources...
    ==> tar --use-compress-program=gzip -xf mplayerplug-in-3.25.tar.gz
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    checking for g++... g++
    checking for C++ compiler default output file name... a.out
    checking whether the C++ compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ANSI C... none needed
    checking for a BSD-compatible install... /bin/install -c
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    configure: Determining mozilla/firefox packages to link against
    checking for pkg-config... no
    *** The pkg-config script could not be found. Make sure it is
    *** in your path, or set the PKG_CONFIG environment variable
    *** to the full path to pkg-config.
    *** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config.
    configure: WARNING: xulrunner-plugin not found
    *** The pkg-config script could not be found. Make sure it is
    *** in your path, or set the PKG_CONFIG environment variable
    *** to the full path to pkg-config.
    *** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config.
    configure: WARNING: firefox-plugin not found
    *** The pkg-config script could not be found. Make sure it is
    *** in your path, or set the PKG_CONFIG environment variable
    *** to the full path to pkg-config.
    *** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config.
    configure: WARNING: seamonkey-plugin not found
    *** The pkg-config script could not be found. Make sure it is
    *** in your path, or set the PKG_CONFIG environment variable
    *** to the full path to pkg-config.
    *** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config.
    configure: WARNING: xulrunner-plugin not found
    configure: error: Unable to find mozilla or firefox development files
    make: *** No targets specified and no makefile found. Stop.
    ==> ERROR: Build Failed. Aborting...
    anyone help?

  • [SOLVED] Can't get Flash plugin to work.

    Hi, all.
    I have done a fresh install of Arch, but am still using my previous /home partition.
    I've installed mozplugger, Flash and Firefox, but the Flash plugin doesn't function.
    Can anyone tell me how I can get around this?
    Many thanks,
    Chris.
    Last edited by chris_debian (2009-03-12 12:11:53)

    I do not have any value in $MOZ_PLUGIN_PATH. Manually exporting from an xterm, and spawing firefox from the same xterm makes firefox realise I have plugins.
    1) I have logged in/out, and rebooted multiple times after firefox's installation, and after flash installation
    2) I do have, and am using bash(even to startx), /etc/profile _is_ being called. However /etc/profile does not have a $MOZ_PLUGIN_PATH variable set in it anywhere.
    Is firefox package supposed to edit the /etc/profile to add this variable? Obviously setting the variable here is the solution, just curious now as to why it was a problem to begin with.
    Thanks for pointing me the right direction there wonder.

  • Need help getting 'move tool' to work in CS5

    I cannot move an item just pasted into an image and on its own layer, by using the move tool. The move tool has become a hand and moves everything including the unselected layer below as well as the item on the layer above that I wanted to move independently of the layer below. Selecting 'transform' does not allow independent moving either, nor does it allow me to transform or change the size of the newly pasted object.
    I'm told that 'I'm useing the wrong shortcut.' I'm not sure what that means.
    I'm new to CS5 coming from CS3 where the tool at the top of the tools is the move tool and using the spacebar turns it into the hand tool. Right now, the move tool remains the hand tool without using the spacebar. It seems to be locked.
    Can anyone help me straighten this out?
    TIA,
    Ken

    c.pfaffenbichler wrote:
    How To Get Help Quickly!
    Boilerplate-text:
    Are Photoshop and OS fully updated?
    As with all unexplainable Photoshop-problems you might try trashing the prefs (after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed) by pressing command-alt-shift on starting the program or starting from a new user-account.
    System Maintenance (repairing permissions, purging PRAM, running cron-scripts, cleaning caches, etc.) might also be beneficial, Onyx has been recommended for such tasks.
    http://www.apple.com/downloads/macosx/system_disk_utilities/onyx.html
    Weeding out bad fonts never seems to be a bad idea, either. (Validate your fonts in Font Book and remove the bad ones.)
    If 3rd party plug-ins are installed try disabling them to verify if one of those may be responsible for the problem.
    I've done all of the above except that instead of Onyx I use Cocktail. If I need to switch from Cocktail to Onyx please advise.
    The behavior with the hand tool still persists. I am forced to go back to Photoshop CS3 at this point but will check back here for possible other answers, or maybe a future update or upgrade will fix the problem. It's hightly unusual for me to have any problems with Photoshop as I've been using it since the mid-1980's up to now with no problems.
    Patience will win out.
    Thanks to all,
    Ken

  • Problems getting AU-Plugins to work in GB

    Hi all
    I have now scanned through all topics in the forums and yet not found an answer to my question.
    I just bought the EastWest package with sounds and want to be able to use them in the Garageband.
    I have checked HD - Library - Audio - Plug Ins - Components and found the plug in "Play.component" that I am supposed to use in GB.
    I have than went through GB:s Sound generator to pick it up there.
    But the only thingI can choose from is:
    AUAudioFilePlayer
    AUNetReceive
    DLSMusicDevice and
    SmartMusicSoftSynth
    No "Play"... (which is EastWests plug in)
    In the component folder I also find:
    Ambience.component
    Instruments for Finale2009AU.component
    SmartMusicSoftSynth.component and of course my Play.component
    Any suggestions would be most apprechiated to fix this problem.
    EastWest claims it should work on GB, but they are as confused as I am...
    So... "Hjälp!"...

    Well you are reffering to AUsound EFFECTS
    I want it to connect to the EastWest plugin with the symphony orchestra sounds...
    But like I said in previous thread... It is my computer that disfunctions since it works perfectly fine on my gf:s

Maybe you are looking for