Inline frames

Can you do inline frames in the muses

Cut the object you want to put online. Use the text and do an insertion point in the text frame where you want the inline and paste. Once an object is in line in a text block, you can use the Layout Panel to control where and how the text flows around it.

Tags: Adobe Muse

Similar Questions

  • [JS CS5] Access to an inline frame between an insertion point

    Given an insertion point, how can I determine if it contains a picture inline/embedded? And if so, how to reference the inline/anchored frame?

    I know how to reference the surrounding paragraph, characters, etc, but can't find out how to get to the graphic inline/anchored.

    I normally would just loop through all inserted graphics in the document, but it this case I have to access the incorporations through their insertion points.

    To reference the inline frame:

    prevChar.pageItems [0]

    or

    nextChar.pageItems [0];

  • Select the inline frame

    Hi all

    Please tell me how should I do to select a frame that is inserted from the selected image.

    Thanks in advance

    Shiv

    app.selection[0].pageItems[0].select();
    

    (you can select an element of a page at a time, even if your selected image can contain more than one - or zero - inline frames)

  • [JS IDCS5] XML geometricBounds for inline frames

    The following script works on InDesign Office. It's playback imported XML to apply the values of attributes for graphics inserted as scale, geometricBounds and offset:

    // #include "glue code.jsx"

    main(myDocument);

    function main(){

    var myRuleSet = new Array (
    new findObjAttribute("//image")
    );
    with(myDocument){
    var elements = xmlElements;
    __processRuleSet(elements.item(0), myRuleSet);
    }

    function findObjAttribute(XPATH){
    this.name = "findObjAttribute";
    this.xpath = XPATH;
    this.apply = function(myElement, myRuleProcessor)
    {

    var myHeigth=myElement.xmlAttributes.itemByName("height").value;
    var myWidth=myElement.xmlAttributes.itemByName("width").value;
    var myScale=parseInt(myElement.xmlAttributes.itemByName("scale").value);
    var myXoffset=myElement.xmlAttributes.itemByName("xoffset").value;
    var myYoffset=myElement.xmlAttributes.itemByName("yoffset").value;

    with(myHeigth, myWidth, myScale, myYoffset, myXoffset){

    var myRectangle = myElement.xmlContent.parent;

    try {

    myRectangle.graphics[0].horizontalScale = myScale;
    myRectangle.graphics[0].verticalScale = myScale;
    myRectangle.graphics[0].move(undefined, [myYoffset, myXoffset]);
    myRectangle.geometricBounds = [0, 0, myHeigth, myWidth];

         } catch(e){};
    }
    return true;
    }
    }
    }

    When you run it on InDesign Server, the geometricBouns applies only to the first chart in the document. Scales and offsets are applied to all the graphics.

    Here is an example of the XML file:

    <Root>
    <Paragraph>
    <image href="image1.jpg" scale="110" xoffset="-10mm" yoffset="10mm" width="87mm" height="60mm"></image>
    </Paragraph>
    <Paragraph>
    <image href="image2.jpg" scale="90" xoffset="20mm" yoffset="0mm" width="87mm" height="50mm"></image>
    </Paragraph>
    <Paragraph>
    <image href="image3.jpg" scale="100" xoffset="-15mm" yoffset="5mm" width="87mm" height="80mm"></image>
    </Paragraph>
    </Root>

    Why only geometricBounds values apply for the first chart with InDesign Server?

    Best regards, Sjoerd

    Well, you will need to inspect the properties of the graphics that it does not work on. There is probably something...

  • How can I change the impression of Firefox settingson a mac? Specifically, the "Frames" option

    When I try to print the selection page in Firefox on my Mac, it prints the selection where it appears on the page.
    In the print menu, there is a section of frames that is shaded by the selection of "as defined on the screen. How can I change this setting?

    On:

    #1: When I try to print the selection page in Firefox on my Mac, it prints the selection where it appears on the page.

    Yes, this can be inconvenient in some cases. One solution is to remove the other content on the page and then print the selected content normally (instead of using selection). To remove the content, you can use this extension:

    https://addons.Mozilla.org/firefox/addon/Nuke-anything-enhanced/

    As shown in the screenshots on the page, right-click on the selection and choose delete everything else.

    #2: In the menu printing, there is a section of frames that is shaded by the selection of "as defined on the screen. How can I change this setting?

    If frames section is dimmed, which indicates that Firefox did not detect frames on the page. Most sites use no frames, although many use iframes (inline frames). If you need to simply print the contents of an iframe, try right-clicking on the framed area and use

    This Frame > Print Frame...
    
  • Session has expired when you browse a page with a frame inserted with source as an external URL.

    Hi, I need help.

    I have a portal webcenter application. I have a page that has an inline frame and the source is an external URL. After I login, I could go to the mentioned page but when I navigate on and click on another page, I get the message "due to inactivity, your session has expired and is no longer active. Click OK to reload the page. Then I'll be logged out of my session.

    Hello.

    Like you are in the framework of the portal you must configure the weblogic.xml to install Cookie-path to something like:

    /yourportalcontextrootl

    It will be used to store JSESSIONID perhaps ongoing overrided by the iframe to another application you are using (maybe you have two requests in writing the cookie JSESSIONID "/").

    Kind regards.

  • Create text online the content of a xml tag frame?

    Hello! I have a pretty big document created from an XML file, and I would like to convert a series of my XML tags to the anchor text blocks, so I can hang them on the left edge of the lines they appear in.

    My XML file is converted into a

    > root

    > Chapter

    > para

    > id

    1

    > verse

    text

    > id

    > verse

    etc... See extract file here http://1drv.ms/1dX6lYO

    So far, I have the following, which gets me an array containing all the elements ID.

    var myDocument = app.activeDocument;
    var myXMLidElement = myDocument.xmlElements.itemByName("book").xmlElements.itemByName("c").xmlElements.itemByName("p").xmlElements.itemByName("id");
    var myXMLidText= (myXMLidElement.contents);
    var myXMLidLength = myXMLidText.length;
    for (var i = 0; i < myXMLidLength; i++) {  //loop to go through
        //alert (myXMLidText[i]);
        myDocument.select(myXMLidText[0]);  //this gives me an error saying expected data type needs to be array. Can someone explain? Where do I find info on the select command?
        myDocument.selection[0].insertionPoints[0].textFrames.add(myXMLidText[0]); //haven't managed to get to this line yet, but I want it to create an inline text frame at the point of the selected text and set the frame's contents to be my XML Id Text
    

    I guess I want and then delete all the text in my id too, but that's not important.

    Some other random excerpts, I could use?

    myInlineFrame.contents = "myXMLidText";
    

    Guidance on the creation of the inline frames and the logic of loop? I'm an old hand with InDesign, but new to scripting, so be gentle.

    Try this,

    var myDocument = app.activeDocument;
    var root = myDocument.xmlElements[0];
    var myXMLidElement = root.evaluateXPathExpression("//book/c/p/id");
    for (var i = 0; i < myXMLidElement.length; i++)
    {
        myDocument.select(myXMLidElement[i]);
        var myTextframe = myXMLidElement[i].placeIntoInlineFrame(["1p","1p"]);
    }
    
  • How to make the image Inline source to read from database BLOB column?

    Dear all

    I have a database table that contains the BLOB column. And tif files in the BLOB column.

    Now, I want to display the value of the BLOB file in af:inlineFrame.

    I want to do this because I installed "AlternateTiff" on my browser to view tif files in the browser.

    You can download it from http://www.alternatiff.com/

    The inLine frame component has a property called 'Source '. The value of the "Source" property must be the location of the URI of the content you want to display in the example of frame.for online:

                          <f:facet name="second">
                                <af:inlineFrame id="if2" styleClass="AFStretchWidth"
                                                shortDesc="To browse the selected document" source="/temp/myFile.tif"/>
    

    now, I want to change this example to read the content of the BLOB column.

    IS this possible?

    Thanks in advance

    You must install a servlet which reads the data from the BLOB and represents the data structure.  My blog http://wp.me/pcBZk-bU shoes how to proceed.

    Timo

  • [JS] CS4 framework anchored in anchored frame

    With this code myGB isn't returning the correct geometric boundaries. Did someone else noting this?

    myFrame = myStory.insertionPoints [0].textFrames.add)

    myAGB = myFrame.geometricBounds;

    myAGB [1] = myFrame.geometricBounds [3] + 10
    myAGB [2] = myFrame.geometricBounds [2] + 10;
    myFrame.geometricBounds = myAGB

    myFrame2 = myFrame.parentStory.insertionPoints [0].textFrames.add)

    myGB = myFrame2.geometricBounds;

    Hi Fred,.

    It is a piece of code that should work to resize an inline frame (I copied it on some old code that works in CS3/CS4). In my situation, top should be aligned on the baseline, but I have to go down after resizing:

    myBounds = myInlineTF.geometricBounds;
    myBounds [1] = myIPs [1];
    Alert (1);
    myInlineTF.geometricBounds = myBounds;
    myBounds = myInlineTF.geometricBounds;
    {if(kAppVersion>=5)}
    myBounds = myInlineTF.geometricBounds;
    var myMoveBy = myBounds [2] - myBounds [0];
    myInlineTF.move(undefined,[0,myMoveBy]);
    }

    The truth is, you should probably use resize() or reframe(). My guess is that these methods work without problem...

    Substances

  • I need trouble 4000 boxes inline graphics

    Hello

    I need to fix 4000 inline graphic boxes because InDesign CS4 deals corner effects diiferently in CS3.

    See the problem here: http://InDesignSecrets.com/CS4-treats-rounded-corner-objects-differently.php

    Because designers have used this trick, I need to fix all the inline graphic boxes in CS4 for a reprint. All graphics frames inline are supposed to just have a corner that is rounded. Short by selecting each picture individually and converted into a rectangle, then running the Script on each corner effect I was wondering if there was a way to write a script that:

    1 selects all the text graphic inline frames with features such as the fill color.

    2 converts all of these rectangles boxes (because the way they did, they currently have 7 points)

    3 runs the Script on each box of rounding corner effect only the fourth corner.

    Any suggestions?

    Rob

    Just add a line like this:

    for (var i=0;i		   
  • All of a sudden, I can't print an information page - the statistics of my site.

    I have a personal Web page hosted by IPage - lynnesgenealogy.com. I get monthly statistics of visitor on this page. For the last two months, I got a terribly large number of hits (over 20,000) on my site of Asia (more trace of China and the Japan IP addresses, but not all). During the outbreak of this issue with IPage I discovered I can print is more statistics page, as I have in the past. I deleted all cookies, cache, history, etc., etc. In Explorer, I can only print one page (the report is several pages long) at a time - but in Firefox I get a blank page. What's the story?

    "This frame" doesn't appear in the menu when the page you are clicking on a framed page. So you won't see it most of the time.

    There are two types of framed pages:

    • Traditional: The server sends a frameset page instructing the browser to load individual pages in different parts of the frameset do to the top of the entire page. AWStatus uses a traditional set of frames.
    • Online: the page contains a rectangular area which incorporates a completely different page. When you see a YouTube video embedded in a different site, it's usually by an inline frame or 'iframe '.
  • With the help of BIPublisher

    Hi all

    I start with the adf and BIPublisher. (jdevelopper 11.1.2.4, BIPublisher 10.1.3.2).

    BIPublisher is running on a stand-alone server. to view a report of bipublisher to the user, I use the url of the report with parameters in inline frame:

    < af:inlineFrame source = "URL" >

    is this a good way to view reports of bipublisher?

    where can I add the user information in the adf to skip the authentication form?

    Thank you

    KHALIL

    There are a few samples available on the web as ADF-MyLearning: integration of ADF BI Publisher in JDeveloper 11 g to generate a report by programming and this complete example Blog of Antonis Antoniou: integration of Web Services in your ADF Application Part 2

    Timo

  • Drop-down list Hotspot based on another topic


    I would like to create a Hotspot of drop-down list that automatically displays the content to another HTML file.

    Is this possible?

    This would be similar to a pop-up auto size except that the content of the HTML code fell in the page parent rather than displayed in a pop-up window.

    Thank you

    Amber is on site. To do this use an inline frame.

    See you soon... Rick

  • Characteristic DropCap-like question!

    Is there a way to get the dropcap functionality, but for the text that is in the middle of the paragraph? For example (see image below): XYZ has seen a 100% increase in the number of licensees and tenure-track women Faculty of engineering. What I want to do, it is for the text around it to align to the top and around the text in a way that eliminates the clumsy spacing at the top. Any advice? advice?

    ex.png

    Put the number in a framework of anchor text inserted with dressing applied to the inline frame.

  • AF:inlineFrame performs its attribute source three times

    I inserted an inlineframe in a jsf page fragment.

    Initially, the inline frame is visible = false.

    The fragment of page also contains an af:commandButton Quen makes visible = true on the inline frame when selected.

    It's the definition of the inlineframe and the button:

    < af:commandButton text = "#{viewcontrollerBundle ['ALU.]}" "{[GENERAR_EXTRACTO']}."

    Binding = "#{backingBeanScope.extractoNotasBB.CB1} '"

    ID = "cb1".

                                icon=" http://itemsweb.ESADE.edu/apps/IMG/PDF-icon.PNG "" "

    action = "#{backingBeanScope.extractoNotasBB.URLIframe_action} '"

    disabled = "true" partialTriggers = "soc1" / >

    < af:inlineFrame binding = "#{backingBeanScope.extractoNotasBB.if1} '"

    ID = "if1.

    source = "#{backingBeanScope.extractoNotasBB.URLIframe} '"

    shortDesc = "Pdf news" visible = "false" partialTriggers = "cb1".

    inlineStyle = "iframePDF" / >

    Well, when the page is initially loaded, the URLIframe methos is run three times.

    When we click the button, the method urliframe_action is correctly runs only once:

    public String URLIframe_action() {}

    This.IF1.setVisible (true);

    Returns a null value.

    }

    but #{backingBeanScope.extractoNotasBB.URLIframe} is executed again three times.

    The problem is that the url called by #{backingBeanScope.extractoNotasBB.URLIframe} should be mandatory not executed only once when you click on the button (I think this is also the expected behavior)

    What can I do?

    Thank you.

    It is important to perform the calculation of the URL that only once, you can move the calculation to the listener to the button action. Then store the URL calculated in a variable of sight and to attribute referepoint 'source' from the IFrame for this variable rather than a method of bean to support:

    public String URLIframe_action() {
      // Calculate the URL and store it in a view-scoped variable
      String iframeURL = this.getURLFrame();
      AdfFacesContext fctx = AdfFacesContext.getCurrentInstance();
      fctx.getViewScope().put("iframeURL", iframeURL);
    
      if1.setVisible(true);
      return null;
    }
    
    
    

    Dimitar

    PS It is better to use the attribute "actionListener' the button instead of the 'action' attribute since you are not going to go anywhere. Also, it is best to use "made" attribute of instead of 'visible', because if you use 'visible' rendition of the IFrame is always ready (even if it is not displayed), which is an unnecessary overhead. The example below has added a 'Hide the image' button and did everything declaratively:

    
      
    
    
      
    
    
      
    
    

Maybe you are looking for

  • Why should I clear my cache on average every 30 minutes?

    On average, every 30 minutes or so, when I opened a new tab or refresh only a current tab, the page is completely distorted, links or text missing and other various caching issues. Why this happens so often? It is very annoying that I have to manuall

  • What is tss.exe?

    I have toshiba laptop and lately when I boot down his still worked. After research on the net about tss.exe.Some say little edwige or is it Toshiba and I need to keep it. Now, I can not find via my browser only via the msn homepage. Please, help me t

  • SX 700

    WHILE TRYING TO DETECT MY CAMERA IT DOES NOTHING WHEN I PLUG THE USB CORD?

  • Outlook must MSDOE.dll file of Outlook Express which has been uninstalled years - will not pump to send.

    I'm having this problem with Outlook that I can send this e-mail out but cannot receive anything in - not useful.  Various attempts have prompted me to a message that MSOE.dll is not installed.  What I googled on this topic, Outlook uses different fi

  • OBIEE BI Server Error 500 - Internal server error

    HelloWhen starting to do EM demonstrating without problem, but in the browser bi_server (http://localhost:9704 / Analytics):Error 500 - Internal server errorOf RFC 2068 Hypertext Transfer Protocol - HTTP/1.1:10.5.1 500 internal Server ErrorThe server