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

Similar Messages

  • 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?

    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  !!!

  • Can get the AirPlay to work off my computer, but not my iPhone or iPad. I have the latest software.  Airplay logo never appears on iPhone or iPad.

    Can get the AirPlay to work off my computer, but not my iPhone or iPad. I have the latest software.  Airplay logo never appears on iPhone or iPad.

    Try here  >  http://support.apple.com/kb/TS1538

  • 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

  • HT1338 I use  Outlook for my email, and about 90% of the time when I wont to attach a pdf or jpg file it failes and the email masage crashs. The only was I can get my Outlook to work is if I swich to Firefox.

    I use  Outlook for my email, and about 90% of the time when I want to attach a pdf or jpg file it failes and andout 50% of the time when I'm trying to send a standered text email I also failes and the email masage crashs. The only way I can get my Outlook to work is if I switch to Firefox. I would rater not have to swich all my bookmarks over to Firefox.
    Has any one eals had this problem?

    That's an Outlook issue. You'll probably get better responses posting on the Office for Mac forums.

  • I can get adobe flash player work on my pc (window 7)

    i can get adobe flash player work on my pc (window 7)... can you help me to fix it

    What is your browser?  If IE:
    http://forums.adobe.com/thread/885448
    http://forums.adobe.com/thread/867968

  • Can get this Servlet to Work! New Java User needs help.

    I have been using a text from New Riders to learn about creating server applications, and am using Tomcat as the server in a Windows XP environement. As per the instructions, to create a new application and path, I added the following path under the webapps directory, that sits under my Tomcat directory:
    myApps
    --WEB-INF
    ----classes
    I then create copied Java class code, listing below, and compiled, put the class in the classes directory in my new directory path. The code is simple, here it is:
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class TestingServlet extends HttpServlet {
    public void doGet(HttpServletRequest request,
    HttpServletResponse response)
    throws ServletException, IOException {
    PrintWriter out = response.getWriter();
    out.println("<HTML>");
    out.println("<HEAD>");
    out.println("<TITLE>Servlet Testing</TITLE>");
    out.println("</HEAD>");
    out.println("<BODY>");
    out.println("Welcome to the Servlet Testing Center");
    out.println("</BODY>");
    out.println("</HTML>");
    I then created a file called web.xml in the WEB-INF directory, as w follows:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <servlet>
    <servlet-name>Testing</servlet-name>
    <servlet-class>TestingServlet</servlet-class>
    </servlet>
    </web-app>
    I started the Tomcat server process, and pointed my browser to the URL http://localhost:8080/myApp/Servlet/TestingServlet. I received the following error
    type Status report
    message /myApp/Servlet/Testing
    description The requested resource (/myApp/Servlet/Testing) is not available.
    After searching some information on the web, I found some references to context information, that should be included in another file, called server.xml, that resides under the conf directory in the Tomcat root. I found it, and added the following within the "host" tags, just after the last ending /context tag, for the example directory that came with Tomcat:
    <Context path="/myApp" docBase="myApp" debug="0" reloadable="true" >
    </Context>
    I stopped and restarted the Tomcat server. This time, I checked under the Manager page of Tomcat, and found the myApp directory listed, and apparently "started", whatever that means
    pointed my browser to the URL http://localhost:8080/myApp/Servlet/TestingServlet. I still receive the following:
    type Status report
    message /myApp/Servlet/Testing
    description The requested resource (/myApp/Servlet/Testing) is not available.
    I tried one more thing. I put my class under the "examples" directory that comes with Tomcat, change the web.xml file that resides under its WEB-INF directory, and tried to see if I can get the servlet to work. And it actually does, which leads me to believe, I did something wrong setting up the directory environment in Tomcat.
    At this point I am at a loss to figure out what I did wrong, and what else I can do to fix this. Any help, suggestions, would be great.

    ok, I have got your servlet runnig on Jboss with Tomcat,
    The war file contents are
    myApp/
    META-INF/
    META-INF/MANIFEST.MF
    WEB-INF/
    WEB-INF/classes/
    WEB-INF/classes/TestingServlet.class (No package)
    WEB-INF/web.xml
    Web.xml
    <web-app>
    <servlet>
    <servlet-name>Testing</servlet-name>
    <servlet-class>TestingServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Testing</servlet-name> <------- My mistake use Testing
    <url-pattern>/servlet/testing/*</url-pattern <------- lowercase S
    </servlet-mapping>
    </web-app>
    url
    http://localhost:8080/myApp/testing/blah

  • TS4036 Help,  I get this messafe on my Ipad: "" this ipad hasn't backed up in 13 weeks, Backups happens when this ipad is plugged in, locked,and connected to wi-fi""   i can get the ipad to work... it is stuck??????  what can i do?

    I get this messafe on my Ipad: "" this ipad hasn't backed up in 13 weeks, Backups happens when this ipad is plugged in, locked,and connected to wi-fi""   i can get the ipad to work... it is stuck??????  what can i do?

    A reset should help. Tap and hold the Home button and the On/Off button for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons and await restart.

  • 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.

  • [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.

  • 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??

  • 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.

  • How can get my flash to work again?

    How can I get my flash to work again?

    Flash is not a feature of the Adobe Reader for iOS.
    To answer directly, though, per orders of Apple, Adobe has never released a version of Flash for iOS. You can't get something “to work again” if there never was such a product on this platform.
              - Dov

Maybe you are looking for