Making an element a child element of another

I'm looking for a way in Adobe InDesign CS5+ to make one element a child element of another (similar to what you can do with Edit -> Paste Into).
I can't use the app.pasteInto option unfortunately because in my script, the window is not visible.
Is there any other way of doing this?
Regards,
pieter

Hi
I believe , you want users to click on thumbnail which should open lightbox with 9 images in it and where users can scroll inside the container to view those 9 images.
You can use any composition , the triggers can be used as thumbnails and in Target container insert slideshow where there should be 9 slides with 9 images. So this would be similar effect, where user clicks on thumbnail and container opens with slides of 9 images, user can navigate using navigation buttons. Achieving a lightbox effect would somehow is not possible without using custom script.
Thanks,
Sanjit

Similar Messages

  • My computer crashed.  I tried installing Elements on another computer and I get 'limit reached'.

    My computer crashed.  I tried installing Elements on another computer and I get 'limit reached'.

    You need to contact support directly for activation/deactivation and other installation issues. It’s usually possible to start a live chat, if an Adobe agent is free, and often to get the problem fixed right away. You will need your serial number. If an agent is not immediately available, refresh the page a few times until you see the green chat button, or try at a later time.
    To get help now click here for product support
    Can’t get immediate help? click here for further options

  • Hello, is there a way for making a photo transparent with iPhoto are another software?

    Hello, is there a way for making a photo transparent with iPhoto are another software?

    Not with iPhoto, but different apps have different capabilities.
    There are a couple of considerations: How is this transparent image to be used? In a Deskop Publishing environment something like Pages' Instant Alpha might be useful. Or if you're trying to overlay one image on another on a photograph then some editor that supports layers would be required.
    Further, Jpegs as a format doesn't support transparency so you'll need to work ina  file format that does.
    But if you can explain what you're hoping to do we might be able to point you in a more useful direction.
    In order of price here are some suggestions for editors:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate or the App Store.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • How to assign value from one element to another ?

    Hi,
    I am stuck up in silly problem.
    I have an XML as string i have used parseEscapedXML() to convert it in to XML object Type. see following code.
    <assign name="Assign_3">
    <copy>
    <from expression="ora:parseEscapedXML(ora:getContentAsString(bpws:getVariableData('inputXML')))"/>
    <to variable="inputVariable" part="payload" query="/ns1:email"/>
    </copy>
    </assign>
    above is working fine. In Debug window i can see values in "/ns1:email/ns1:ovdTriggeredDate" but now i need to assign "/ns1:email/ns1:ovdTriggeredDate" to another variable. see following code for refrence.
    <assign name="Assign_2">
    <copy>
    <from expression="ora:getNodeValue(bpws:getVariableData('inputVariable','payload','/ns1:email/ns1:ovdTriggeredDate'))"/>
    <to variable="Variable_2"/>
    </copy>
    </assign>
    in above code "ovdTriggeredDate" is a string and "Variable_2" is also String.
    i dont know why above code is not working
    Can anybody help me in this?
    Thanks in Advance.
    Nimisha

    Hi,
    ovdTriggeredDate is type of an element which is of type string. and Variable_2 is also of type string variable.
    see following use case.i have xml as a string
    inputXML = <email><ovdTriggeredDate>16thFeb</ovdTriggeredDate></email>
    i need to convert string to XML object. now i am assigning this value to Schema.following is my schema.
    <xsd:element name="email">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="ovdTriggeredDate" type="xsd:string" minOccurs="1"/>
    </xsd:complexType>
    </xsd:sequence>
    </xsd:element>
    i am able to convert XML string to xml object. now i need only one variable of xml. so i am assigning "ovdTriggeredDate" to string variable "variable_2"
    but its giving me exception. any idea ?
    thanks,
    Nimisha

  • How to use one xsd element in another xsd

    Hi,
    I have an xml as follows.
    <rss version="2.0" xmlns:ymaps="http://api.maps.yahoo.com/Maps/V1/AnnotatedMaps.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:noNamespaceSchemaLocation="newtest.xsd">
    <!--Locator Version 1.4.0.0-->
    <channel>
    <title>Locations</title>
    <link>http://mytestlink.com</link>
    <description>location information</description>
    <item>
    <ymaps:Address>Roosevelt Blvd</ymaps:Address>
    <ymaps:CityState>Monroe, NC</ymaps:CityState>
    <ymaps:Zip>28112</ymaps:Zip>
    <ymaps:Country>US</ymaps:Country>
    </item>
    </channel>
    </rss>
    I worte an xsd as follows for the above xml
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ymaps="http://api.maps.yahoo.com/Maps/V1/AnnotatedMaps.xsd" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <xsd:element name="rss">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="channel">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="title" type="xsd:string" />
    <xsd:element name="link" type="xsd:string" />
    <xsd:element name="description" type="xsd:string" />
    <xsd:element ref="ymaps:Address" />
    <xsd:element ref="ymaps:CityState" />
    <xsd:element ref="ymaps:Zip" />
    <xsd:element ref="ymaps:Country" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="version" type="xsd:decimal" />
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    I am getting the below exception for that
    line numbner ---|13|---Column---|41|-----
    org.xml.sax.SAXParseException: src-resolve.4.2: Error resolving component 'ymaps:Address'. It was detected that 'ymaps:Address' is in namespace 'http://api.maps.yahoo.com/Maps/V1/AnnotatedMaps.xsd', but components from this namespace are not referenceable from schema document 'file:///E:/test/samples/newtest.xsd'. If this is the incorrect namespace, perhaps the prefix of 'ymaps:Address' needs to be changed. If this is the correct namespace, then an appropriate 'import' tag should be added to 'file:///E:/test/samples/newtest.xsd'.
    at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
    Could any one help me?
    Thanks in advance
    Samba Damerla

    Hi Andrzej,
    please check out this thread: Set parameters values depending on other parameters
    I had a discussion about query results as input for another query in there.
    For creating a workbook, just click on the save button after you ran your query in the bex.
    Siggi
    Message was edited by: Siegfried Szameitat

  • In Muse can you link to an element on another page?

    I was hoping that there was a way to link to an "element" (Not a page!) located on anther page either through Muse natively or by a script.  I'm not a coder or I wouldn't be using Muse.  I know you can link to other pages but I don't know about elements of other pages, specifically a "Lightbox" pop-up.
    I have a pop-up on a secondary page, lets say page 2, that I would like to also pop-up on anther page, lets say page 1, when clicked from page 1 but I don't want to have to put this Lightbox pop-up in two (both) locations because I actually have a couple hundred of these.
    Any suggestions would be greatly appreciated.
    Thanks,
    Ryan.

    If you want the pop up on multiple pages you will need to put it on multiple pages. Or you could add the link to the pop up as well as the pop up itself to a template and create the pages that you want that pop up using that template. Another one you can try is to have your pop up on a page all by itself with no template or other content and then add the page to any other page using an iFrame.

  • How to bring a custom data element into another ods object

    I have an ods object which has a custom data element called customer purchase order number. I have another ods object which needs that custom data element. Both these ods objects are part of a multiprovider. How do I make the customer purchase order number available in the 2nd ods object? We are in SAP BW 3.5
    Thanks
    Ram

    Hi Ramgopal,
    as suggested by experts, create or use the custom infoobject.
    go to change mode of ODS (2nd ODS) add custom infoobject into data or key fields (similar to 1st ODS), then update rules od 2nd ODS will be deactivated. go to change mode of update rules and map with the infoobjects which feeds dat to custom infoobject (similar to 1st ODS)
    if routine is used to populate data copy and paste same routine and check routine and activate.
    Hope this helps.
    Regards,
    Daya Sagar

  • Transfer container elements in another workflow

    Hi again!
    I have the problem that i should like to copy container elements from one workflow to another (like an Image, the Scanagent...)
    Is their any easy way to do this?
    THX
    Regrads
    Phil

    Hi Karri,
    sry i was wrong. The Problem is that we want use the standard of SAP. We have 2 Workflows (WS80000245 and WS80000247). The Workflow WS80000245 uses the Function of ArchivLink and the WS80000247 starts by using a trigger event of the ArchivLink Function (A Dynpro archive an Image and starts the WS80000245. After this step a user has the option to call for a Rescan or to create a Bill. If he wants to create a Bill the Workflow WS80000247 starts because of an Object Type what was triggered).
    But now we have the Problem that we need Informationu2019s of the other Workflow (Like Scanagent, Scandate, Image....)
    Is there an easy possibility to get this container element informations?
    THX
    Phil

  • Transfer Photoshop 5.0 Elements to another computer

    How do I transfer my Photoshop Elements 5.0 to another home computer?

    Use your installation disk.
    Then use back-up and restore from the old Organizer to the new Organizer.
    http://helpx.adobe.com/photoshop-elements/kb/backup-restore-move-catalog-photoshop.html

  • Moving the Oracle Payroll elements to another insatance

    Dear All,
    Please advise the best process we have to move oracle payroll element setup from one instance to another?
    I can see isetup is one possible option , please confirm if this is correct.
    Thanks,
    Subbu.

    This can function for you if both OS are equal:
    Duplicating a Database
    TIP 04: Duplicating a Database in 10g by Joel Pèrez
    Joel Pérez
    http://www.oracle.com/technology/experts

  • Problem issueing material from one WBS element to another

    Hi Guys,   This is my first post so be kind.
    Our projects during their life cycle change their WBS element sub number.   Example New project starts with WBS element # E.7029.00.010  at some point in the project it moves on to the next level and the WBS element changes to E.7029.00.020  later in the project it will again change to E.7029.00.030.  Ok you get the idea.
    Now the problem.   When the project is at the .020 level we purchase inventory and recieve it into project inventory under the WBS elemement E.7029.00.020.
    Now the project has moved on to E.7029.00.030 and we want to create a production order to make a prototype.  The WBS element for the production order is E.7029.00.030  but the inventory is still under WBS element E.7029.00.020.  When we go to issue the material to the job it says there is none in inventory under WBS E.7029.00.030. Which is right it is all under E.7029.00.020. 
    Is there a way that we can store the inventory under E.7029.00 and be able to issue it to any sub group of E.7029.00 so that it would not matter if the current WBS is E.7029.00.020 , E.7029.00.030 or E.7029.00.050?
    Since our BOM's can be quite extensive and often contain a large number of new components this would be of great assistance.
    Thanks for your time and consideration.

    The project moves on to another stage.   During the development of new products the project goes through several stages before the new product is released for production and sales.   For example:
    Stage 10 - concept
    Stage 20 - initial design
    Stage 30 - design refinement
    Stage 40 - Bata testing
    Stage 50 - Final design
    Stage 60 - Production process design
    At each of stages 20 - 50 changes to the BOM can occur.  Material would be purchased at stage 20 and could continue to be used through the rest of the stages including after release to production.   But if the material is purchased during stage 20 then it sits in inventory under the WBS element ending in 020 but when the project moves on to the next stage the material will  be used to produce prototypes for stages 30 - 60 as long as the material is included in the BOM at that time.

  • Passing elements to another track

    Hello all!!
    I have a doubt because we have two tracks in our Dev environment, and we need to pass some element from one track to another. How can this be performed??.
    Regards IA

    Armando,
    As your development components are part of a software component, you can transport this component from one track to an other track manually from the 'Approval'-tab of your CMS.
    Click the "Go to History" button in this tab, select the appropriate software component and click de "Forward..." button.
    Select in the pop-up in the dropdown your target track and click the "Forward" button.
    Hope this helps,
    regards,
    Alain

  • - Making various elements light up on hover simultaneously (Murray, Gary...)

    For Gary, Murray, and anyone else who asked for a demo page
    rather than
    pasted code, here it is :
    http://www.vilverset.com/test1.html
    You will see 4 columns of identical text (3 on 1 row, 1 on
    the next).
    Hovering these captions will light them up. Also, hovering
    the images above
    these captions will do the same (by bringing them from 75%
    opacity to 100%,
    via the "opacity" class).
    Right now, everything is coolio and working as I like it with
    CSS only,
    except that the background "trans.gif" image is being limited
    by the div's
    padding. I'd like the bg to go edge to edge. So just fixing
    that issue would
    be enough for me. I don't care if hovering the div or
    hovering the text
    within the div triggers it. As long as the cursor changes to
    a pointer and
    it's linkable to another page when it does.
    If I want to be EXTRA-greedy... I'd ask that both the image
    (tab_xx.jpg) and
    the div (the one with caption02 class applied) light up at
    the same time
    when one of them is mouseovered. But if this is going to
    demand more code
    than it's worth, then I can live without... and just see the
    padding issue
    fixed.
    Thanks.

    Reese wrote:
    > "Thierry | www.TJKDesign.com"
    <[email protected]> wrote in
    > message news:[email protected]...
    >> Before getting involved in this thread I'd replied
    to another post of
    >> yours,
    >> where you said:
    >> <quote>
    >> As Nancy said, she did not "recommend" anything. The
    OP asked a
    >> question and
    >> she answered it, which I'm sure was appreciated. As
    someone who has
    >> often asked questions and seen the answers held
    hostage because the
    >> person replying didn't "agree" with what was being
    done... I
    >> appreciate the presence of people like Nancy here
    who don't judge,
    >> and give us enough rope
    >> to hang ourselves with. That's how we learn. By
    seeing what happens
    >> when we
    >> do things wrong.
    >> </quote>
    >>
    >> That explains why I kept ending every post with
    "...but IMHO, you're
    >> doing this wrong".
    >
    > If what you got from that quote was that you should tell
    people
    > they're doing things "wrong"; and then chastize them for
    not buying a
    > CSS book when they inevitably inquire about what you
    consider the
    > "right" way... as the author of said quote, I can assure
    you that you
    > missed the point entirely.
    I don't know where you got that idea from because I can
    assure you that I
    *NEVER* suggested anybody to buy a book, NEVER!
    > When I said I wanted the background to change on hover
    in my example,
    > I obviously didn't mean that everything else should stop
    working. Yet
    > you walked in, understood only half the problem,
    provided only half a
    > solution to it, and -- when that was pointed out to you
    -- criticized
    > the entire method being employed...
    If I fixed half of your problem it is because I expected you
    to change your
    markup after I told you you couldn't use your technique
    unless you removed
    all block level elements form inside the anchors - or, better
    - remove the
    anchors themselves. When I saw you didn't care about it
    (AFAIK, the markup
    was still the same) *then* I suggested the "quick fix" to
    highlight the
    text. Please note that when I did so I made no remark toward
    your choice.
    I could have said "I don't want to give you a fix for that,
    go do what I
    said first. Then validate your code, please do the very basic
    before asking
    for help on a public forum and waste people's time". But as
    we know, I
    didn't say anything like that...
    So you see that it's not that I didn't understand the
    problem, it is more
    that you didn't understand *your* problem.
    The issue is that if you come to a public place for help, you
    should either
    ignore the answers you don't like or follow the advices of
    people who you
    think can lead you to a decent solution.
    > My apology for my rudeness stands. But it would have
    been nice for
    > you to recognize that you aren't perfect yourself. And
    that not
    > everything I just wrote is completely off-base.
    Last night you offered your "apology" already, to which I
    replied saying "no
    problem"; but this morning you start this whole thing again.
    So what's the
    point?
    Let me tell you that with a different attitude, you would
    already have that
    thing working *exactly* the way you want, even with the
    "extra-greedy" part
    you hoped for. I won't be the one giving you the solution
    though, because I
    really lost interest in this thread...
    And yes, I believe you *are* completely off-base. I come to
    this forum to
    share what I know with people interested in *learning*, I
    have absolutely no
    obligation toward you.
    Thierry
    Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    The perfect FAQ page:
    http://www.TJKDesign.com/go/?9
    CSS-P Templates:
    http://www.TJKDesign.com/go/?1
    CSS Tab Menu:
    http://www.TJKDesign.com/go/?3

  • How to copy a text element to another in sapscript

    Question
    Have a bug in the system and need to copy an existing text element to a new one.
    How do you do this.
    I have found the text elelement in tihe MAIN window - the code /E   510-C  <-- this needs to be copied to a new text element called /E    510-A.  I can cust and paste this into the text element screen  But doesn't the 510-A refer to some text created via SO10?  But then doesn't sapscript require you to use an include to get the text in there?
    HELP - 2 days from go -live here!!
    Thanks and big points to who can ever help!

    Text elements are specified with "/E".  These are different from STANDARD TEXT objects that you define in SO10 and reference with the INCLUDE statment.
    Text elements are called from the ABAP print program.  If you copy text element 510-C to 510-A, the ABAP print program has to call element 510-A to execute the statements in this section.
    Are you dealing with errors from a syntax check?

  • How do i install photo elements onto another computer

    i have went online to find out the answer to this question but i am just confused. I don't want to re-buy Photoshop. how do i, step bu step, switch it from one computer to the next?

    Install it and activate it using your serial number.  You are allowed to have it installed and activated on two machines.
    PSE 13 Trial - http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements
    PSE 10, 11, 12 - http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-10-11-downloads.html
    PSE 7, 8, 9 - http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-7-8-9-downloads.html

Maybe you are looking for