Images text??

Hey, I have been trying to make a textimage that is linked to an specific images or tabel (like in work) and that automaticlly change if a new images is added between two existing images.
If you understod any of this, pleace help..

OK, the question is as follows -
"Can I have captions for images, illustrations and tables and in the captions have automatically changing caption numbering, if I add an image, illustration or table between those I previously placed in the pages."
No, but I'm not sure.
Eller på dansk -
Nej, men jeg er ikke stensikker.
/hh

Similar Messages

  • If Image is Saved As a Text, Would the Image Text, As a Link, Be Indexed by Search Engines.

    Hi I want to put a text long the height of the brown box.
    The text would be vertical as one looking at the page.
    I believe with page make the text can be rotated.
    If Image is Saved As a Text, Would the Image Text, As a Link, Be Indexed by Search Engines.
    or how else to do this?
    an

    If Image is Saved As a Text
    Impossible. It's either image or text.  Save a JPEG as a Word document.  Try it.  Seriously, change the file extension, open it in Word and see what happens.
    Would the Image Text, As a Link,
    Huh?  You lost me here.
    Be Indexed by Search Engines.
    Indexing of search engines.  Yes, Google sees links and Google sees alt text for images.  Google does not see images nor Flash.

  • How to display embedded image & text in content presenter web template

    We have a requirement to display both text and embedded image together like in WYSIWYG editor in Webcenter spaces. The content has to be dynamic and is context sensitive so that users in the same role can edit and publish the content. The users who are in different role would see different piece of content.
    To achieve this use case, i think Content Presenter enabled with Site studio is the best choice. I have created element and region definitions with WYSIWYG and region templates in site studio. Created contributor data file in UCM. Content Presenter in webcenter is configured with that region definition and the region template etc.
    At design time, the contributor data file is edited and some image / text is added in WYSIWYG editor.. But however at runtime view, i could see only the text added in WYSIWYG editor and the file name of the image embedded....Any one successfully used Content Presenter with Site studio???
    Regards
    Prasath.C

    Hi
    I'm using the site studio tags in jdev. My code is the following one and I have the same result I see the the html tags instead a formatted text.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:dt="http://xmlns.oracle.com/webcenter/content/templates"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:trh="http://myfaces.apache.org/trinidad/html">
    <dt:contentTemplateDef var="node">
    <af:panelGroupLayout layout="vertical" id="pgl3">
    <af:panelGroupLayout layout="horizontal" valign="top" inlineStyle="background-color:#FFF; padding:10px;" id="pgl4">
    <af:spacer width="10px;" id="s1" inlineStyle="background-color:#DDD; color:white;"/>
    <af:panelGroupLayout layout="vertical" id="pgl1" valign="top">
    <af:outputText value="#{node.propertyMap['RD_RICH_TEXT:text1'].asTextHtml}"
    id="ot2" styleClass="bodytext"/>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    </dt:contentTemplateDef>
    </jsp:root>

  • Is there a way to add images , text and button in the individual marquee of a carousel

    Is there a way to add images , text and button in the individual marquee of a carousel ?

    Write a custom carousel.  Usually carousel components are just ULs that use something like jQuery to rotate through the LIs.  The foundation carousel component is really just designed for some specific use cases.  Generally I would just recommend rolling your own.

  • While generating PDF from webpage or website some of the images/texts doesnt show up in PDF. Also, there are a lot of formatting inconsistencies.

    Creating, Editing & Exporting PDFs ! ! !

    Can anyone please help, the websites hosted with us are developed on adobe CQ5.4 content management tool and when they are exported to PDF some of the images / texts doesn't get generated in the PDF. Also, the css /theme doesn't get generated resulting in formatting inconsistencies.
    However, if the same website is generated using some online PDF converters all Images & texts are coming fine with correct formatting.
    Is this issue due to using CQ CMS as that has a lot of components or is there a limitation with Acrobat XI pro trial version or anything else ?
    Appreciate if some one could provide inputs.
    Thanks
    Anusha

  • Missing "Charts, Images, Text Labels" demo from iWorks Numbers page.

    Really just an issue with the number iWorks page on the website.
    At the address below, Apple has a few watchable demos:
    http://www.apple.com/iwork/numbers/
    Intelligent Tables.
    Flexible Canvas.
    Charts, Images, Text Labels.
    and
    Interactive Print View.
    But the hyperlink listed under "Charts, Images, Text Labels." is the same as the one under "Flexible Canvas."
    Does anyone have the actual address that takes you to the "Charts, Images, Text Labels." demo?
    for reference, here is the address that is duplicated:
    http://movies.apple.com/movies/us/apple/mac/iwork/2007/features/iworkfeatures_flexiblemediarichcanvas_20070807640x400.mov
    thanks!

    The link below is now available from the iworks page:
    http://movies.apple.com/movies/us/apple/mac/iwork/2007/features/iworkfeatures_2dand3dcharts_20070807640x400.mov
    Thanks to who ever updated it.

  • Image,Text drag in applet

    Hai there,
    I want to allow a user to show an image and /or text on applet
    and must allow it to be dragged.
    I am able to do them separately oe. can drag image or text but
    when both are present they act as single unit while dragging.
    How should i allow each one to be dragged separately ?
    Should i use seperate threads for both of them?

    //  <applet code="DragTest" width="400" height="400"></applet>
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.font.*;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    import javax.swing.event.MouseInputAdapter;
    public class DragTest extends JApplet
        public void init()
            DragPanel dragPanel = new DragPanel(getImage());
            DragMeister listener = new DragMeister(dragPanel);
            dragPanel.addMouseListener(listener);
            dragPanel.addMouseMotionListener(listener);
            getContentPane().setLayout(new BorderLayout());
            getContentPane().add(dragPanel);
         private BufferedImage getImage()
            String path = "images/Bird.gif";
            ClassLoader cl = DragTest.class.getClassLoader();
            BufferedImage image = null;
            try
                image = ImageIO.read(cl.getResourceAsStream(path));
            catch(IOException ioe)
                System.err.println("read error: " + ioe.getMessage());
            return image;
        public static void main(String[] args)
            JApplet applet = new DragTest();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(applet);
            f.setSize(400,400);
            f.setLocation(200,200);
            applet.init();
            f.setVisible(true);
    class DragPanel extends JPanel
        BufferedImage image;
        String text;
        Rectangle imageRect;
        Rectangle textRect;
        public DragPanel(BufferedImage image)
            this.image = image;
            text = "hello world";
            imageRect = new Rectangle(120, 200, image.getWidth(), image.getHeight());
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            Font font = g2.getFont().deriveFont(Font.ITALIC, 24f);
            g2.setFont(font);
            FontRenderContext frc = g2.getFontRenderContext();
            LineMetrics lm = font.getLineMetrics(text, frc);
            if(textRect == null)
                int w = (int)font.getStringBounds(text, frc).getWidth();
                int h = (int)(lm.getAscent() + lm.getDescent());
                textRect = new Rectangle(60, 40, w, h);
            g2.setPaint(Color.blue);
            g2.drawString(text, textRect.x, textRect.y + lm.getAscent());
            g2.drawImage(image, imageRect.x, imageRect.y, this);
            //g2.setPaint(Color.red);
            //g2.draw(textRect);
            //g2.draw(imageRect);
        public void setRect(Rectangle r, int x, int y)
            r.setLocation(x,y);
            repaint();
        public Rectangle[] getRects()
            return new Rectangle[] { textRect, imageRect };
    class DragMeister extends MouseInputAdapter
        DragPanel dragPanel;
        Rectangle selectedRect;
        Point offset;
        boolean dragging;
        public DragMeister(DragPanel dp)
            dragPanel = dp;
            offset = new Point();
            dragging = false;
        public void mousePressed(MouseEvent e)
            Point p = e.getPoint();
            Rectangle[] rects = dragPanel.getRects();
            for(int j = 0; j < rects.length; j++)
                if(rects[j].contains(p))
                    selectedRect = rects[j];
                    offset.x = p.x - rects[j].x;
                    offset.y = p.y - rects[j].y;
                    dragging = true;
                    break;
        public void mouseReleased(MouseEvent e)
            dragging = false;
        public void mouseDragged(MouseEvent e)
            if(dragging)
                int x = e.getX() - offset.x;
                int y = e.getY() - offset.y;
                dragPanel.setRect(selectedRect, x, y);
    }

  • Image Text Wrapping html/css

    Ok, I've searched around and I don't think this is possible but...
    Every example of image text wrapping I can find requires that you put the <img> into your html before or after a paragraph. I'd like have it so that I can move my image anywhere on the left side of my div box and the text will flow around it. My concern is that I want my image placed on the left side but in the middle of a paragraph so that text from the paragraph wraps all around it on the top, right, and bottom.
    I realize that you can insert an <img> in the middle of the words to the paragraph and float left in css but my problem with that is it seems if the text gets resized in a browser or something it won't naturally flow with the image but yet get stuck there and get funky.
    Did I lose you guys? Any ideas? Is this possible?
    Thanks again

    To answer your question, you can place a floated image anywhere you wish but it will never look or stay exactly where you put it when text size is increased.  Remember, print design is static, web design isn't.  You can use EMS instead of pixels to keep things a bit more uniform when text sizes change.
    Quick & dirty demo of floats with ems.
    http://alt-web.com/TEST/float-test-with-ems.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Background, Images, & text is blacked out. I can not see any menus to edit anything... Help

    Background, Images, & text is blacked out. I can not see any menus to edit anything...
    The curser shows there are links when you move over. I have uninstalled and re-installed Firefox and restarted my computer with no luck.
    I can not see the menus to try and reset Firefox or change any settings.
    HELP Please

    hello obrienn214, other users with this problem all had an embedded intel hd3000 graphics card with an old driver present. in case this also applies to you, here would be a link to update the driver, which in turn should also address the black firefox problem: https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=23764 (for win7 64 bit)
    in case this doesn't solve the issue or does not apply to your system, start firefox into safemode '''by pressing the shift key while the application is launching''' & disable hardware acceleration in the firefox ''menu ≡ > options > advanced > general'' (that setting will take a restart of the browser to take effect).
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • Not possible to get image & text in a servlet

    Hi
    i want to display a image and below to that wnat to display a text.But text is not displaying.Please refer the following code.
    package com.Test;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.naming.NamingException;
    public class imagetry1 extends HttpServlet{
       public void doGet(HttpServletRequest req, HttpServletResponse res)
          throws ServletException, IOException{
         PrintWriter out = res.getWriter();
          try{
             // out.println("<h1> Drapes <hr> </h1>");
             FileInputStream fis = new FileInputStream("c:/hi/world.jpg");
             BufferedInputStream bis = new BufferedInputStream(fis);
             byte[] bytes = new byte[bis.available()];
             res.setContentType("image/jpeg");
             OutputStream os = res.getOutputStream();
             bis.read(bytes);
             os.write(bytes);
             String s1 = "Drapes";
             byte[] b1 = s1.getBytes();
             os.write(b1);
             res.setContentType("text/html" );
             out.println("<h1> Drapes <hr> </h1>");
          catch(IOException e){
    }

    Oh no.
    * JSP/Servlet outputs HTML.
    * Images in HTML are to be displayed using <img> tag.
    * The 'src' attribute of the <img> tag expects a valid URL (yes, URL!!) to the image.
    Clear?
    OK, if you use a local file system path of the server machine instead of a public URL to the image in the 'src' attribute, then it is certainly not going to work. The HTML is been sent from the server machine to the client machine. The HTML is been parsed and evaluated at the client machine. Any URL's will be invoked to the server again, but any local file system paths will be invoked on the local file system of the client machine.
    To stream images from the non-public file system of the server machine to the HTTP response, you need to create a servlet which does the simple task: read an InputStream from the file and write it to OutputStream of the response. You can find here an example: [http://balusc.blogspot.com/2007/04/imageservlet.html].

  • Best-practice for use of object styles to manage image text wrap issues when aiming at both print and EPUB output?

    I have a work-flow question about object styles, text-wrap, and preparing a long document with lots of images for dual print/EPUB output in InDesign CC 2014.
    I am sort of experienced with InDesign but new to EPUB export. I have hundreds of pages and hundreds of images so I'd like to make my EPUB learning curve, in particular, less painful.
    Let me talk you through what I'm planning and you tell me if it's stupid.
    It's kind of a storybook-look I'm going for. Single column of text (6" by 9" page) with lots of small-to-medium images on the page (one or two images per page), and the text flowing around, sometimes right, sometimes left. Sometimes around the bounding box, sometimes following the edges of the images. So in each case I'm looking to tweak image size and placement and wrap settings so that the image is as close to the relevant text as possible and the layout isn't all wonky. Lovely print page the goal. Lots of fussy trade-offs and deciding what looks best. Inevitably, this will entail local overrides of paragraph styles. So what I want to do, I guess, is get the images as closely placed as possible, before I do any of that overriding. Then I divide my production line.
    1) I set aside the uniformly-styled doc for later EPUB export. (This is wise, right? Start for EPUB export with a doc with pristine styles?)
    2) With the EPUB-bound version set aside, I finish preparing the print side, making all my little tweaks. So many pages, so many images. So many little nudges. If I go back and nudge something at the beginning everything shifts a little. It's broken up into lots of separate stories, but still ... there is no way to make this non-tedious. But what is best practice? I'm basically just doing it by hand, eyeballing it and dropping an inline anchor to some close bit of text in case of some storm, i.e. if there's a major text change my image will still be almost where it belongs. Try to get the early bits right so that I don't have to go back and change them and then mess up stuff later. Object styles don't really help me with that. Do they? I haven't found a good use for them at this stage (Obviously if I had to draw a pink line around each image, or whatever, I'd use object styles for that.)
    Now let me shift back to EPUB. Clearly I need object styles to prepare for export. I'm planning to make a left float style and a right float style and a couple of others for other cases. And I'm basically going to go through the whole doc selecting each image and styling it in whatever way seems likeliest. At this point I will change the inline anchors to above line or custom, since I'm told EPUB doesn't like the inline ones.
    I guess maybe it comes down to this. I realize I have to use object styles for images for EPUB, but for print, manual placement - to make it look just right - and an inline anchor seems best? I sort of feel like if I'm going to bother to use object styles for EPUB I should also use them for print, but maybe that's just not necessary? It feels inefficient to make so many inline anchors and then trade them for a custom thing just for EPUB. But two different outputs means two different workflows. Sometimes you just have to do it twice.
    Does this make sense? What am I missing, before I waste dozens of hours doing it wrong?

    I've moved your question to the InDesign EPUB forum for best results.

  • Image text is missing in InDesign CS4

    Hi everybody,
    I am using InDesign CS4 with MAC OS X 10.5.8. I encountered a problem that the Text is missing in the eps image, when imported on InDesign document. Refer below screenshot.
    I have used “Times New Roman” Type1 font in InDesign document. And for images I have used the same “Times New Roman” as OTF font. Refer below screenshots.
    Type 1 fonts used in InDesign:
    Open Type Font used in Images:
    Here, I caught one more finding. If I save the image as Adobe Postscript as “Language Level 2”, I don’t have any text missing issue in InDesign document. But, if I save the image as “Language Level 3”, I found this missing text issue in the document. Refer below screenshots.
    Could anyone hlep me what the exact issue. Any help is much appreciated!!

    Yes Bob. This new thread was raised by me to explain the issue in detail.
    Further to my analysis, I found that when I load the job fonts in “Applications/Adobe InDesign CS5/Fonts”, we got this text missing issue. And the same job fonts, when I load in “Users/<user_name>/Library/Fonts”, it showing correct.
    Any thoughts?

  • Flowing images/text?

    I am using InDesign CS5.5 and need to flow multiple images into pre-designed frames and names into pre-designed text boxes under each frame.  I have looked at data merge, anchoring, etc, but haven't found anything that will do exactly what I need .... yet.  I have attached an Indesign file image(sorry, I don't see where I can attach the actual file) I put together to show you exactly what I mean.  Can this be done?
    I know how to link the text boxes and flow the names into place, but how can I flow the images as well?  I need to make a composite similar to below, but on a MUCH larger scale; 400-500 images/names, AND the probability of having to either take out or put in images/names 2-3 separate times is very high. So...to make this layout work the most efficiently, I need be able to flow the images/names multiple times.
    Bottom line is I need to set up my image frames to a certain size over the entire page, then flow images to the frames and names to the text boxes under each frame.
    ideas? 
    Bob

    I don't know a way to flow images but you can place them in a quick way by clicking place from file menu then you can select and place multiple images, then click to place the first image then press the left/right arrow key to navigate through your images and click again each time you place an image. Check this link you will find more details under the title "Place mutiple graphics":
    http://help.adobe.com/en_US/indesign/cs/using/WSa285fff53dea4f8617383751001ea8cb3f-6bc5a.h tml#WS8882A67C-50CF-4825-8129-B4B051398F71a

  • HTML Viewer: Copying images+text to another component

    Hi folks,
    I'm working on a Java app for a research project where I'd like to be able to view a webpage in one panel (with some HTML viewer) and then be able to select pictures AND text from it (web browser-style), click a button, and have it copy the images and text (even the HTML code behind it would be sufficient) to some JTextArea or whatever.
    In other words, I'm trying to find an HTML viewer or browser which will be able to select both text and images and be able to copy the selection (as the real objects or even as HTML code, either way) so that it could be sent to some other component.
    I believe that JEditorPane supports viewing HTML, but you can only copy text from it. So, can anyone recommend an API class or even some 3rd party software (no funds since it's academic research, so free is preferable) that can do anything close to this? Alternatively, does anyone know of some other work around -- for example, selecting in IE or another browser, then dragging it onto some component into the Java app?
    Thanks a ton for any help!
    -Jon

    Try this..
    create a new flex project and add a folder called "src"
    create a new MXML component named "VideoComp.mxml" and copy/paste
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" width="400" height="300">
    <mx:Script>
    <![CDATA[
    [Bindable]
    public var videoWidth:int = 300;
    [Bindable]
    public var videoHeight:int = 300;
    ]]>
    </mx:Script>
    <mx:Label text="Vidoe" />
    <mx:TextInput text="{videoWidth}" id="w" change="this.videoWidth = int(w.text);" />
    <mx:TextInput text="{videoHeight}" id="h" change="this.videoHeight = int(h.text);" />
    </mx:VBox>
    create a new MXML component named, "SharingComp.mxml" add copy/paste this..
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" width="400" height="300">
    <mx:Script>
    <![CDATA[
    [Bindable]
    public var videoWidth:int;
    [Bindable]
    public var videoHeight:int;
    ]]>
    </mx:Script>
    <mx:Label text="Sharing Comp." />
    <mx:Label text="{videoWidth}" />
    <mx:Label text="{videoHeight}" />
    </mx:VBox>
    and here is the main.mxml file
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:src="src.*">
        <mx:Script>
            <![CDATA[
                private function doSomething():void
                 sharingComp.videoHeight = videoComp.videoHeight;
                 sharingComp.videoWidth = videoComp.videoWidth;
            ]]>
        </mx:Script>
       <src:VideoComp id="videoComp" />
       <mx:Button click="doSomething()" label="copy" />
       <src:SharingComp id="sharingComp" />
    </mx:Application>
    Hope this helps,
    BaBo,

  • Image/Text Alignment as browser(s) expand / contract

    Here is what I am looking to do.
    First, let me post the site so you may see what I am talking about:
    www.andrewsconstructioninc.biz
    What I would like to do is have the images/flash and/or java "space" (along with text and pictures) keep their ratio as the "user" (browser) window either shrinks or expands. If a user uses SHIFT+Scroll Wheel (on mouse) zooms in or out - the images and text will keep proper spacing along with their borders.
    Right now - if I zoom in the "construction picture" will shrink or enlarge, but the "gray" area does not
    I want the page to always look the same regardless if the window is being zoomed in or out
    What is the best way to do this without having to rewrite the entire site?

    Use ems instead of pixels.
    Elastic Layouts -
    http://www.alistapart.com/articles/elastic/
    The Incredible Em
    http://jontangerine.com/log/2007/09/the-incredible-em-and-elastic-layouts-with-css
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Interactive Image: Text Styles?

    Is there a standard text style we can edit to modify what shows up in the text boxes when an interactive image zooms in?
    According to the Style menu it's "Body Bullet" text, which just by looking at it you know that's not right. I don't see an "Interactive text" option anywhere in teh menus... assuming it all has to be done manually. BUT if there's a way someone has found to change the default text style within Interactive Images, then I'd only have to do it once and not dozens of times per book. Much like editing layout text (allegedly).
    Ideas?

    Yah I'm a little surprised Apple has left out so many basic features and also integrated some bizarro-world behaviors not consistent with any other Mac app I've ever used (see also Zoom shortcuts). Cmd +, Cmd-, Cmd-0 anyone? This stuff is not that complicated.
    Hopefully we'll get a hefty "polish update" this summer.

Maybe you are looking for