Adding blog / news list layout small image

Is it possible to generate a small image of the image attached to a news or blog and include it in the list layout?
I'm trying to accomplish something similar that is available for the product, in the blog or news module.
Does anyone have any suggestions?
thank you,

Hi mfj102,
Please see this thread which discusses this topic: http://forums.adobe.com/message/5853967. As mentioned, the best method would be to re-create a blog using the web app functionality.
Cheers.

Similar Messages

  • Blog Post List layout - images missing

    My developer is saying that it is not possible to include post images in the blog post list layout.
    Can you confirm if this is correct?
    Here is my current blog post list layout  http://www.onlineiq.biz/_blog/onlineiq_blog
    and images only display when clicking on Post Detail view.
    I know this can be acheived with web apps, but just needed to confirm that he is not missing something or that there is a trick we need to be aware of.
    thanks
    Ursh

    Just add an image into the paragraph of text.
    http://www.fueldesign.co.nz/_blog/Fuel_Design_Blog
    I think what your developer is doing is using the tag for the layout to show a number of characters rather then the one to show the first paragraph. The latter will allow you to have html such as images but you need to ensure your first paragraph is short and sweet - and intro and the css styles for the image work.
    But as you can see, it is defiantly possible.

  • Having some issues tweaking the Blog Post List Layout to output to adobe Muse

    Please see my question progression here from Muse side:
    http://forums.adobe.com/message/5109260
    So basically, I have watched the videos on BC Gurus and have posed the question on modifying the blog module in muse to get output I want.  when I use module {module_blogsitepost} it does not show all the information I want, but when I click a url to a blog post, it jumps to another page that shows the "BLOG TITLE", "BLOG DESCRIPTION", "RECENT POST", TAGS,  and "ARCHIVE" which I think would be helpful on the main {module_blogsitepost} module.
    So, i took the tags from the "OVERALL BLOG LIST MODULE" which does have that information and pasted  into the module {module_blogsitepost} which in BC under modules is Blog Post List Layout.  However the output just turns to the image below:
    I really do not know what I am doing wrong, if anything at all.  Is this a limit of the cooperation between adobe MUSE and BC?  Should not make a difference if I am copying all the HTML and passing it into the HTML view  of the Module I want.  Why is there not a bracket { } module for "OVERALL BLOG LIST MODULE" on the http://kb.worldsecuresystems.com/134/bc_1345.html ?
    It is strange that there are modules in BC that do not show code strings to generate the output shown on this list?  Is it because this capability is limited?  It is strange.  Please jump over to my site ( http://furnitureassemblyservice.com/blog.html ) to see what I mean.  BTW, I added the Tags Module to the site so that at least shows.
    One other question.. And maybe this is a Muse question, I try to add text or objects to the side of the blog entry but they are pushed to the bottom?  Not sure if I need to add this into an object with the Module and mark it up in html with a table to make that work?  I ask because I am trying to monitize the blog and add banners to the side or top. 
    Thank you for the time.

    The recommended practice is to call preventDefault on the dragStart event.

  • New UCM Layout - publishing images

    Hi All,
    I created a new Layout. The Layout is derived from standard Top Menus.
    I have problem with a copy the standard menu images (arrows, etc.) to my new Layout/Skin. I have the image oracle_logo.png in my new skin folder, but I DON'T have the image "menuA_ArrowDown.gif".
    I used CreateLayoutAndSkin from the Kyle's blog. My component is "same" but I 'still don't know where is the problem.
    Thanks,
    Martin

    Bob,
    Can you show a screen shot of the LR Publishin Manager setup used for this published collection as this one (use Edit Settings on the Publish Service):
    Beat

  • Can I change the word "permalink" in "Blog Post List Layout"

    What I actually am trying to achieve is a "read more" button that I can style.
    The only tag I found is the {tag_permalink}. I can put this in a div for styling.
    But it results in a button with the word "Permalink" which is confusing.
    Now I am looking for a way to make BC print "Read more" instead.
    Or did I miss a tag?
    I found {tag_blogpostbodypreview,Text} this I can change to {tag_blogpostbodypreview,Read more} but, can I put a div in there?
    Or, do you have another suggestion to create a standard read more button (automatically...)

    IconItemRenderer doesn't have a generic spark layout like other spark containers.  Instead it manually sizes and positions its elements for best performance.
    If you want to customize how these elements are positioned you will want to subclass IconItemRenderer and override the measure() and layoutContents() methods.

  • How do I create a new image composed of a number of smaller images?

    Hi,
    I'm attempting to work with the assorted image APIs for the first time and am experiencing one main problem with what I'm trying to do. Here's the scenario;
    I have an image file (currently a JPEG) which is 320*200 pixels in size, it contains a set of 20*20 images. I want to take such a file and convert it into a new JPG file containing all those 20*20 images but in a different grid, for example a single column.
    I'm currently having no problem in working my way through the input file and have created an ArrayList containing one BufferedImage for each 20*20 image. My problem is that I just can't see how to create a new file containing all those images in new grid.
    Any help would be much appreciated and FWIW I've included the code I've written so far.
    package mkhan.image;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.Iterator;
    import javax.imageio.ImageIO;
    import javax.imageio.stream.ImageInputStream;
    import javax.imageio.stream.ImageOutputStream;
    public class ImageTileConvertor {
       // arg 1 = input file
       // arg 2 = output file
       // arg 3 = tile x dimension
       // arg 4 = tile y dimension
       // arg 5 = number of tiles in x dimension
       // arg 6 = number of tiles in y dimension
       public static void main(String[] args) throws IllegalArgumentException,
                                                     IOException {
         if (args.length != 6) {
           System.out.println("Invalid argument list, please supply the following information in the specified order:");
           System.out.println("  - The input file name including full path");
           System.out.println("  - The output file name including full path");
           System.out.println("  - The size of the tile in the x dimension");
           System.out.println("  - The size of the tile in the y dimension");
           System.out.println("  - The number of tiles in the x dimension");
           System.out.println("  - The number of tiles in the y dimension");
         } else {
           ImageTileConvertor imageConvertor = new ImageTileConvertor(args[0], args[1], args[2],
                                                                      args[3], args[4], args[5]);
       * Instance member vars
      private File m_sourceFile = null;
      private File m_outputFile = null;
      private int m_tileSizeX = 0;
      private int m_tileSizeY = 0;
      private int m_numberOfXTiles = 0;
      private int m_numberOfYTiles = 0;
       * Ctor
      public ImageTileConvertor(String sourceFile, String outputFile,
                                String tileSizeX, String tileSizeY,
                                String tilesX, String tilesY) throws IllegalArgumentException,
                                                                     IOException {
        try {
          Integer tileSizeXInt = new Integer(tileSizeX);
          Integer tileSizeYInt = new Integer(tileSizeY);
          Integer tilesXInt = new Integer(tilesX);
          Integer tilesYInt = new Integer(tilesY);
          m_tileSizeX = tileSizeXInt.intValue();
          m_tileSizeY = tileSizeYInt.intValue();
          m_numberOfXTiles = tilesXInt.intValue() - 1;
          m_numberOfYTiles = tilesYInt.intValue() - 1; // convert to zero base
        } catch (NumberFormatException e) {
          throw new IllegalArgumentException("Tile Sizes must be integers");
        m_sourceFile = new File(sourceFile);
        m_outputFile = new File(outputFile);
        if (!m_sourceFile.exists()) {
          throw new IllegalArgumentException("Input file must exist and be a valid file");
        try {
          translateToTiles();
        } catch (IOException e) {
          throw e;
       * Performs the translation from one format to the other
      private void translateToTiles() throws IOException {
        ImageInputStream imageIn = null;
        BufferedImage bufferedWholeImage = null;
        int imageHeight = 0;
        int imageWidth = 0;
        int currentX = 0;
        int currentY = 0;
        ArrayList imageList = new ArrayList();
        try {
          imageIn = ImageIO.createImageInputStream(m_sourceFile);
          bufferedWholeImage = ImageIO.read(imageIn);
          if (bufferedWholeImage != null) {
            imageHeight = bufferedWholeImage.getHeight();
            imageWidth = bufferedWholeImage.getWidth();
            if (((m_tileSizeX * m_numberOfXTiles) > imageWidth) || ((m_tileSizeY * m_numberOfYTiles) > imageHeight)) {
              throw new IOException("Specified Tile Size is larger then image");
            } else {
              // Process each tile, work in columns
              for (int i=0; i <= m_numberOfXTiles; i++) {
                for (int j=0; j <= m_numberOfYTiles; j++) {
                  currentX = i * m_tileSizeX;
                  currentY = j * m_tileSizeY;
                  createTiledImage(imageList, bufferedWholeImage, currentX, currentY);
            createOutputTiles(imageList);
          } else {
            throw new IOException("Unable to identify source image format");
        } catch (IOException e) {
          throw e;
      private void createTiledImage(ArrayList listOfImages, BufferedImage wholeImage,
                                    int xPosition, int yPosition) {
        BufferedImage bufferedTileImage = wholeImage.getSubimage(xPosition, yPosition, m_tileSizeX, m_tileSizeY);
        listOfImages.add(bufferedTileImage);
      private void createOutputTiles(ArrayList imageList) throws IOException {
        ImageOutputStream out = ImageIO.createImageOutputStream(m_outputFile);
        Iterator iterator = imageList.iterator();
        // This doesn't work at the moment, it appears to output all the images but the end file only seems to contain the first small image
        while (iterator.hasNext()) {
          BufferedImage bi = (BufferedImage)iterator.next();
          ImageIO.write(bi, "JPG", out);
          System.out.println(out1.getStreamPosition());
        out.close();
        // This is another attempt in which I can see how to populate a Graphics object with a small sample of the images
        // Although I'm not sure how to output this to anywhere in order to see if it works - can this approach output to a file?
        BufferedImage singleTile = (BufferedImage)imageList.get(0);
        // Now populate the image with the tiles
        Graphics gr = singleTile.createGraphics();
        gr.drawImage(singleTile, 0, 0, Color.BLACK, null);
        singleTile = (BufferedImage)imageList.get(1);
        gr.drawImage(singleTile, 0, 20, Color.BLACK, null);
    }Thanks,
    Matt

    Construct a new BufferedImage whose width is the width of a tile, and whose height is the height of a tile times the number of tiles.BufferedImage colImg = new BufferedImage(m_tileSizeX,
                                             m_tileSizeY * m_numberOfXTiles * m_numberOfYTiles,
                                             BufferedImage.TYPE_INT_ARGB);Now write the tiles onto it.Iterator it = imageList.iterator();
    int columnYPos = 0;
    Graphics g = colImg.getGraphics();
    while (it.hasNext())
        g.drawImage((Image)it.next(), 0, columnYPos, null);
        columnYPos += m_tileSizeY;
    }Now save your image.*******************************************************************************
    Answer provided by Friends of the Water Cooler. Please inform forum admin via the
    'Discuss the JDC Web Site' forum that off-topic threads should be supported.

  • Visual Studio 2013 is creating new feature every time new list definition is added

    We are using Visual Studio 2013 and details are as under:
    Microsoft Visual Studio Ultimate 2013
    Version 12.0.30501.00 Update 2
    We we add a new list definition in our project, it creates a new feature with it. If we delete the feature and add list definition in the existing feature, list is created but columns are not added in the list.
    Same thing happened if we rename "Feature1", a new feature is created every time a new list definition is created.
    This doesn't happen when we add a Visual WebPart.
    Also, we have three different custom list option in the drop down in new list creating wizard.
    Is this a bug or we are doing something different.   
    http://farhanfaiz.wordpress.com

    Intellisense has a bug in VS2013 where it doesn't recognize InitializeComponent when you start working on the XAML.  My feeling is that if you try to compile this app, it will run fine (as long as there are no actual errors).
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • ALV  List Layout add new button  and modify Append Row Button Text and Logi

    Hi All,
    I am working on Employee custom development Application in Webdynpro ABAP>
    In my ALV list Layout  I have to add new  two Buttons  Top or Bottom of the ALV List.
    If I am adding I have to add logic for those Buttons. How to add and add logic for those buttons.
    as well as I have to Change the  Text  for  Existing Button ''Append Row''    to  "ADD NEW ROWS"
    and I have to add logic in this button while Append New Row I have to generate ID no for New Rows .
    Kindly help/advice  me to proceed further.
    Thanks in advance.
    Dav

    Hi Dav,
    To Add buttons please refer this thred,
    ALV with user-defined buttons on toolbar in wd abap
    To change or rename text in ALV standard buttons, please refer this ...
    How can i change the text of an standard button in ALV?
    and also see this article on self defined functions...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/101df93f-4b5c-2910-14aa-9eb0338c2110?quicklink=index&overridelayout=true
    Thanks,
    Kris.
    Edited by: kissnas on Feb 22, 2011 5:59 AM

  • I have over 1200 songs in my iTunes library that have always synced fine, I have added a new album to my list from one of my CD's, synced to add it to my library but less that 100 songs are now on my device and no matter how many ways I try its not worked

    I have over 1200 songs in my iTunes library that have always synced fine, I have added a new album to my list from one of my CD's, synced to add it to my library but less that 100 songs are now showing on my device and no matter how many ways I try its not able to show any more.
    Does anyone know why this is happening and how to rectify the situation as I have tried every help setting for the last 4 hours.

    I have tried everything I have read on the Internet about sync issues and restore etc and not there isn't a single song on my iPad or iPod touch. All of the songs are listed in my iTunes but are all greyed out, some have the cloud symbol next to them but lots don't and some say waiting.
    Long and short is nothing will save to my devices at all.....HELP !!!!!!!?

  • Images folder in Robohelp 7 project only lists a small fraction of the images actually there

    I added an image to a topic. The image had an identical name to an existing image in the project. The image appeared in my main project folder, which is where all images initially show up in my project. I then move them to an images folder. I moved this image, expecting to get a message asking if I wanted to replace the exsting image with the same name. i wanted to update all instances where this image appears. Instead I got a message that this file was in use and could not be replaced. I clicked on my images folder to see if the original image was in a topic that was open and maybe that was why it would not overwrite. At this point i noticed most of the images in the folder were not listed.
    I can use Reports Used and I see all the files that are supposed to be in my images folder, but when I go to the Images Reports tab, only the files that are listed in my images folder in the Project Manager are shown. So Robohelp knows the files are in the images folder and that they are in use, but it does not recognize them as images and will not list them as such.
    i have no idea how this happened or how to fix it.

    If RoboHelp allowed you to replace the image and it were a different size, you could have problems in the existing topics. I suspect that is why it is not allowed to replace it in that way.
    As far as "missing" images are concerned, try renaming the folder to say Images2. They will likely all appear and then you can revert the name.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How do i backup the list of load images automatically exceptions under Options- Content. I want to transfer to another comp without re-adding one at a time

    How do i backup the list of load images automatically exceptions under Options->Content. I want to transfer to another comp without re-adding one at a time. EVen if there is no way to backup, what is the system file for Firefox that stores these, so i can transfer this file or open it in an XML or similar editor to copy them out?

    The permissions.sqlite file stores 'allow' and 'block' exceptions for cookies, images, pop-up windows, and extensions (software) installation.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder
    See also:
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Adding a new field to a standard webdynpro component's layout

    Hi all,
      I need to add a new field to a standard webdynpro component's( in my case the component is ''/SAPSRM/WDC_UI_SC_DOTC_BD')  layout.How do i go about adding a new field to the standard component's lay out?
    can anyone help me with the necessary details?
    Regards,
    Abhinay.

    Check if this is useful to you (Login required)
    https://websmp105.sap-ag.de/~sapidb/011000358700001969972008E.pdf
    Rgds/Kiran

  • Sequence of items in 'to do' list now abritary after adding a new calender

    Hi I doubt there is a fix for this but I would like to understand the problem.
    I added a new calender (on the left, in a new color) and my to do list is now scrambled. The sequence of items was important, they were grouped, and now they seem to be in a random order. I'm not using priorities.
    WHY?! : )
    Perhaps now is a good time to switch to a competitor?
    Any thoughts?
    Thanks
    Matt

    For some reason the actual Task in the process is not being completed. If you see the same Task ID then you are probably still looking at the same actual Task because if a new Task was created, it would still get a new ID incrementing in value. What happens when you select the green check mark in the Task card in Workspace (rather than complete from the form view). If this works then perhaps there is something wrong with the submit button on your form. Also, what version of Reader are you using?

  • Added a new printer; other printers in Printer Utility list dissappeared

    Ok, i did something unconscious. Added a new printer (Canon MP160) to a list of many while the Printer Setup Utility was open. No harm i figured, when i rebooted 4 printers from my list were gone. Found them in Users> Library> Printers. Any way to simply drag & drop them back to the list? I don't seem to be able to add tyhem....
    Thanks for offering any insight or solutions.
    Peace
    15" MacBook Pro C2D 2.33/120/3g;   Mac OS X (10.4.8)   Pismo G4/550;SuperDrive;DLink BT;1GB RAM

    Because the printers are still showing in Users/Library/Printers then that shows that they are still installed on your Mac. So it is possible that as the Printer Setup Utility was open it may have caused your current problem, although from what I remember most of the Canon installers I've run close all open application before installing? Anyway, if another restart doesn't get them back into view then it could be that the printers.conf file (a hidden file located in etc/cups) has not updated correctly. Open Safari and type "http://127.0.0.1:631/printers". You should see all the printers currently installed and if this file is 'damaged' then you may only see the MP160.
    Of course, it may be a lot simpler than this. It could be due to the View menu in the Printer Setup Utility. Select View > Columns and enable 'In Menu'. If there is no tick next to the other printers then that can be one reason.
    Also, if the other printers are not currently connected to the Mac you are using, then that can also stop the printers from being displayed. Also, if they are shared printers and the Mac sharing them is off/sleep, then that can stop them from appearing also.

  • Adding small image to all shapes

    I have created some oval domes, by making the shape and adding background via swatch. As you can see i have added a small bird image to 1st one, but need to know how to add to all at same time.
    Can anyone tell me if it is possible to add a small image to each oval all in one go?
    Do I have to convert the shapes 1st and if so to what?
    Regards Budgie

    budgie,
    As I (mis)understand it now, you do have all the ovals with the background text/images (which may have been created in the way suggested in my post #2), and you wish to have the bird image on top of each, in one go.
    In that case, you may, having create the bird image and placed it on top of the first oval:
    1) Select the bird image and Effect>Distort & Transform>Transform, then insert the horizontal centre to centre distance between ovals as Move Horizontal with the desired number of copies (2 to correspond to the image);
    2) Repeat 1) only with Move Vertical by the vertical centre to centre distance and the desired number of copies (1 to correspond to the image).
    This should create copies of the bird image on top of the other ovals. You may Object>Expand Appearance to get individual images.
    I managed to add bird via "stroke" as suggest above,
    I am unsure about the meaning. My suggestion was (before adding the bird image) to Direct Select the Clippings Paths (the oval paths) and give (all of) them a stroke in one go.

Maybe you are looking for

  • Exchange Server 2010 - Receive Connector for Client Computers

    I have one customer with a SBS 2011 with Exchange Server 2010 - a pretty standard setup except for some customisation with Receive Connectors in order to cater for an application which is installed on a number of computers that requires to use an SMT

  • AC Adaptor Camileo H10

    Hello, I lost the original AC Adaptor for my Camileo H10, that allowed me to charge the camcorder and use it at the same time. Who can tell me where to buy another one ? Thanks in advance. Tom

  • Update failed on my N80

    Hiya all can someone help me please While updating the firmware (software) on my n80-1 the phone decided to disconnect its self from my computer I was using a nokia data cable which came with the phone. When i turn the phone on all i get is a white s

  • At each startup I need to use intrnt conect to or else internet doesnt work

    Everytime I startup my iMac G5 I have to use internet connect and type in my 26 digit password to reconnect to the network or else the internet wont work. I was hoping some one this forum would have an answer to my problem. I thought I should mention

  • Siri issue amending text messages

    Hi does anyone else have the following issue?  I dictate a text message using Siri, I need to amend the message and when I click on it to do so my keypad tones become excessively loud.  Tried turning Siri on and off, resetting my phone as new - no di