How to avoid Indesign missing plugin information

Hi,
We are facing one problem in our ID document.
In one of our Indesign CS4 machine (MAC), we have Powermath plugin installed.
And we have created a new Indesign document in that machine. Here the powermath is not used in the document.
When we opened this document in another Indesign CS4 machine, we are asked the missing plugin information even though that plugin is not used in that document?
Can anyone tell me how to avoid missing plugin information while opening the document.
Thanks,
Gopal

Export the document to IDML and open that. That should strip out the plug in info.
Bob

Similar Messages

  • How do I fix "missing plugin'?

    I seem to be getting a lot of these lately and one today in an email.  How do I find my missing plugin? 

    Re: how to fix missing JavaScript plugin in CC 2014

  • How to get the "Missing Plugin" for iPhoto 9.1.1 eMailing??

    OK with the improvements in iPhoto (iLife'11) version 9.1.1 we are back to being able to eMail using MAIL or another eM program. Great. But I can also eMail within iPhoto- and this has been improved as well; so I tried this and sent a corkboard eM with 4 photos to myself...
    ...and got just the corkboard, with a message stating in the middle of the corkboard: *"Missing Plugin".*
    Can anyone assist with this? (I tried another theme, a gray-background one with 3 pics and that worked fine - but not the "corkboard")
    Best regards,
    Steve Schulte
    Thursday 23 December 2010

    Does anyone have any information about this? Is a "Plugin" really needed to send eMails via iPhoto 9.1.1?
    Thanks!
    Best regards,
    Steve Schulte
    Thursday 23 December 2010

  • How to find a missing plugin for this website

    I'm trying to find the right plugin so I can view the federal elections commission image viewer. Any help would be awesome! :) The url is: http://images.nictusa.com/cgi-bin/fecimg/?12020261900

    That is a PDF file.
    *https://support.mozilla.org/kb/Using+the+Adobe+Reader+plugin+with+Firefox

  • How to avoid Cache misses?

    Hi,
    Before I explain the problem here's my current setup.
    - Distributed/partitioned cache
    - Annotated JPA classes
    - Backing map linked to an oracle database
    - Objects are stored in POF format
    - C++ extend client
    When I request an item that does not exist in the cache, the JPA magic forms a query and assembles the object and stores that inside the cache.
    However if the query returns no results then coherence sends back a cache miss. Our existing object hierarchy can request items that don't exist (this infrastructure is vast and entrenched and changing it is not an option). This blows any near cache performance out of the water.
    What I want to do is to intercept a cache miss and store a null object in the cache on that key (by null it will be 4 bytes in length). The client code can interpret the null object as a cache miss and everything will work as usual - however the null object will be stored in the near cache and performance will return.
    My problem is, as annotated JPA does all the 'magic', I don't get to intercept if the query returns an empty set. I've tried both map triggers and listeners, however as expected they don't get called as no result set is generated.
    Does anyone know of an entry point where I can return an object to coherence in the event of a query returning an empty set. I'd also like the ability to configure this behaviour on a per cache basis.
    Any help gratefully received.
    Thanks
    Rich
    Edited by: Rich Carless on Jan 6, 2011 1:56 PM

    Hi,
    If you are using 3.6 you can do this by writing a sub-class of JpaCacheStore that implements BinaryEntryStore or a more genric way (which would suit other people who have asked similar questions recently) would be to write an implementation of BinaryEntryStore that wraps another cache store.
    Here is one I knocked up recently...
    package org.gridman.coherence.cachestore;
    import com.tangosol.net.BackingMapManagerContext;
    import com.tangosol.net.CacheFactory;
    import com.tangosol.net.DefaultConfigurableCacheFactory;
    import com.tangosol.net.cache.BinaryEntryStore;
    import com.tangosol.net.cache.CacheStore;
    import com.tangosol.run.xml.XmlElement;
    import com.tangosol.util.Binary;
    import com.tangosol.util.BinaryEntry;
    import java.util.Set;
    public class WrapperBinaryCacheStore implements BinaryEntryStore {
        private BackingMapManagerContext context;
        private CacheStore wrapped;
        public WrapperBinaryCacheStore(BackingMapManagerContext context, ClassLoader loader, String cacheName, XmlElement cacheStoreConfig) {
            this.context = context;
            DefaultConfigurableCacheFactory cacheFactory = (DefaultConfigurableCacheFactory) CacheFactory.getConfigurableCacheFactory();
            DefaultConfigurableCacheFactory.CacheInfo info = cacheFactory.findSchemeMapping(cacheName);
            XmlElement xmlConfig = cacheStoreConfig.getSafeElement("class-scheme");
            wrapped = (CacheStore)cacheFactory.instantiateAny(info, xmlConfig, context, loader);
        @Override
        public void erase(BinaryEntry binaryEntry) {
            wrapped.erase(binaryEntry.getKey());
        @SuppressWarnings({"unchecked"})
        @Override
        public void eraseAll(Set entries) {
            for (BinaryEntry entry : (Set<BinaryEntry>)entries) {
                erase(entry);
        @Override
        public void load(BinaryEntry binaryEntry) {
            Object value = wrapped.load(binaryEntry.getKey());
            binaryEntry.updateBinaryValue((Binary) context.getValueToInternalConverter().convert(value));
        @SuppressWarnings({"unchecked"})
        @Override
        public void loadAll(Set entries) {
            for (BinaryEntry entry : (Set<BinaryEntry>)entries) {
                load(entry);
        @Override
        public void store(BinaryEntry binaryEntry) {
            wrapped.store(binaryEntry.getKey(), binaryEntry.getValue());
        @SuppressWarnings({"unchecked"})
        @Override
        public void storeAll(Set entries) {
            for (BinaryEntry entry : (Set<BinaryEntry>)entries) {
                store(entry);
    }Using the JPA example from the Coherence 3.6 Tutorial you would configure it like this...
    <distributed-scheme>
        <scheme-name>jpa-distributed</scheme-name>
        <service-name>JpaDistributedCache</service-name>
        <backing-map-scheme>
            <read-write-backing-map-scheme>
                <internal-cache-scheme>
                    <local-scheme/>
                </internal-cache-scheme>
                <cachestore-scheme>
                    <class-scheme>
                        <class-name>org.gridman.coherence.cachestore.WrapperBinaryCacheStore</class-name>
                        <init-params>
                            <init-param>
                                <param-type>com.tangosol.net.BackingMapManagerContext</param-type>
                                <param-value>{manager-context}</param-value>
                            </init-param>
                            <init-param>
                                <param-type>java.lang.ClassLoader</param-type>
                                <param-value>{class-loader}</param-value>
                            </init-param>
                            <init-param>
                                <param-type>java.lang.String</param-type>
                                <param-value>{cache-name}</param-value>
                            </init-param>
                            <init-param>
                                <param-type>com.tangosol.run.xml.XmlElement</param-type>
                                <param-value>
                                    <class-scheme>
                                        <class-name>com.tangosol.coherence.jpa.JpaCacheStore</class-name>
                                        <init-params>
                                            <init-param>
                                                <param-type>java.lang.String</param-type>
                                                <param-value>{cache-name}</param-value>
                                            </init-param>
                                            <init-param>
                                                <param-type>java.lang.String</param-type>
                                                <param-value>com.oracle.handson.{cache-name}</param-value>
                                            </init-param>
                                            <init-param>
                                                <param-type>java.lang.String</param-type>
                                                <param-value>JPA</param-value>
                                            </init-param>
                                        </init-params>
                                    </class-scheme>
                                </param-value>
                            </init-param>
                        </init-params>
                    </class-scheme>
                </cachestore-scheme>
            </read-write-backing-map-scheme>
        </backing-map-scheme>
        <autostart>true</autostart>
    </distributed-scheme>As you can see the WrapperBinaryCacheStore takes four cpnstructor parameters (set up in the init-params)
    <li>First is the Backing Map Context
    <li>Second is the ClassLoader
    <li>Third is the cache name
    <li>Fourth is the XML configuration for the cache store you want to wrap
    If the load method of the wrapped cache store returns null (i.e. nothing in the DB matches the key) then instead of returning null, the BinaryEntry is updated with a Binary representing null. Because the corresponding key is now in the cache with a value of null then the cache store will not be called again for the same key.
    Note If you do this and then subsequently your DB is updated with values for the keys thet were previously null (by something other than Coherence) then Coherence will not load them as it is never going to call load for those keys again.
    I have given the code above a quick test and it seems to work fine.
    If you are using 3.5 then you can still do this but you need to use the Coherence Incubator Commons library which has a version of BinaryCacheStore. The code and config will be similar but not identical.
    JK
    Edited by: Jonathan.Knight on Jan 6, 2011 3:50 PM

  • Missing plugin in ID CS4

    Hi,
    When I opened the Indesign CS4 document, it shows the message
    mm.ms.im.Kernel.IndesignPlugin
    "The document 'sample.indd' used one or more plugin-ins ..."
    Question 1: Is there any way that, if there is any missing plugin shows, then the file should not opened by indesign. Is there any way to do this within Indesign application.
    Question 2: If that plugin is realy not used in the Indesign document, Is there is any way to remove the missing plugin information's from the Indesign document without saving as  .inx .
    Please suggest me on this two questions.
    Thanks for the help.
    Regards,
    Gopal

    No, It is not a CS5 file.
    This file is created in ID CS4.  When we open the same file in another mac machine which have ID CS4, it shows the missing plugin information.
    Actually, this plugin is not used in the document.
    My question here is, since the plugin is not actually used in the document, why the ID CS4 shows the missing plugin dialog when we open the file.
    Is there any way to avoid this dialog while opening the file.
    Thanks,
    Gopal

  • Missing File information

    I was trying to make a smart folder to house all the pictures in certain folders that were less than a month old. A bunch of these pictures were taken earlier today. Anyway, The "Created" option wasn't showing anything for the past month and after poking around a bit, I realized by opening the picture file's information window that under "Date Created" it just said "--". I tried to figure out in preferences in the finder but you know how limited those options are. I may not really need to know how to write in missing file information. That would be a bit of a pain. I was wondering where the problem was coming from. Why would my iMac not put a date and time stamp in the file's info when I got it off my camera? I need to make my Mac start doing that.

    Oh yeah. I forgot to mention that I tried "Date Modified" and it worked until I would open one of the files. Once they were closed and you went back to the folder, that file was gone. I'm not really sure why. I feel like there's a simple explanation for this and that I was missing something quite obvious. It's driving me nuts. I can't think of a reason that would happen. I tried everything time related. The key part of this is that I want the files to disappear once they are a certain age (I'm thinking about a month). Without that part of the equation, I don't really have a use for the folder at all. I was thinking for some reason that there was no way for a user to change anything in the file's information manually. The answer I think that would have to occur is to find a way to get my Mac to start stamping the date and time. The only reason I don't think it's the camera is that even if the camera didn't stamp the date and time, the OS should have when it came through. Oh yeah, this isn't a new camera and I have pictures from 3 to 4 months back that were successfully imported with the information. ALl the way back to the earliest image taken with this camera (and I've had this camera for a couple years!).

  • Web site keeps asking for missing plugins

    I work for a well known German car manufacturer and on a regular basis have to complete e-training on their web site.
    Now I have already done a platform test for mac and unfortunately failed because it is not comparable - however speaking with iT department they suggested I  Run Fire fox. This actually allows me into web page but as soon as I start a course a window pops up saying missing plugins.
    It then asks me do I want to locate missing plugins when I select yes it then pops up with another window suggesting there are no suggestions.
    It then asks me if I'd like to do a manual search - unfortunately because I haven't got a clue which plugins I require I'm reluctant to download a system for example like Java. My mac 27" is fresh out the box how do I find missing plugins.
    Our iT department has suggested changing my computer to a windows platform - which obviously not an option  

    Java and Flash are two very common plugins that no longer come pre-installed on Macs. Flash used to and I think believe Java did but I'm not 100% sure.
    I think you can get Java if you just run software update, otherwise, go here
    As for Flash, that's here
    Make sure you visit these using Firefox.
    If you can provide the link to the website, I can take a look and hopefully see what exactly you need.
    ~Lyssa

  • How do I update my InDesign CS3 plugins? I received a document from a colleague created in CS3 and I can't open it due to missing plugins.

    How do I update my InDesign CS3 plugins? I received a document from a colleague created in CS3 and I can't open it due to missing plugins.

    The error message is below. When I get info on the file it says it's a CS3 file.

  • How to Open an Indesign file with a missing plugin

    Is there a way to open a file that has a missing plugin?
    This is the case:
    We used an outside designer who is on CS5 indesign and teacup barcode software plugin cs5
    We received his files saved back to CS4, but it is still telling us there is a missing plugin.
    I'm assuming it is Teacup software. Is there a way around this??

    Jenna Hamilton wrote:
    Is there a way to open a file that has a missing plugin?
    This is the case:
    We used an outside designer who is on CS5 indesign and teacup barcode software plugin cs5
    We received his files saved back to CS4, but it is still telling us there is a missing plugin.
    I'm assuming it is Teacup software. Is there a way around this??
    You should try to be as accurate as possible when describing your situation. For example, you say the file was “saved back to CS4”. That is impossible. There is no way to save an InDesign CS4 file from any program except InDesign CS4. Do you mean that the designer exported an .idml file from InDesign CS5? If so, then say so. If you have been given an InDesign .indd file saved from InDesign CS5, then you have an InDesign CS5 file, not an InDesign CS4 file.

  • How to find out which plugin is missing ( embed width="100%" height="100%" messagecallback="parent.frames.MANIPULATIONS.AppendMessage" spinfps="15" spiny="30")?

    How to find out which plugin is missing fro mthe website: http://web.it.nctu.edu.tw/~twli/interactive/scr_tutf.htm?
    After looking at one similar question found in mozilla support and answered by jscher2000 (https://support.mozilla.org/en-US/questions/957655), I have found out I have to look for either &lt;object or &lt;embed. What I found is : &lt;embed width="100%" height="100%" messagecallback="parent.frames.MANIPULATIONS.AppendMessage" spinfps="15" spiny="30"
    What do I have to do now?

    This big1.mol (and possibly big2.mol) file is loaded in the embed plugin object that is opened in a iframe, so you can right-click the plugin area to check the embed code.
    *http://web.it.nctu.edu.tw/%7Etwli/interactive/big1.mol
    *http://web.it.nctu.edu.tw/%7Etwli/interactive/big2.mol

  • How to avoid version information in http response

    Hi,
    We have a SAP java web application in webdynpro framework developed using SAP NetWeaver.
    If I right click on broswer and see View Source of the page, it is displaying information related to Development components, java version, SAP version etc..
    I am very new to SAP and would like to know how to avoid the information.
    I have already tried setting useServerHeader to false and DevelopmentMode to False in SAP J2EE engine.
    Below is the information displayed in the view source.
    This page was created by SAP NetWeaver. All rights reserved.
    Web Dynpro client:
    HTML Client
    Web Dynpro client capabilities:
    User agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E), client type: msie7, client type profile: ie6, ActiveX: enabled, Cookies: enabled, Frames: enabled, Java applets: enabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Accessibility mode: false
    Web Dynpro runtime:
    Vendor: SAP, build ID: 7.0026.20120524121557.0000 (release=NW04S_26_REL, buildtime=2012-05-24:14:38:29[GMT+00:00], changelist=141071, host=VMW4330.wdf.sap.corp), build date: Fri Nov 16 03:56:13 CET 2012
    Web Dynpro code generators of DC
    SapDictionaryGenerationCore: 7.0021.20091119120521.0000 (release=NW04S_21_REL, buildtime=2009-12-11:15:55:08[UTC], changelist=76328, host=PWDFM114.wdf.sap.corp)
    J2EE Engine:
    7.00 PatchLevel 129925.450
    Java VM:
    SAP Java Server VM, version: 4.1.024 21.1-b02, vendor: SAP AG
    Operating system:
    Linux, version: 2.6.32-131.17.1.el6.x86_64, architecture: amd64
    Hope I explained the issue and thank you so much in advance..

    Or
    Have a look and these query on WD and portal
    refer; Disabling the Right click functionality in the Detailed Navigation?
    Disable WD ABAP default context menu
    Remove / Hide standard right click menu in Web Dynpro ABAP application
    Regd Right click functionality in portal

  • I have Photoshop 7 on a laptop with windows 8.1.  When I try to open Photoshop 7 I get the error message "cannot open missing personalization information".  What is this and how can I fix it?

    I have Photoshop 7.0.  This is on a laptop running windows 8.1.  When I try to open it I get the errro message: " cannot open missing personalization information".
    what is this and how can I fix it.

    Run it in compatibility mode and input the credentials.
    Mylenium

  • How do I upgrade the plugins needed for my earlier version of InDesign CS5 so I can open a file in a later version of CS5?

    How do I upgrade the plugins needed for my earlier version of InDesign CS5 so I can open a file in a later version of CS5?

    You can’t. You have upgrade or have whoever is send you files save as IDML. Don’t expect perfection.

  • How do you find out which plugins firefox will install BEFORE you click 'install missing plugins'?

    How do I determine which plugins firefox will install BEFORE I click 'install missing plugins'?
    I don't just want to install some unknown plugins. Isn't there a way to determine the plugins that firefox will isntall? Can't it present me with a list of plugins that is going to be installed, before I click the button?

    Did you look in the Windows Control Panel > Add / Remove Programs?
    http://www.uninstallreview.com/Browsers/how-to-uninstall-Keep-Tube-for-Firefox_7005.html

Maybe you are looking for

  • Hide the Selection-Screen fields

    Hello, how can i hide a Logic Database's Selection-Screen?

  • Do knowledge of HTML is required in latest website development trends?

    Hi all, I was in a website development seminar in my city last Sunday. The topic which we have discussed might be interesting for forum members. We had discussed many open topics regarding latest tends in website development in different technologies

  • One website won't load

    One specific website will not load on my mom's computer. She has a MacBook, w/ 10.4.11. - The website loads fine on my MacBook, also running 10.4.11, on the same wireless network - The website loads fine on computers outside of our network, PCs runni

  • Web page keeps changing to Mac App Store

    Hello, Whenever I use safari to try and watch shows offline about 2 minutes in the webpage I'm watching the TV show off of changes to the Mac App Store showing the Vox app (please see below for link to webpage that it changes to). It also then goes a

  • Omg help-template does not create the page I want

    I got my site all finished, it's uploaded, works fine online.  I went to go make a site map in DW CS4 and I went to apply template(the one I have used for all my pages) and it came up completely different then what my template looks like.  It is whit