Detect if document is not saved(edited state) Indesign SDK Plugin

Hi,
I would like to know how to detect if my current document is edited.
My plugin will alert if there is any modification on the document.
I did not find it on the documentation pdfs.
Thanks

Answered in the other thread (I mixed them up)
Use IDocument::IsModified()
Dirk

Similar Messages

  • How InDesign comes to know about any changes on document, but not saved. As it shows * on the name of document when it is opened and any changes. And after saving * symbol is get removed from the name of document. How and where indesign@ handles this?

    How InDesign comes to know about any changes on document, but not saved. As it shows * on the name of document when it is opened and any changes.
    And after saving * symbol is get removed from the name of document. How and where indesign@ handles this?

    Are you just asking because you want to know, or do you have a problem you need to solve? I don't know how to write a program, but I think what your are describing is not an unusual thing for a  program to do. The * tells you that changes have been made since the last save, and the program reserves a portion of memory for undo functions. I suppose a coder could tell you how it works, but I don't think it would help an average user to know, but that's just my opinion.

  • The converted word document is not easily edited without having to correct the scewing, etc.

    the converted word document is not easily edited without having to correct the scewing, etc. The final edited document is not suitable.

    > I was able to get the first column resized and can
    > see more text, but this also reduced the size of the third column
    > automatically,
    This sounds more like Word than Indesign. I've never been able to resize
    a column in Word without messing up the column next to it. There's
    probably a way to make Word columns behave properly; I just don't know
    Word that well.
    In Indesign, to make table columns act the way you're describing, you
    must be either dragging the column wider from the left side; or (2)
    holding down the shift key while you drag. Otherwise, making a column
    wider just makes the table wider.
    Try dragging from the right side without the shift key. You can also
    select part or all of the column, go into the Table palette, and set the
    column width exactly, by numbers (which is what I usually do, because I
    like to make sure that my table adds up to exactly or less than the
    width of the text column).
    Sometimes I need to make my tables wider than the page, temporarily,
    just so I can see everything in them and decide where I can lose enough
    space to fit the whole thing on the page. Remember that you can reduce
    cell insets, as well.
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

  • PSE not saving edited files to the organiser

    For no apparent reason my PSE 11 application seems to have developed an annoying glitch whereby part way through an editing process it stops doing as requested in the "Save" options, by not saving edited files as version sets of the original file in the Organiser. The files are saved OK to My Pictures and I then get advised that a file is available to import and I have to import each one, stack it with the original, and put the edited file on top. This is driving me nuts as I have about 1000 photos to edit. What is causing this problem? My only thoughts are that I have c.30000 picture files in the Organiser (but this hasn't caused any problems in adding new files)  and that the problem seems to have arisen since I started editing files directly from within an Album.
    Help

    It's the first time I see that bug mentionned in PSE11, but it's an acknowledged bug in PSE12.
    See that post with links for the workarounds:
    http://forums.adobe.com/thread/1328850

  • InputField is not in editable state

    Hi all,
    here i took a node called Personal and an attribute called name
    but if i run the prog the input field box is not in editable state..means i am not able to enter any data into that

    Hi,
         Know about cardinalities,
             <b> 0..1 -></b> Initially there will be no elements in the node, and it can have only one element at the most. You can create an element using createElement() method, then add it to the node.
              <b>0..n -></b> Initially there will be no elements in the node, and it can have any number of elements. You can create the elements using createElement() method, then add it to the node(one by one).
             <b>1..1 -></b> Initially there will be one empty element in the node, and the node can have only one element at the most.
             <b>1..n -></b> Initially there will be one empty element in the node, and it can have any number of elements. You can create the elements using createElement() method, then add it to the node.
         When the node is empty, you cannot enter any data to its attribute. So, the UI element(InputField in your case) bound to it will be in disabled state only.
          So, you can set the cardinality as 1..1 or 1..n to the node. You are using InputField, so <b>set the cardinality as 1..n.</b>
    regards,
    Prabhakar.

  • Save point with POJO DataControl not saving model state

    Hi Guys,
    JDEV 11.1.1.6 64bit
    I was able to get save points working with ADF BC (AppMod, View & Entity objects)
    but when I tried to do the exact same with Pojo DataControls, I won't save
    the current state of the model - meaning things are not "selected" to the
    proper record when the SP is restored. I don't get any errors, it just
    shows the wrong data.
    Example:
    The BTF is marked as must have transaction(tried either way), but this is Pojo, and doesn't support Trx.
    edit-emp-dept.jspx (with BTF Region)
    BTF START
        STEP 1: RichTable with bindings to Pojo DataControl (value="#{bindings.allDepts.collectionModel}")
                     (user selects the 3 record => sales department)
        STEP 2: Edit Sales Dept & on click to next step create SP
        STEP 3: View Emps (Rich Table of ALL emps in that DEPT)
        STEP 4: Edit Emp
        FINAL: COMMIT (save to pojo list) or CANCEL (don't save to pojo list)
    /BTF END
    At STEP 1 -> STEP 2, the SP is created, and when I close the browser at STEP2, 3  or 4, and
    restart, and choose SP to restore, it takes me to proper page (STEP 2)  but the wrong Department is
    selected to edit (it shows "Finance" instead of "Sales") & if I hit my ADF back button, it shows
    the table with "finance" selected.  In the ADF BC world it works perfectly.
    I know the docs say: the ADF Model is saved, so the question is why bindings.allDepts.collectionModel
    not "saved" here for Pojo DC and the ADF BC af:table value="#{bindings.DepartmentsView1.collectionModel}"
    it is "saved".
    Thanks for any insight or work-around.
    Sincerely,
    Joel
    edit-emp-dept.jspx:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
            <af:region value="#{bindings.btfpojodc1.regionModel}" id="r1"/>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>

    Hi,
    the problem with POJO DC and other non-ADF BC models is that they don't passivate their state. In JDeveloper 12c we allow developers to extend their POJO classes with ADF lifecycle methods that allows them to save the model state themselves. Its a known issue that the transaction state cannot be saved for non-ADF BC models. I checked the bug database for bugs filed against this behavior but could not find one- I can imagine that with 12c we would have a chance to allow developers to handle passivation / activation for non-ADF BC model states. So if this is a feature you need then filing an enhancement request would make sense
    Frank

  • Not Saving Edit business components configration

    Dear All,
    i am trying to modfiy the jbo.ampool.sessioncookiefactoryclass to custom class value in jdeveloepr 11g p2 when i save and reopen jdeveloper displys original class which is oracle.jbo.common.ampool.DefaultSessionCookieFactory and discards new modfication.
    it looks like a bug.
    Any help will be appreciated.
    Thanks in Advance,
    Regrds,
    raky

    I had simply coiped company code from in01.
    after copied company code I am facing problem's like i had posted a few documents and I was trying to see that documents in fb03
    and doing drill down for line item display,
    system saying that data is not in system,
    it is showing me in fb03 but it is not showing in fb10n.
    Secondly, I am using taxinj and in ftxp
    I am trying to create tax code and putting tax percentage in tax code and save,
    if once again I see that tax code system is not saving tax percentage.
    any other clarifications plz ask
    regards.

  • IPhoto 11 not saving edits to file

    Hi - I'm using iPhoto 11 on my iMac (new user) and I can make changes to photos (crop/rotate etc) which are reflected in iPhoto but then they are not saved in the original files in the Pictures folder.  I have tried to delete the com.apple.iphoto.plist file as some other forums have directed but it makes no difference. This is a problem if I am then trying to upload them to Truprint or editting them for posterity.
    All help appreciated, thanks

    I can make changes to photos (crop/rotate etc) which are reflected in iPhoto but then they are not saved in the original files in the Pictures folder.
    Of course not. Iphoto is designe to always preserve your original file. It never does anything to it. Your edits are ll carried out on a copy of the originls file.
    Further, iPhoto is a database and you never, ever access the files via the Finder.
    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • IPhoto not saving editing changes:

    I am attempting to edit changes in my IPHOTO library and notice that it's not saving everything that I want. It is making some changes i.e. brightness/contract, however sharpness and other editing options are NOT being saved. Very odd, I am wondering if IPHOTO 6 has fixed this problem? It appears others are having this problems with issue as well and no there does not appear to be any concrete answers. Any help would be appreciated! Thank you!

    Hello, Phez,
    It may be that iPhoto's preference file has been damaged. Delete it and see if that corrects the problem. iPhoto will create a new one when it determines that the old one is gone.
    Go to YourUserName->Library->Preferences->com.apple.iPhoto.plist and delete that plist.
    Also, you should always repair permissions before and after any installations/upgrades. Applications->Utilities->Disk Utility. Select your hard drive's icon by its name, then be sure you are in 'First Aid' and choose 'Repair Disk Permissions."

  • Iphoto11 not saving edits

    Currently using Os10.8.4, iPhoto11 on a MacBook Air, I can not duplicate pictures and after making changes, my pictures are not saved. Exporting them does not save changes. When viewing pictures in the screen, they apprea original, but as soon as I hit enter to allow the editing bar to open, they will change (after a few seconds) to the edited version. Lots of odd little things happening. What could be wrong? I am not a strong apple user. I have learned some basics, but no more.
    Most of my library that I use comes from a WD My Passport for Mac. I try exporting the files to the SDD on the MBA in smaller versions of jpg. My originals are all in RAW.

    Verify the format of your external drive - it should be Mac OS extended (journaled)
    Is it?
    LN

  • Photoshop elements not saving edits/captions

    I am perplexed how to get my photoshop elements 4 to save my photo edits and captions. It has worked well for many years but something happened a couple of months ago and now it is not saving either my photo editing or captions in organizer...HELP!

    DJ, My computer is windows 8, below are the system requirements for PSE12 - looks like it will run in 64-bit. Thanks for pointing me in the right direction!
    No, you have seriously misunderstood what I said. PSE will not run as a 64 bit application under Windows. Even though you have a 64 bit version of Windows, PSE will NOT run as a 64 bit application under Windows. It will run as a 32 bit application under Windows 64bit, giving it a maximum of approx 3 GB of memory to work with. I don't know if that will make your problems go away or not. Please download the 30-day free trial of PSE 12 and see if your problems go away or not before you make a purchase.
    From the system requirements
    all other applications run native on 32-bit operating systems and in 32-bit compatibility mode on 64-bit operating systems

  • Documents/attachments not saved in workcenter incident management?!

    Hi all!
    We patched our system to SPS 20.
    While testing the designed functionality of the incident management within the work centers I got an problem with saving attachements.
    I can choose an attachement/document (.doc; .xls; .pdf; etc.) and assign it to the ticket.
    If I save the ticket I get the feedback "saved correctly" but the attachment disappears and is not existing any
    more in the ticket.
    This only happens within the work center. In SAP GUI the attachements can be assigned and saved correctly.
    We checked and implemented the latest notes for SPS 20. Also 1269928 and 1080131.
    Does anyone have had a problem like this before?
    Thanks for you help in advance.
    Regards,
    Alex

    Hi Alex,
    you might check SAP Note [1401196|https://service.sap.com/sap/support/notes/1401196] "Work Centers: attachment not saved in Incident Management" to solve the problem.
    Best regards,
      Andreas

  • Iphoto not saving edits

    I am editing a photo in iphoto, but it's not saving the edit like it says iphoto does automatically. The edited version shows up in the album, but when I click on the photo, it opens to the original, and I only see the edited photo when I click "edit." I have tried exporting it, e-mailing it, everything, and it always just shows the original. What do I do? I need to save the edit!

    Try trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder.
    (On 10.7: Hold the option (or alt) key while clicking on the Go menu in Finder to access the User Library)
    (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    What's the plist file?
    For new users: Every application on your Mac has an accompanying plist file. It records certain User choices. For instance, in your favourite Word Processor it remembers your choice of Default Font, on your Web Browser is remembers things like your choice of Home Page. It even recalls what windows you had open last if your app allows you to pick up from where you left off last. The iPhoto plist file remembers things like the location of the Library, your choice of background colour, whether you are running a Referenced or Managed Library, what preferences you have for autosplitting events and so on. Trashing the plist file forces the app to generate a new one on the next launch, and this restores things to the Factory Defaults. Hence, if you've changed any of these things you'll need to reset them. If you haven't, then no bother. Trashing the plist file is Mac troubleshooting 101.

  • Documents are not saving as PDFs

    My hard drive crashed a couple of weeks ago.  I replaced the hard drive and was able to save the majority of my data.  However, when I re-installed the Adobe Reader, I have to access any PDFs online.  I can save a document as a PDF and it will tell me it is, but when I go back to look it up on my computer, it is not a PDF - only a FireFox link.  I do not want to have to get online every time to access my PDFs since I am limited on internet usage.  How can I permanently save a document and have it read as a PDF without going online to read it?
    I appreciate any help!
    Terri

    The document when saved says it is saved as a PDF but it does not give you that option when I am wanting to save it from the FireFox link to PDF and still pulls up as a FireFox document.  When the document is printed, Adobe Reader is not reading it and it does not print into a PDF, which comes out off-centered or missing information.
    Terri

  • Fireworks not saving edits.

    I have just done my 3rd html/images click thru mockup of a website using Fireworks. I have been experiencing much trouble with editing button symbols and also with button symbol pop up menus. It seems that in order to enable/disable a behavior such as "down state upon load" or to make changes to the appearance of a pop-up menu I must make one change, save the file, close the file, and then re-open. If I try to make more than one change or don't close and re-open, the changes I made do not "stick". this is a real pain and hassle. Has anyone else experienced this?
    I have always tried to avoid blaming software for problems I have. I must, however, say that I find Fireworks to be a very quirky and poorly functioning application. There are a number of other problems like confusing menus and strange behaviors and lack of functionality. I like having the mock-up tool and it could be very useful but......I use Photoshop, Illustrator, Dreamweaver, Acrobat Pro all with no complaints. Fireworks needs attention from Adobe IMHO. (end of rant)
    So has anyone experienced the problem with editing button symbols/pop-up menus and not having the edits "stick", or is just me? Thanks!

    Maybe you are exporting the original. Try choosing H.264 and you should get an export of your adjusted clip in mp4 format which can be uploaded to YouTube, Vimeo etc.

Maybe you are looking for