Add Image in WPC advanced paragraph

Has anybody tried using the insert image button in the Advanced paragraph section of an Article in WPC.
I tried it, it just doesnt add it !!

Hi ,
Write some text in the advanced para , select the text and then click on the image icon , select the image and then delete the text , without the texy the image doesnt get inserted
p.s award points if useful

Similar Messages

  • WPC - Article - Advance Paragraph : URL Color Change

    Hi,
    We have WPC implementation on EP7 (2004s) & SP18. We have created an article with advance paragraph. In running text on the advance paragraph contains URL which has been shown with default color (blue). We would like to change the color of the URL into #7bb0dc, which does not exist in the color pallet.
    Can anyone please help / suggest, how do we achieve this functionality?
    Thanks!
    Best Regards,
    Kabali B

    Hi Tushar,
    Thanks for your response. Actually, we tried these CSS and dont find any class id related to URL on the Advance Paragraph running text. Actually, when we open the page on runtime (open source) with notepad, found the below code which does not have any class id.
                      (A
                      href="http://www.google.com/"
                      FONT color=#99ccff
                                         www.google.com
                      FONT
                      A)
    Is there any way, we can add our custom color into the existing pallet on the advance paragraph editor?
    Best Regards,
    Kabali B
    Edited by: Kabali Balasubramanian on Aug 11, 2009 8:56 AM
    Edited by: Kabali Balasubramanian on Aug 11, 2009 9:01 AM

  • How to change the height of the advanced paragraph window in WPC?

    Hello,
    I would like to have a bigger window when I work with the advanced paragraph in WPC in order to see better the content.
    It´s ok if I see at the beginning the default size. However, I need the posibility to maximize the height of the window to a predefinded maximum height.
    It´s maybe possible to give an extra property for like MaxHeight="500" in the xml-File?
    <element id="paragraph_advanced" description="xml.xlbl.paragraph_advanced" type="htmleditadvanced" Maxheight="500" default="false" />
    Does anybody have experience with it.
    Thanks in advance.
    Thomas

    Hi Thomas...
    Did you have success changing the paragraph height?
    I'm with the same problem.
    I had another idea to solve it. If I couldn't change the height, i'll create my own web form (based on article form), only with paragraph field.
    I've tested this option and worked. But I prefer to use the standard web form.
    Tks

  • WPC - Article - Advance Paragraph : Editor Table Issue

    Hi,
    We have WPC implementation on EP7 (2004s) & SP18. We have created an article with advance paragraph and would like to use the default font size for the table content on Advance Paragraph using default html editor. i.e. The font size of the table content should match with the running text (content outside table) by default.
    Can anyone please help / suggest, how do we achieve this functionality?
    Thanks!
    Best Regards,
    Kabali B

    Able to achieve by changing the WPC css files. Closing the issue.

  • How do i add images in the header and footer to a PDF using iText

    Hi ,
    I want to add images to the header and footer of every page while i am genrating a pdf i have created a separate class called EndPage which i am instanceiating its default constructor in another class 's button action method.
    The above code genrates a PDF for me however it genrates a file with file size zero bytes and does not open it following is my sample code
    //**********Any Help would be appreciated
    Thank You
    public class My_Class
    public String pdf_action()
    EndPage ep=new EndPage();
    return null;
    }//My_class Ends
    class EndPage extends PdfPageEventHelper
    * Demonstrates the use of PageEvents.
    * @param args no arguments needed
    public EndPage()
    try {
    com.lowagie.text.Document document = new Document(PageSize.A4, 50, 50, 70, 70);
    PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("D://proposals/endpage.pdf"));
    writer.setPageEvent(new EndPage());
    document.open();
    String text = "Lots of text. ";
    for (int k = 0; k < 10; ++k)
    text += text;
    document.add(new Paragraph(text));
    document.close();
    catch (Exception de) {
    de.printStackTrace();
    public void onEndPage(PdfWriter writer, Document document) {
    try {
    Rectangle page = document.getPageSize();
    PdfPTable head = new PdfPTable(3);
    for (int k = 1; k <= 6; ++k)
    head.addCell("head " + k);
    head.setTotalWidth(page.width() - document.leftMargin() - document.rightMargin());
    head.writeSelectedRows(0, -1, document.leftMargin(), page.height() - document.topMargin() + head.getTotalHeight(),
    writer.getDirectContent());
    PdfPTable foot = new PdfPTable(3);
    for (int k = 1; k <= 6; ++k)
    foot.addCell("foot " + k);
    foot.setTotalWidth(page.width() - document.leftMargin() - document.rightMargin());
    foot.writeSelectedRows(0, -1, document.leftMargin(), document.bottomMargin(),
    writer.getDirectContent());
    catch (Exception e) {
    throw new ExceptionConverter(e);
    }

    Hi,
    Thanks for the quick response.
    The problem is that when I keep the logo as a watermark, the pdf is not adjusting itself to include the logo as header.
    But if I add a header text via Tools -> Headers and Footers, the pdf is adjusting itself so that the header text is at the beginning , not overlapping with the contents of pdf.
    But while using logo as watermark, some times overlapping of the pdf contents and logo is happening.
    Is there any way to add a logo in the Header and Footer via the option in Tools -> Headers and Footers
    Thanks,
    Vidhya

  • How to add Image dynamically in Webdynpro ABAP

    Hi Experts,
    How to add Image dynamically in Webdynpro ABAP.
    My requirement is i maintain all the images in a table.
    image source has to pick the table URl dynamically and display.
    is that possible in webdynpro?
    and also please give the suggesion,
    without using MIME objects is that anyway to get images?
    Thanks in advance.
    Regrads,
    Jeyanthi

    Hi,
      are those icons wou want to display then. he following code will be useful.
    data : lo_IMG type ref to CL_WD_IMAGE.
    LO_IMG = cl_wd_IMAGE=>new_IMAGE( id = img_id SOURCE = 'ICON_BW_APD_TARGET' tooltip = sts_tltp ).
    lo_cont->add_child( the_child = lo_img ).
    here lo_cont is the container where you want to add the image dynamically and source is the attribiute through which you can change the ICON image. this thing you can getit from data base table and change accordingly.
    Regards,
    Anil kumar G

  • How to add image in ejb web service

    Hello Community,
    I am writing web service to create a PDF file using itext API. In PDF file i want to add an image.
    Can someone please tell that , how can i add image(jpeg, png , etc.) to an ejb web service?
    Thanks in advance
    Regards,
    Dishant Chawla

    Hi,
    Please check the below code which i used to add image to the header using iText . Similarly you can add image directly to the document also as a element.
    Adding image as Header:
    httpServletRequest = request.getServletRequest();
    domainURL=httpServletRequest.getScheme()+"://"+httpServletRequest.getServerName();
    imgLogo=domainURL+request.getWebResourcePath()+"/images/XXXX.jpg";
    image =Image.getInstance(imgLogo);
    image.scalePercent(22);// As per you need
    chunk = new Chunk(image, 0, -20);
    HeaderFooter header_pdf = new HeaderFooter(new Phrase(chunk), false); // here i have added image as header
    header_pdf.disableBorderSide(0);
    header_pdf.setAlignment(Element.ALIGN_CENTER);
    header_pdf.setBorder(0);
    document.setHeader(header_pdf);
    (or)
    Adding Image a Element:
    httpServletRequest = request.getServletRequest();
    domainURL=httpServletRequest.getScheme()+"://"+httpServletRequest.getServerName();
    imgLogo=domainURL+request.getWebResourcePath()+"/images/XXXX.jpg";
    image =Image.getInstance(imgLogo);
    image.scalePercent(22);
    document.add(image);
    Java IText: Image | tutorials.jenkov.com
    Regards,
    Srinivasan V

  • How [Insert|Add] Image into Opening PDF file with Acrobat SDK.

    Hi Guys,
    I'm trying to insert|add image file into opening PDF file with specified location (X|Y) and scale (Width|Hight) but got many of troubles
    If use third party like iTextSharp or something else thing become simple but i want to use Acrobat SDK to do this
    Any suggestion or idea?
    Any help appreciated.

    Thank for your interested.
    I use VB.NET and Acrobat
    Here is some my code:
    Try
       If File.Exists(T(0)) Then
       Dim AcroAVDoc As AcroAVDoc = Ap.GetActiveDoc
       Dim AcroPDDoc As AcroPDDoc = AcroAVDoc.GetPDDoc
       Dim AcroPDPage As Acrobat.AcroPDPage = AcroPDDoc.AcquirePage(Integer.Parse(T(3)))
       Dim data() As String = T(1).Split("^")
       Dim imgX = data(0)
       Dim imgY = data(1)
       Dim imgWidth = data(3)
       Dim imgHight = data(4)
       'TODO: insert into opening PDF file
       Return 1
       End If
       Catch ex As Exception
       End Try
    I don not know what to do next to insert an image (JPEG, PNG, ..) into PDF file.
    Can you show me or suggest some solution, idea?
    Thank in advance.

  • How to add image in jtable header using 'Default table model'

    Hi,
    I created a table using "DefaultTableModel".
    im able to add images in table cells but not in 'table header'.
    i added inages in table by overriding "getColumnClass" of the DefaultTableModel.
    But what to do for headers?
    please help.
    Thanks in advance.

    The 'Java 5 tutorial' is really an outstanding oneI should note the the current tutorial on the Sun website has bee updated for Java 6. It contains updates to reflect the changes made in JDK6. Once of the changes is that sorting of tables is now supported directly which is why I needed to give you the link to the old tutorial.
    http://java.sun.com/docs/books/tutorial/uiswing/TOC.html

  • How can you add images and text to UIScrollBar Component

    I can only add the text, can't add images. Also how can you make paragraphs out of long text in a UIScrollBar?
    Thanks.

    Hi,
    UIScrollBar Component can be attached to a dynamic text filed and the text field can be set to Render Text as HTML option which in turn can display both text & images(using <img> tags).
    Refer http://www.flashvalley.com/fv_tutorials/loading_HTML_in_a_dynamic_text_field/page2.php that may help you getting what do you want
    Thanks!

  • Add image to news module

    Hi,
    I have created a site using muse that is hosted on Business Catalyst (webmarketing+).
    I have created and formatted the news module using the tutorialon Adobe TV and its working perfectly but I'm just wondering how to add images / pdf downloads to news items. Like which folders to upload to etc.
    Hopefully there is a way to do this that is client friendly, as this was one of the reasons we chose business catalyst.
    Thanks in advance.
    Tina

    thanks Liam.
    If I upload the photos to the images folder will they be overwridden if I re-publish the website in muse?
    Also is there a way of embedding a youtube video here?

  • Add images dynamically

    Hello eperts,
                        can any one tell me how to add images dynamically in webdynpro. i had loaded the image in mime,and inside the method wdmodifyview i had written the coding ,
    data: lr_image      type ref to cl_wd_image.
    data: lr_container  type ref to cl_wd_transparent_container.
    data: lr_flow_data       type ref to cl_wd_flow_data.
        lr_container ?= view->get_element( 'ROOTUIELEMENTCONTAINER' ).
        lr_image = cl_wd_image=>new_image( source = 'new.jpg'l view = view ).
        lr_flow_data = cl_wd_flow_data=>new_flow_data( element = lr_image ).
        lr_container->add_child( lr_image ).
    where 'new.jpg' is my mime object name.
    what other steps i have to follow to get the image while running.... thanks in advance.

    hi,
    if you want, you can modify the layout, just using your coding:
    lr_container->set_layout_data(lr_flow_data).
    In addition, make sure that your JPG is the MIME object of this WD component, otherwise, you should add "WD name" as the prefix of JPG's name..
    Best wishes.

  • Add Image button on Gumtree unresponsive.

    Whenever I try to post an ad on gumtree, I go to click on the "Add Image" Button and all it does is take me back up to the top of the screen. Doesn't refresh page or anything, just takes me back to top of page.
    Any ideas? It's frustrating having to use a different browser just for that.

    I assume you already tried making an exception for the site in Adblock Plus... since the problem relates to ads...
    ''Did this feature ever work in Firefox?'' If so, you could try clearing your Firefox cache and your saved cookies for the site. (Steps for that are listed below.)
    ''If that button never worked in Firefox,'' have you considered possible interference by add-ons? You could test whether Firefox can work with the site when your extensions are deactivated by opening the site in Firefox's Safe Mode. (Steps for that are listed below.)
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?
    Trying Firefox's Safe Mode is a standard diagnostic technique to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    Any difference?

  • Script for placing an image in its own paragraph (for eBooks, etc)

    This is for flowing text formats.
    With the cursor placed at the beginning of the paragraph, the script needs to:
    - paste an image from the clipboard at that insertion point
    - place a break paragraph return (to put the image in its own paragraph)
    - apply a paragraph style to the image (zero leading)
    - add an XML tag "image"
    Is this doable?

    Absolutely.
    - After you did a previous manual "copy", from within InDesign or in just about any other program, app.paste() will do a regular paste operation on your current cursor position.
    - use app.selection[0].insertionPoints[-1].contents = "\r" to 'insert' a paragraph return before your current cursor position.
    - use app.selection[0].paragraphs.previousItem(app.selection[0].paragraphs[0]) to set properties of the paragraph before the one your cursor is in (as you may already know, scripting usually does not move the cursor around).
    - so, since 'allGraphics' is the property that holds images for paragraphs, app.selection[0].paragraphs.previousItem(app.selection[0].paragraphs[0]).allGraphics[0] targets 'the first graphic in the previous paragraph that you are currently in', and you can set its properties in turn to anything you'd like.
    As for the finishing touch, setting the XML tag of an image, I don't know how to do that ... there doesn't seem to be a 'tag' method for graphics.

  • How do I add image upload to web app edit template?

    How do I add image upload to web app edit template. When creating fields I am selecting image from the field type. But the only way to upload and image is when I create the web app item within the admin. The option to upload an image is not available when the user submit web form opens.
    Wont send any of these questions through this email anymore but really needed assistance.
    Thanks,
    Gordon

    On the Details tab of the Web App setup, under Web App Item Options; have you ticked "Allow File Upload" and specified a Default Upload Folder?

Maybe you are looking for

  • How do I connect my library and playlists to iTunes 10 on PC.

    My computer crashed. Luckily I had my extensive library and playlists on external drive. I have a newer PC now with Windows 7. I have tried to download a version of iTunes 10 but I am uncertain of how to connect them. I have made a link with my Libra

  • How do I perform the interp3 function in matlab in LabVIEW

    I have the following data attached (DTTT.txt).  The four columns are as follows: Column 1, 2 and 3 are (fixed) measurement points and the fourth column is the resulting measurement data using these 3 points. What I need to do is find the value that s

  • Not found in system

    hi there ive tried to download the HP recovery manager but is saying the softpaq will not be installed because HP Recovery Manager cant be found in my system? what to do now? lisa x This question was solved. View Solution.

  • How to add a new payment plan type

    I want to define a crm sales order. In customizing process, I want to add the new item in payment plan type field, but I don't find the customizing route . Where is it to find ? Thanks.

  • Report DW error with CSS position

    To the Adobe staff I use this forum cause I can't find where the F... to report an error! There is an error in Dreamweaver CS4 french (canadian) version. When you create a css style, the position tab, the fonction fixed has been translated and should