How to refresh images placed with XML?

Hi folks!
I placed some images and texts with XML to an InDesign (CS5) document. Unfortunately it's possible that the file is modified. In that case I want to start a script which updates the links. But that should happen later. First it's necessary to check if updating is possible.
For that I modified the file and refreshed my linked file. But all that is replaced are my texts. The images vanished and I had to place them again by hand.
What am I doing wrong? Could anybody help please?
With kind regards,
Steffi

Ok, maybe somebody knows the problem when I'm posting some images. I made a screenshot of my InDesign XML and after you can see my XML-File.
And here's my XML-File:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Lage>
    <wohnlage>Gute Wohnlage im Grenzbereich zu sehr guter Wohnlage</wohnlage>
    <Lagebeschreibung>Der Mornroe-Park liegt in einer guten Wohnlage. Die blauen Punktelinien zeigen die Grenzen der PLZ-Bereiche.Der Monroe Park liegt im Grenzbereich zwischen PLZ 14167 und 12205.</Lagebeschreibung>
    <Legende href="H:\05_1Produkte\2010\005_Riskanalyser2010\Karten\Lagelegende.png"/>
    <Lagekarte href="H:\05_1Produkte\2010\005_Riskanalyser2010\Karten\20012_Karte.jpg"/>
    <Kartenuntertitel>diese Karte beinhaltet blablabla</Kartenuntertitel>
</Lage>

Similar Messages

  • How to improve image resolution with using filters

    how to improve image resolution with using filters?

    image resolution, Please check the below links. They should give you a clear idea about Resizing and resampling images.
    http://helpx.adobe.com/photoshop/kb/advanced-cropping-resizing-resampling-photoshop.html#m ain_Resizing_and_resampling_images
    Understanding Resize vs. Resample | Learn Photoshop CS6 | Adobe TV
    Cheers!
    ~ Arpit

  • Access image placed by xml-rules

    Hi, I have to modify an image (width/height) which is placed by xml-rules.
    XML:
    >
    >  
    >
    JavaScript:
    > function SymbolRule() {
    >   this.name = "Symbol";
    >   this.xpath = "//sometag/Symbol[@typ='new']";
    >   this.apply = function (element, ruleProcessor) {
    >   with (element) {
    >     applyObjectStyle("somestyle");
    >  }
    How can I now access this image to modify its properties?
    I've read http://www.adobeforums.com/webx/.59b7295a/2 but I don't understand *where* to place the code to access the image. Is it possible to do it in my XML-Rule SymbolRule()? Or is it "to early" because the image is no yet placed in the document?

    I have the exact same issue!
    My problem occurs after I unthread the document. After unthreading, the elements parent changes to XmlStory and I can't locate the parent page/spread.
    It's an anchored textframe within a table cell. So parent path is like so:
    obj (textframe) -> Character -> Cell -> Table -> XmlStory -> Document
    In InDesign I can see that the object is on the page and visible.
    I would like to get to the page.
    Any help would be greatly appreciated.
    Thanks
    Ruvan

  • Problems loading images dynamically with XML

    Hi Everyone,
    I am working with a project that was build by another
    developer and I have been asked to modify it several ways. This is
    an interactive map for a hotel brand where when you click on the
    USA, you get a list of all the states, click a state and a list of
    all the hotels in that state comes up, click a hotel, the hotel's
    information is displayed. I understand the structure of the files,
    how they make them work, though I couldn't build it myself.
    The problem I am having is this. can't make the hotels'
    photos load into the flash through the XML. I created a target
    movie file that the image could load into but something is not
    happening as far as loading the images. I don't know if the movie
    clip that I created is the right way to go (it was made as an
    object in the library that is exported via AS), or if I should
    create one in the action script file that loads the XML data.
    I looked at some tutorials about how to load images with XML
    but those didn't get into the level of detail that I need for this
    project.
    I've attached some partial code to see if anyone can help me
    work through this.
    Any and all suggestions are welcome.
    Thanks for the help in advance.
    Jeremiah

    I'm a noob at AS3 and trying to learn this XML stuff myself,
    but i have been able to load pictures to the stage...this might
    help you...my xml file photo section is similar to yours, only I
    have it labeled as "href" instead of "source"...
    var imageLoader:Loader;
    var xml:XML;
    var xmlList:XMLList;
    var xmlLoader:URLLoader = new URLLoader();
    xmlLoader.load(new URLRequest("xmldata/images.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
    function xmlLoaded(event:Event) :void {
    xml = XML(event.target.data);
    xmlList = xml.children();
    for (var i:int = 0; i<xmlList.length(); i++) {
    imageLoader = new Loader();
    imageLoader.load(new URLRequest(xmlList
    .attribute("href")));
    imageLoader.x = 0;
    imageLoader.y = 0;
    addChild(imageLoader);

  • How to export image sequence with a specific number

    Hello
    I'm looking how, like in after, I can export an image sequence with a starting specific number. I spend hours to rename images with Renamer, boring, stupid!
    Thank you for helping
    Alex

    Use Bridge.  You can do them all at once with Batch Rename.

  • How to refresh Portal form with dependent LOVs ?

    I have a portal form which has dependent LOVs, the first LOV is
    a Site LOV and the next LOV is a Teacher LOV. Once a Site is
    selected, the form refreshes to load the Teacher's LOV with
    teachers belonging to the selected Site.
    In some cases the Site is assigned internally (using Javascript)
    in such cases the form does not refresh automatically; which
    causes the problem, as all the Teachers of all the Sites are
    loaded in the LOV.
    Any suggestions are welcome.
    Thanks,
    Hilal

    Put this code into the javascript onChange event of the list box
    that you want to automatically refresh the screen with:
    do_event(this.form,this.name,1,'CUSTOM','');
    that should cause the screen to refresh when an item is chosen.
    at that point, the 2nd list box (if you used the :paremter in
    the LOV and bound it to the right field in the form) should come
    up with the proper set of values Thanks Michael,
    But my problem is not with that part of refreshing; that is
    refreshing, when a value is picked from the first LOV to re-load
    the second LOV works fine.
    My problem is only when the value of the first LOV is internally
    set, the form does not refresh to re-load the second LOV. The
    value of the first LOV is loaded(internally) using one of the
    fields in "wwsec_api.person_info", eventhough this value is set,
    it does not trigger a refresh to re-load the dependent second
    LOV.
    I guess a solution to this problem would be to explicitly
    refresh the form (I am not able to figure out how).
    Hope I have clarified myself.
    Thanks.

  • How to read Images associate with Purchase Requisitions and its Line Items

    Hello,
    My scenario: i need to read the Images associated with PR and its line items and pass them as Idoc FM.
    Any idea where are these images stored in the SAP table or they just available till runtime
    Regards,
    Abhishek

    You can have a look at the link here [GOS Contents|http://help-abap.zevolving.com/2009/02/generic-object-services-gos-toolbar-part-5-get-note-attachment-contents/]
    Please note that in your case if its attachments only then pass la_relat-low = 'ATTA*'. if there is no filtering then pass 'NOTE', 'URL', 'ATTA' as required.
    For the business object of PR pass BUS2105 and instance id pass the PR no.
    The tables related to this are srrelroles,srgbinrel,sood etc.

  • How to refresh an iterator with PPR set to none after task flow operation?

    Using JDev 11.1.2.1.0.
    Doing the sample here: http://www.gebs.ro/blog/oracle/oracle-adf-creating-an-addedit-bounded-task-flow-using-a-new-transaction/
    For this to work, you've got to set your page iterator/executable's ChangeEventPolicy to "none". Otherwise, you can't set the selected row correctly due to the iterator refreshing on commit.
    I'm trying to extend this example to include a Delete operation setup in the task flow. However, I can't figure out how to refresh the page's iterator to display the updated results. The Delete doesn't run in a dialog so it doesn't invoke the calling button's returnListener.
    Any ideas?
    Thanks,
    Will

    Thank you for your response.
    I'm trying to call the delete operation from a task flow. Once the delete occurs, the page should somehow call a refresh on the iterator displayed. However, since the iterator can not have PPR set, the refresh doesn't happen automatically. Additionally, since the delete doesn't happen as part of a dialog window, the returnListener for the calling button does not fire.

  • How to name image sequences with the convention "name.[####].extention"?

    Quicktime doesn't seem to respond to the naming convention used in other programs like After Effect or Combustion for naming image sequences when you are exporting the sequence. It does let you put a space before the sequential numbering but this is no good for using image sequences in Maya for example. During the save prompt if we were to save the image sequence as AppleMovie.[####].jpg in these programs we would yield an image sequence with AppleMovie.0001.jpg, AppleMovie.0002.jpg, AppleMovie.0003.jpg, etc. Anyone know if there is a way to do this as I've described?

    Open ExtendScript Toolkit this can be found here:-
    PC: C:\Program Files\Adobe\Adobe Utilities
    MAC: <hard drive>/Applications/Utilities/Adobe Utilities
    Copy and paste the code into a new window and then save the code to:-
    PC: C:\Program Files\Adobe\Adobe Photoshop CS#\Presets\Scripts
    Mac:- [hard drive]/Applications/Adobe Photoshop CS#/Presets/Scripts/
    If photoshop was open, close and re-start it so that Photoshop can pick up the new script.
    Now you can create an action to run the script and do your save so that this action can be batched.
    To add the script to your action:
    File - Scripts - select the script (this will add the new layer)

  • How to refresh image component JSP?

    hi i am using Netbeans 6.01 and developing a web project.
    I need to do some manipulation on an image according to input and save the image at address in the project/build/resources/image with the same name when user press a button but sometimes page refreshes the image and sometimes it does not refresh.I don't know what to do
    thank you for your interesting and help if u need more details about the problem please just ask me.

    I have just discovered something this is not about the code that i wrote
    double x=0;
    while(x<=1000000000)
    x++;
    super.init();
    init();
    i delete this code when i reload page once after that all of my requests works properly.I mean when i press reload button of the browser once then page works and image is resfreshes.
    Now i can solve the issue if anybody can tell me how to reload a page when i press a button
    i don't wanna use the javascript onclick() window.location.reload().
    Edited by: maniacneron on Dec 24, 2008 2:34 PM

  • How to save XDP/Form with XML as a standalone PDF - Running out of time

    Help...I'm in a time crunch.  I have a perfectly working form that takes XML and merges into a wonderful PDF on my machine (1000+ pages).  The problem is I need to distribute the finished PDF with the XML...not to two independent files.
    I have tried every "Save As" and "Export" available and it only saves the PDF template without the data.
    I have tried to "Print" to a PDF writer / pseudo-printer but it chokes and dies after a few hundred pages.
    What am I missing?  How can I take this form and XML and make a final product PDF that I can distribute?
    In case it helps...the form was made in LiveCycle and the XML is generated from PHP.

    Thanks for your ideas.  I'm not using the reader...I'm using Acrobat Pro 9.x.
    This isn't really a LiveCycle question because that has to do with the form design.  This is post-design and during the data merge...something only an end-user would see or have access to.
    The form works great...the data is great.  They are merged on the screen and looks perfect.  However, I can't get the combined output saved anywhere.

  • How to create a node with XML

    Hi everybody,
    How can I create an XML node?
    I try whith createnode, but don't work
    Thanks
    Carles

    Thanks Gordon,
    I try do understand, but i can't
    I have:
    oNodo = oDocument.SelectSingleNode("BOM/BO/Documents/row/vers")
    if vers doesn't exist, then i have to create it
    <bom>
    <bo>
    <Documents>
    <row>
    <vers>here i want to set a value</vers>
    </row>
    </Documents>
    </bo>
    </bom>
    I've tried with oNewNodo = oDocument.CreateElement("vers") and it works, but doesn't put where i want
    thanks
    Carles

  • InDesignCC. How to keep image quality with exporting Interactive PDF?

    Hello everyone, I'm using InDesign CC, I'm exporting a PDF that has PNG images, the problem is that I'm loosing the sharpness and the pureness in the images after exporting the file into PDF Interactive... the Settings I'm using for Image Handling are Compression: Automatic , JPEG Quality: Maximum, Resolution PPI: 300..
    The file size is "Letter" with web Intent (792px x 612px) the images I'm using are big and have great quality, can anyone tell me how I export into PDF interactive without loosig images quality? I want to keep this pureness and sharpness in the images
    Thanks in advance

    It depends on the image. Best way for us to advise you is to open your image, then go to Image > Image Size and upload a screen capture of the Image Size box with the readings.
    What you might have working against you is not enough pixels. Upsampling may just make it blurred. But we will see.
    300 ppi is also not carved in stone, you may get away with 200 ppi depending on where you are sending it for printing.
    And lastly, if you are paying a commercial printer to do this, it's best to consult with them and see what they can do.

  • Incoming Image file with XML payload processing

    Hi,
    We have PI 7.1 and the interface is from file to standard RFC scenario with ABAP proxy in ECC.
    2 incoming files need to be processed by the interface - xml file with transaction details and the corresponding Image file.
    These files have to be mapped to the standard RFC and then pushed into ECC.
    Can the Java mapping be used in message mapping to pass the image file in the RFC as I do not want to use the Java module?
    If yes, can someone please help with the code and the mapping aspects?
    Regards,

    Abhishek,
    Though I never worked with server proxy with attachments,
    In my opinio, when it is possible to send attachments from outbound ABAP proxy,  then logically it should be possible to read attachments in the inbound proxies.
    I just saw this link in forum,
    [Re: Inbound proxy with attachments.|Re: Inbound proxy with attachments.]
    Regards,
    Praveen Gujjeti.
    Edited by: Praveen Gujjeti on Apr 8, 2010 5:25 PM

  • How to embedd Fusion Charts with XML files in java? Please help me.......

    Hi....iam trying to display Fusion Charts. Iam using Hibernate to bring data from database.
    what i want to do is to put data on xml, once my xml gets dynamic data from database, then it will be clubbed with swf files(fusion charts) to show graphs such as line charts,etc.
    I know wat to do. But big Question is how to do ?
    am i right in my Logic ?

    Hi
    Your approach seems to be right.
    Get the data using hibernate into your struts action ( if you are using struts ).
    Set the xml and any other property as request attribute.
    Embed the chart in JSP, by including FusionChartsRenderer.jsp ( found in download package ) and passing xml ( got from request attribute ) and other values as parameters to it.
    Please check the FusionCharts forum for some discussions on Struts, JSP implementation. ( /forum - you could use the search feature available there )
    Please refer to the documentation of FusionCharts as well. ( /docs )
    Hope this helps!
    Srividya

Maybe you are looking for

  • Can I retime the audio by a fraction of a frame?

    I recorded Audio separately on a digital voice recorder and after 11 minutes there is a sync drift of 1 - 2 frames. By using the Retime Editor I can drag the audio the necessary frame to get it almost spot on. I seem to recollect hearing that audio c

  • Payment Processing Tab function in PO

    Dear Friends, In Purchase order at header payment processing tab is there. Cab any one explain me how it works.?? can i make its use to make retention money of vendor , how we can do it?? Regards, Mahesh.

  • ITEM CATEGORY ASSIGNMENT

    Hi GURUS, I would like to enable free of charge item category for another order type. can anybody advice how the tem category assignment sequence should be? Thanks, RJ

  • Sadness

    When I first started visiting these forums, it was lots of posts about "How do I do x ?"  and asking for creative advice. And there were lots of people with tons of good information. (Miss you Harm) Now it seems that most posts are about how things d

  • No Sound in cs4?

    Hello, I just got Cs4 and opened a file that I created in Flash 8. all of the sounds are called with actionscript..sndAudioIntro.attachSound("intro"); sndAudioIntro.start(); But when I publish my movie there is no sound. I have the file set as an as2