Plugin for MacIntosh?

hi,
I see lots of info about plugin technology for Windows and Unix. I was wondering if the plugin concept works for MacIntosh?

Mac OS X has Java 2 (Apple-modified 1.3.1) built-in. We've played around with it and demo some of our software on an Apple laptop in our booth at trade shows.
So far, we use IE 5.01 and find the native Applet tag invokes the platform's 1.3.1 JVM (java plugin directives not needed). Mac OS X also has Web Start so that's another way to start your app. We've modified some of our app JARs to be applets and Web Start applications (same JAR... init()/start() & main method/JFrame).
See Apple's Java site http://developer.apple.com/java/
Good luck,
Chris

Similar Messages

  • Disabling plugin bar in Firefox 3.6.x for Macintosh

    Just yesterday (5/24/12), I am now getting the yellow bar that alerts me on a website that, "some plugins used by this page are out of date" and asks me to update the plugins. My laptop is a PowerPC Powerbook with Firefox 3.6.28. Since it is not an Intel Mac, this is the best version of Firefox I can use along with the plugins for this computer. All plugins that can be updated, have been. Yet this yellow bar persists. So how can it now be disabled? It is very annoying! I saw suggestions for how to do it for Windows, but no instructions for Mac. Any help would be appreciated.

    hello, enter "about:config" into the address bar of the browser, confirm the info dialog, then search for the preference named "plugins.hide_infobar_for_outdated_plugin" & double-click it in order to toggle it to "true".
    if you want to use an up-to-date browser based on firefox on ppc hardware you can switch to "tenfourfox" - the downside is, it doesn't support plugins at all - [[Firefox no longer works with Mac OS X 10.4 or PowerPC processors]]

  • How do I find plugin for Windows Media Player in MacPro

    In my previous PowerBook G4 I have been able to access TV newscasts from Europe, in streaming video, especially from Channel France 2. To do this, I have used Microsoft's Windows Media Player 9 for MacOS X, which comes with an asx plugin and it works fine. When I installed WMP in my new MacPro, the plugin was not installed. I queried Microsoft on how to solve this problem and I was informed that Microsoft no longer supports WMP 9 for the Mac and has no plans to upgrade it. Consequently, my alternative could be found in Windows Media Player components for Quicktime by Flip4Mac. This plugin allows you to play Windows Media Player files in the Quiktime player directly. I went to the FlipMac web site and downloaded it only to discover that the existing version will work only for G4s, not Intel Duo Macs.
    Microsoft's media player 9 for the Mac is being used internationally for streaming video.
    Does anyone know of an alternative plugin that would work and where do I find it?
    iMac G4, PowerBook G4 and MacPro Intel Core Duo   Mac OS X (10.4.6)  
    iMac G4, PowerBook G4 and MacPro Intel Core Duo   Mac OS X (10.4.6)  
    iMac G4, PowerBook G4 and MacPro Intel Core Duo   Mac OS X (10.4.6)  

    There is flip for mac and VLC
    http://www.videolan.org
    Give this web site a look see.
    Your solution makes sense. But when I downloaded and installed VLC Media Player for Macintosh, I found that one needs to have a developer's experience to figure out how to make it work. It isn't as simple as Windows Media Player 9 which works easily after you determine Preferences. Video streaming from news outlets is instant. Instructions from videolan on how to use its media player are confusing. Is there a simple way or easy steps to set up VLC to play streaming video from network news outlets with player embedded in their web site? That's all I am interested in. Your thoughts will be much appreciated.

  • Camera raw plugin for photoshop 5.5 (windows) not updating

    Hi, I'm trying to update the camera raw plugin (min 8.2) in photoshop 5.5 for windows. I downloaded, ran, installed camera raw plugin 8.6 and rebooted. The installation wizard shows as installed but when I open photoshop it still has camera raw 6.7.0.339. Please help!! (The dng converter works but the camera raw plugin has not been updated)

    That may be because the latest version of ACR that works with CS5 is ACR 6.7
    Adobe - Photoshop : For Windows
    Adobe - Photoshop : For Macintosh
    You can install ACR 8.7.1 in CS6 to get new Camera support without ACR new features
    Photoshop Help | Camera Raw

  • Export plugin on Macintosh not honoring LrTasks.startAsyncTask ?

    Hi -- I need some help again!
    I'm writing an export plugin for my own application. 
    On Windows, everything works as expected -- I can start the export and then go back to doing other tasks in Lightroom while my application does its own thing.
    But on Macintosh, Lightroom hangs with the rotating "busy" icon until my application quits.
    I am baffled by this behavior because I think I've wrapped everything I'm doing in calls to LrTasks.startAsyncTask.
    Apparently I'm missing something about how asynchronous tasks work in Lightroom, or at least in Lightroom on Macintosh.
    Do you have any suggestions about how I can get the Mac version to keep Lightroom responsive while my exported-to application does its thing?
    Thanks!
    --Rik
    For further information...
    Mac OS X 10.9, Lightroom 4.2
    Here is the current structure of my ExportToMA.lua file
    local myLogger        = LrLogger("myLogger")
    myLogger:enable("logfile")
    ExportToMA = {}
    ExportToMA.outputToLog = function(param)
      myLogger:trace(param)
    end
    LrTasks.startAsyncTask( function()
        myLogger:trace("Entering outer LrTasks.startAsyncTask function")
        LrTasks.startAsyncTask( function()
            myLogger:trace("Entering inner LrTasks.startAsyncTask function")
            local activeCatalog = LrApplication.activeCatalog()
            local frameSet     = activeCatalog.targetPhotos
            local exportSession = LrExportSession( {
                exportSettings = {
                    LR_exportServiceProvider       = "net.mydomain.MAloader",
                    LR_exportServiceProviderTitle  = "My Application",
                    LR_format                      = "TIFF",
                    LR_tiff_compressionMethod      = "compressionMethod_None",
                    LR_export_bitDepth             = 16,
                    LR_export_colorSpace           = "sRGB",
                    LR_minimizeEmbeddedMetadata    = false
                photosToExport = frameSet,
            myLogger:trace("Before doExportOnCurrentTask()")
            exportSession:doExportOnCurrentTask()       
            myLogger:trace("After doExportOnCurrentTask()")
            myLogger:trace("Exiting inner LrTasks.startAsyncTask function")
        end )
        myLogger:trace("Exiting outer LrTasks.startAsyncTask function")
    end )
    When run on Windows, the log file contains a sequence of messages like this:
    12/30/2013 10:36:48 TRACE    Entering outer LrTasks.startAsyncTask function
    12/30/2013 10:36:48 TRACE    Exiting outer LrTasks.startAsyncTask function
    12/30/2013 10:36:48 TRACE    Entering inner LrTasks.startAsyncTask function
    12/30/2013 10:36:48 TRACE    Before doExportOnCurrentTask()
    12/30/2013 10:36:49 TRACE    After doExportOnCurrentTask()
    12/30/2013 10:36:49 TRACE    Exiting inner LrTasks.startAsyncTask function
       <meanwhile my application continues to run while Lightroom stays responsive>
    But when run on Macintosh, this is what happens:
    2013-12-30 19:01:50 +0000, TRACE    Entering outer LrTasks.startAsyncTask function
    2013-12-30 19:01:50 +0000, TRACE    Exiting outer LrTasks.startAsyncTask function
    2013-12-30 19:01:50 +0000, TRACE    Entering inner LrTasks.startAsyncTask function
    2013-12-30 19:01:50 +0000, TRACE    Before doExportOnCurrentTask()
      <indefinitely long pause while my application runs>
    2013-12-30 19:02:44 +0000, TRACE    After doExportOnCurrentTask()
    2013-12-30 19:02:44 +0000, TRACE    Exiting inner LrTasks.startAsyncTask function
    Ideas?

    > I'm confused by your application: if you already have a renditions loop, then why are you starting another export
    I apologize for the confusion. 
    In each case I've exercised, there is only one export and one renditions loop. 
    The code I've been showing you is what gets executed to service a menu entry in File > Plug-In Extras.  I'm focusing attention on that case because it seems more transparent.  Notably, I get to specify which task the export happens on. 
    The renditions loop in my processRenderedPhotos function is in another script.  The renditions loop gets called in two places: 1) from File > Plug-In Extras via the explicit doExportOnCurrentTask (now doExportOnNewTask), and 2) from Lightroom's internal processing of File > Export... and File > Export with Preset.
    > did you try doExportOnNewTask?
    I tried it just now.  It did not change the behavior.
    I also added some more diagnostics.  Here is what happens on the Mac:
    2013-12-31 01:09:31 +0000, TRACE    Entering outer LrTasks.startAsyncTask function
    2013-12-31 01:09:31 +0000, TRACE    Exiting outer LrTasks.startAsyncTask function
    2013-12-31 01:09:31 +0000, TRACE    Entering inner LrTasks.startAsyncTask function
    2013-12-31 01:09:31 +0000, TRACE    Before doExportOnNewTask()
    2013-12-31 01:09:31 +0000, TRACE    After doExportOnNewTask()
    2013-12-31 01:09:31 +0000, TRACE    Exiting inner LrTasks.startAsyncTask function
    2013-12-31 01:09:31 +0000, TRACE    MyApplicationUploadTask.processRenderedPhotos prefs.maPath: /Users/myaccount/Desktop/MyApplication.app/Contents/MacOS/JavaApplicationStub
    2013-12-31 01:09:31 +0000, TRACE    tempPath: /var/folders/4n/2lxf6v593x5_c3lmx_jghgnw0000gn/T/temp_lre_ma_1230170931
    2013-12-31 01:09:31 +0000, TRACE    nPhotos = 2
    2013-12-31 01:09:32 +0000, TRACE    source path/Users/myaccount/Desktop/jpeg-8d/testorig.jpg
    2013-12-31 01:09:32 +0000, TRACE    destination path: /var/folders/4n/2lxf6v593x5_c3lmx_jghgnw0000gn/T/6F05FC8E-126C-47E0-AD51-C545CE0DA66D/tes torig.tif
    2013-12-31 01:09:32 +0000, TRACE    source path/Users/myaccount/Desktop/jpeg-8d/testprog.jpg
    2013-12-31 01:09:32 +0000, TRACE    destination path: /var/folders/4n/2lxf6v593x5_c3lmx_jghgnw0000gn/T/6F05FC8E-126C-47E0-AD51-C545CE0DA66D/tes tprog.tif
    2013-12-31 01:09:32 +0000, TRACE    just before LrShell.openFilesInApp
       <long pause here, while I let my application run for a while>
    2013-12-31 01:10:00 +0000, TRACE    just after LrShell.openFilesInApp
    The LrShell.openFilesInApp call happens after my renditions loop, at the very bottom of my processRenderedPhotos function, which is now separated by 3 levels of asynchronous tasks from whatever task initially serviced the menu entry.
    Nonetheless, on Macintosh only, as soon as LrShell.openFilesInApp is called, Lightroom comes to a grinding halt heralded by a spinning beach ball. 
    It's as if, deep under the covers, LrShell.openFilesInApp (on Macintosh only!) is telling the rest of Lightroom to wait until the spawned application terminates. 
    I know, it sounds crazy to me too, and I've been programming for close to 45 years.
    At the moment, the only way I see to work around this problem is to provide a separate "application" that is actually a spawn-and-terminate, so that LrShell.openFilesInApp will see a rapid termination of the thing that it launches.  That seems like a lot of trouble for what I've been hoping is a simple misunderstanding on my part.
    The one thing I can see different between my app and anybody else's is that mine is written in Java, so the thing that gets launched by LrShell.openFilesInApp is the JavaApplicationStub.
    Any other ideas?
    --Rik
    PS.
    > Do you have this problem with hard drive export too?
    I doubt it, but I don't know for sure.  On my test Mac, at the moment, there are not enough files to keep hard drive export running long enough to notice.

  • Plugins for SonyEriccson P990i and Nokia 6300

    Has anyone had any success using the available plugins that are out there with Leopard 10.5.6 and iSync 3.0.2? For example, v1.0.7 from SonyEriccson and the (old) plugins for the Nokia. None of these seem to work with the above version of iSync.

    The only legitimate place for iSync Plugins to be installed is in one of these two places:
    ~/Library/PhonePlugins/ (to be installed for the current user only) or, more commonly:
    Macintosh HD/Library/PhonePlugins/ (to be installed for all users)
    Any plugins that asks to be installed anywhere else (including inside the iSync application) are not made correctly and will conflict with native phone support.
    To set up a phone for iSync you should go through the Bluetooth Setup Assistant and check the box at the appropriate point to "Use this phone with iSync". Then iSync should automatically open and add your phone as a device. It's not necessary to manually choose "Add Device..." unless syncing via USB.
    For the P990i, make sure you have the latest available firmware. You can upgrade it using the Sony Ericsson Update Service running on a Windows PC.
    Being able to browse the device over Bluetooth is irrelevant as far as syncing goes as the two functions use different Bluetooth protocols.
    For the Sony Ericsson, as long as you have the right firmware, and set up the phone via the Bluetooth Setup Assistant, and are using the official Sony Ericsson plugin, you should be able to sync ok.
    Regarding the Nokia, I would suggest removing all remnants of previous, possibly duplicated plugins, and installing one from a trusted developer. Many of the "free" plugins you can find via Google haven't been made correctly, and often don't sync everything as they've been made by someone just hacking other plugins, not really knowing what they're doing.
    Good luck!

  • I have installed hydra express plugin for Aperture many time with no success

    I have installed hydra express plugin for Aperture many time with no success. When I select edit with plugin hydra, the make an HDR image with hydra appears. When I hit the process button a message states that hydra is not found. I have checked in my application support folder. There is no plugin folder for aperture or a hydra plugin.
    Any help would be appreciated.

    Plug-ins get installed in one of two locations.
    ~/Library/Application Support/Aperture/Plug-Ins/Edit
    or
    /Library/Application Support/Aperture/Plug-Ins/Edit
    The second is for all users of the machine and is located in the root folder of your system drive (often "Macintosh HD").
    The first is your private library (note the ~ symbol which a shortcut to your user folder) and means the plugin is just for you. ~/Library is hidden by default so finder wont see it. To see it in Finder, use the menu "Go->Go to folder" and type in ~/Library as the folder name. Then you can natigate to /Application Support/ etc....
    That should help you determine if it's installed. Note, you may only find an alias in the plug-in folder and the programs may actually be stored elsewhere. Also, if the Plugin can be used for export as well as edit, it might be located in /Plug-Ins rather than /Plug-Ins/Edit
    In terms of why it isn't working, I think I may have a clue to what's going on. Sometimes plugins use utilitly shell commands that get distributed with the plugin. These can get quarantined by Macs Gatekeep security because they are not signed by a 'valid' developer.
    I've recently taken on the task of making the old Enfuse plugin compatible with the latest version of Aperture, and ran into this gatekeep quarantine issue. I got around it by de-quarantine the required commands and got the plugin working.
    For distribution, I've put an AppleScript together which installs the plugin and takes care of the quarantine issue, but I am just (literally today) tesing that on a different machine to make sure it works the same as it does on mine.
    If you can first confirm that hydra is installed in one of the above locations, I'll then talk you through how to check if there is a quarantine issue with it.
    -Andy

  • Adobe Creative Cloud Packager for macintosh fails

    Adobe Creative Cloud Packager for macintosh fails.
    The error log says "[ERROR] AdobePackageBuilder -  AdobePackageBuilder : SendPacket returned error : -1".
    I tried 4-5 times.
    Everything is downloaded (took about 14 Gb).
    I now have only 12Gb free space on my disk. Can that be the reason (will the packager need to make a copy of the downloaded stuff?).
    When I am done, how do I reclaim the space eaten by the packager?
    Seems like it is caching it at ~/Library/Application Support/Adobe/CCP, but will I manually have to delete that cache?
    I cannot find a menu entrance for doing so.
    Would be nice if the packager could use a mounted network disk as destination, but it seems not to discover these.
    /Peter Andersen

    Wanted to join in and say this has been happening to me too. I wiped every adobe file I could find, and used the cleaner too. Started over from scratch in a brand new user account.
    It's been about 7 days and I cannot get CCP to actually build a package. I've gotten a variety of messages but everything single time something fails. The new thing is that it says it fails on individual applications. So I disable them, and the error jumps to a new app. I can see that the .dmg's are fine and intact in ~/Library/Application Support/Adobe/CCP/
    Given the amount of time this has cost me I really wish I had purchased CS6 Master Collection for every workstation. From my perspective, Creative Cloud has been nothing more then a giant waste of time and effort. It's genuinely bad product from an IT management perspective. Why push off the job of building and installer onto the customer? I should just be able to download the full Master Collection dmg, and then turn on and off the apps I want. Instead I am stuck with a workstation down, and everyone using CC trials to work.

  • Fedora 13: After upgrading from FF3.6 to FF6.0.2 I no longer have a Java plugin. How do I configure the Java Plugin for FF 6 ? There is no Java Plugin at the site

    I am Fedora 13x64 bit. I just installed FF v6.0.2 from the FF download site. I backed up the existing FF 3.6 as firefox_old
    I need to have a Java plugin to access company site, how do I configure the Java Plugin ?
    At the Plugin area in FF6 there is no Java Plugin available, even after a search.
    I have Java 1.6.0 installed in the OS at:
    /usr/lib/jvm/java-1.6.0/jre/lib/amd64/libnpjp2.so
    I googled how to configure Java Plugin for FF 6 for Fedora 13 and the trick was to create a soft link from /home/<userID>/.mozilla/plugins to the above libnpjp2.so

    AVtech wrote:
    . . . If a person can't get an answer here I don't know where else to turn since Sun certainly wouldn't offer tech support for a free product . . .These forums are user forums, and only occasionally visited by Sun employees. Sun does provide Java technical support options, although (of course) at a charge.
    See:
    http://developers.sun.com/services/
    . . . I guess we'll just use JRE 5 until it's unsupported, whenever that will be. I'm still waiting for an answer on that question, too. See:
    http://java.sun.com/products/archive/eol.policy.html
    http://www.sun.com/service/eosl/
    This document (part IV and Appendix) has some debugging and troubleshooting information that may allow someone involved in the problem to resolve the cause:
    See:
    http://java.sun.com/javase/6/docs/technotes/guides/plugin/developer_guide/contents.htm
    Any steps that you can take to isolate the problem to specific Java versions, browsers, applets, web sites, operating systems (and versions), etc, would enhance the possibility of getting help.
    You can try the applets at this Sun location and see if any of them are "slow".
    See:
    http://java.sun.com/javase/6/docs/technotes/samples/demos.html

  • Setting up the Apache HTTP Plugin for several BEA Servers

    Hey together,
    i would like to setup the apache http plugin for several bea-servers.
    I am running apache 1.x on my hp-ux system. There are 2 bea-server-domains on this box and both should be proxied by the plugin simultaneously.
    As far as i know it isn't possible to run 2 or more instances of the apache webserver. I heard of virtualhosts, maybe i should try this one out.
    Somebody knows how to deal with this problem or does any1 know if virtualhosts could cope with my needs?
    Thanks in advance

    Ok here i am again and i'm stuck. Here my wishes again:
    there are 2 weblogic-instances (domains) running on a machine xxx, instance A listening on port 8041, instance B listening on port 8051. I want to configure apache virtualhosts in combination with weblogic plugins, so that request with /ld will be sent to instance A while requests with /ldd will be sent to instance B. Both are no clusters. Therefore i tried it with the following configuration (httpd.conf):
    <VirtualHost xxx:8080>
         DocumentRoot "/opt/hpws/apache/htdocs"
         ServerName xxx:8080
         <IfModule mod_weblogic.c>
         WebLogicHost xxx
         WebLogicPort 8041
         #MatchExpression *
         #PathPrepend=/test2
         </IfModule>
         <Location /ld>
         SetHandler weblogic-handler
         PathTrim /ld
         </Location>
    </VirtualHost>
    # VirtualHost2 = xxx:8090
    <VirtualHost xxx:8090>
         DocumentRoot "/opt/hpws/apache/htdocs"
         ServerName xxx:8090
         <IfModule mod_weblogic.c>
         WebLogicHost xxx
         WebLogicPort 8051
         #MatchExpression *
         #PathPrepend=/test2
         </IfModule>
         <Location /ldd>
         SetHandler weblogic-handler
         PathTrim /ldd
         </Location>
    Doesnt really work. Can some1 help please?
    Thanks

  • Can I do this with a plugin for Reader?

    Hello, I'm totally new to Adobe Reader development and I'm in the need to develop a plugin for Reader that must implement certain functionality. Before starting, I think it's better to ask to the experts if what I want to do is possible or if what I need goes beyond what the Adobe API provides. So, if you're so kind, I'd like you to check the list of needed features and please tell me if they can be fulfilled with a Reader Plugin.
    The plugin must work for Adobe Reader 7,8,9 and 10. It's not a problem if I need to develop a plugin for each version.
    When the user tries to print a document, I will block/cancel the printing process depending on which document is tried to be printed (the full path to the document will be needed).
    I need traceability in "Save as" and "Save as text" features, if the user saves a copy of "c:\file.pdf" into "c:\file - copy.pdf" I need to know both the source and the destiny of the save as operation. Same for any kind of "export to format x" operations if possible.
    I need to be able to communicate with another module via named pipe to periodically send information. This might require dinamically loading a DLL and calling its methods.
    [Optional] I need to restrict the use of the clipboard depending on the documents opened in Reader, i.e. don't allow to copy if a certain document is opened.
    [Optional] If a document is exported via file printer (like Microsoft xps printer), I need traceability on this operation. I'm really pesimistic about this one.
    Also, I'm assuming that retrieving the list of opened documents, or the "active" document will be possible at any time. Please, correct me if wrong.
    Thank you very much for your time, for reading and helping. Im' not asking you to tell me how to implement every single feature, I just need to know if I will be able to implement them when I get some knowledge.
    Have a great day. Greets.
    Message was edited by: fernandoarrabal reason: bad phrasing

    Two things.
    First – Adobe no longer supports Reader 7 or 8, so you would be on your own for those.
    Second, in order to develop a plugin for Reader you need to obtain a license from Adobe.  Details and forms are in the Acrobat SDK.   Start this process ASAP as that will tell you whether you will be able to do your plugin or not.

  • How to configure webserver plugin for IIS to fwd request to multiple server

    Hi,
    Have configured Sun One webserver plugin for IIS is configured as per the documentation - http://docs.sun.com/source/816-7156-10/agplugin.html
    Have a requirement to forward the request to three different servers
    Eg : http://www.host1.com/app1
    http://www.host2.com/app2
    http://www.host3.com/app3
    Getting bad gateway error when this is configured in sun-passthrough.properties file
    serverpool1.server=http://www.host1.com
    serverpool1.passthrough=/app1
    serverpool2.server=http://www.host2.com/
    serverpool2.passthrough=/app2
    Is this configuration wrong?
    Thanks

    First, set the user back to www or whatever it was. To do namebased virtual hosting, you'll need to change two things. The first is to add a NameVirtualHost directive to /etc/httpd/sites/virtualhostglobal.conf
    This is one of the VirtualHost stanzas from my Linux box, you just have to adjust the paths for your machine:
    <VirtualHost www.mydomain.com>
    ServerAlias mydomain.com
    ServerAdmin [email protected]
    DocumentRoot /usr/people/httpd/html/www
    <Directory /usr/people/httpd/html/www>
    Options Includes
    AllowOverride AuthConfig
    </Directory>
    ScriptAlias /bin /usr/people/httpd/cgi-bin/www
    ScriptAlias /cgi-bin /usr/people/httpd/cgi-bin/www
    </VirtualHost>
    Restart Apache and you should be good to go. If there are errors, could you post them from /var/log/httpd/error_log ?
    Roger

  • Third party plugin for premier pro cs6

    I installed a third party plugin for premier pro cs6 on my mac and it's not loading... How can get premiere to see it in the program?

    hi todd,
    cart in front of the horse syndrome - wrote BEFORE reading the article. sorry ;-)
    am coming from 10 years of vegas, unhappily so, but at my age 60+, i'm wary of anything new....

  • How can i create a plugin for adobe in design CS3

    i'm trying to make a plugin to use it in adobe Indesign CS3 program but i can't
    i'm using Windows 7
    i had tryed to make a plugin using Eclips with indesign plugin editor and Visual studio C++ but i can't as i can;t find where can i write my code and there is also an error while debuging is that :
    <error PRJ0019: A tool returned an error code from "Performing Custom Build Step">
    after working out  this error "by adding the directory of Odfrc.exe in tools->VC++ Directories->executable file" another error raise to me :
    <Unknown compiler version - please run the configure tests and report the results> and the visual studio raise message box to me to specify the name of the executable file to be used for the debug session
    i don;t know wat can i do know all i need to create a plugin for indesign program so could any one help me ??

    Each version of the SDK has very specific demands for the compiler setup, and this in turn relies heavily on the operating system. The CS3 SDK probably was based on a much older version of Visual Studio.
    Compare your toolchain against the requirements that should be stated somewhere in the CS3 documentation. It's a solid bet you are years ahead -- there simply is no reason for Adobe to keep on supporting all OSes and compilers that continue to appear, for a version of InDesign that's by now 2.5 versions old.

  • How can I create a search plugin for multiple fields

    There are a number of sites that have search capabilities but they require entries into multiple fields.
    One such site is for instance the IBM Employee directory.
    (http://www.ibm.com/contact/employees/servlets/lookup)
    On this site - in order to get usable results - I have to enter both First name and Last name of the employee I'm looking for.
    I created a search plugin for the site, however I wasn't able to split the entered text into two parts and provide them as separate fields for the form.
    Is there a way to do this?
    Regards,
    Imre

    Hi,
    This is excellent. Not search-plugin though but but this is as good as a search-plugin. (Even better, as I haven't seen any solution with the plugins for the problem.)
    I didn't know that it was possible to use javascript as bookmark location.
    Thanks,
    Imre

Maybe you are looking for