Display a strip of images in a single keyPress?

i am having a strip of images which contain 16 images .my problem is i jus want to show entire frames in a single keypress
now i m getting each frame in a keypress
***********here is my code***************
import javax.microedition.lcdui.*;
import javax.microedition.lcdui.game.*;
public class ExampleGameCanvas extends GameCanvas implements Runnable
private boolean isPlay; // Game Loop runs when isPlay is true
private long delay=8; // To give thread consistency
private int k;
private int counter=0;
private int xpos=50;
private int ypos=60;
private byte ROTATE_NONE = Sprite.TRANS_NONE;
private byte ROTATE_90 = Sprite.TRANS_ROT90;
private byte ROTATE_180= Sprite.TRANS_ROT180;
private byte ROTATE_270= Sprite.TRANS_ROT270;          
private byte CURRENT_ROTATE=ROTATE_NONE;
private Image clwalk;
private Image tilesImg,bottomboard,clownIdle;                     //Image varibale declaration-kris
private int clwalkXstart;
private int clnX=0;
private int tileXPos = 0;
     private int tileYPos = 150;
     private byte tileWidth = 21;
     private byte tileHeight = 21;
     private int tileStartXPosition = 0;
     private int tileStartYPosition = 0;
     private int numberOfRows = 12;
     private int numberOfColumns = 11;
     private int tileStartY = 39;
private boolean walk=false;
private int count=0;
private int p=0;
     private int sampleMap[][] = {
               //1, 2, 3, 4, 5, 6, 7, 8, 9,10,11
               {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
               {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
               {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
               {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},                    //11x12
               {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
               {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
               {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
               {-1,-1,-1,-1, 1,-1,-1,-1,-1,-1,-1},
               {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
               {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},                //-1 for empty space
               {0,0,0,0,0,0,0,0,0,0,0},
               {0,0,0,0,0,0,0,0,0,0,0}                                   //0 for square tile
private int current_Map[][] = new int[numberOfRows][numberOfColumns]; //this will store the current level
// Constructor and initialization
public ExampleGameCanvas()
super(true);
try
tilesImg = Image.createImage("/tiles_240x320.png");
bottomboard = Image.createImage("/bottomboard_240x320.png");
clwalk = Image.createImage("/cl_walk_240x320.png");
}catch(Exception ee){}
// Automatically start thread for game loop
public void start()
isPlay = true;
Thread t = new Thread(this);
t.start();
// Main Game Loop
public void run()
Graphics g = getGraphics();
while (isPlay == true)
input();
drawMap(g);
drawPlayer(g);
try { Thread.sleep(delay); }
catch (InterruptedException ie) {}
// Method to Handle User Inputs
private void input()
int keyStates = getKeyStates();
// Right
if ((keyStates & RIGHT_PRESSED) !=0 )
clwalkXstart +=26;
if(clwalkXstart==416)
clwalkXstart=0;
clnX+=2;
else if ((keyStates & LEFT_PRESSED) !=0 )
walk=true;
System.out.println("1111111111111111111111111111111111");
clnX-=3;
private void drawMap(Graphics g)
          System.out.println("jjjjjjjjjjjjjjjjjjjjjjj");
          System.out.println("oooooooooooooooooooo");
          g.setClip(0, 0, getWidth(), getHeight());
          g.drawImage(bottomboard, 0, getHeight()-bottomboard.getHeight(), 0);
current_Map=sampleMap;     
          for(byte row = 0; row < numberOfRows; row++)
               for(byte col =0; col < numberOfColumns; col++)
                    switch(current_Map[row][col])
                    case 0:                         
                         g.drawRegion(tilesImg, tileStartXPosition, tileStartYPosition, tileWidth, tileHeight, ROTATE_NONE, tileXPos,220, Graphics.TOP|Graphics.LEFT);
                         break;
                    if(tileXPos < 215)
               tileXPos += tileWidth;
               else
               tileXPos = 5;
if(row >= 11)
                    tileYPos = tileStartY;
                    else
tileYPos += tileHeight;
          // repaint();
          // flushGraphics();
private void drawPlayer(Graphics g)
g.setColor(0xffffff);
g.fillRect(0,0,getWidth(),179+clwalk.getHeight());
g.drawRegion(clwalk,clwalkXstart, 0, 26, 41, ROTATE_NONE, clnX,180, Graphics.TOP|Graphics.LEFT);
try {
Thread.sleep(40);
} catch (InterruptedException ex) {
ex.printStackTrace();
flushGraphics();
repaint();
}

hi
i solved the problem.now my problem is i have to move my player(actor) according to the map
**********here is my code**************
import java.io.IOException;
import javax.microedition.lcdui.Graphics;
import javax.microedition.lcdui.Image;
import javax.microedition.lcdui.game.GameCanvas;
public class clsCanvas extends GameCanvas implements Runnable
private boolean isRunning = true;
private Graphics g;
private midMain fParent;
private Image clwalk;
private int clwalkXstart;
private int clnX=0;
private boolean playerRunning = false;
/*************FOR TILED MAP**************************/
private Image tileMap,bottomboard;
private int numberOfRows = 12;                                             //index of rows
private int numberOfColumns = 11;                                        //index of cols
private int tileStartXPosition= 0;
private int tileStartYPosition= 0;
private byte tileWidth = 21;
private byte tileHeight = 21;
private int tileXPos = 5;
private int tileYPos = 0;
private int tileStartY = 39;
private int sampleMap[][] = {
          //1, 2, 3, 4, 5, 6, 7, 8, 9,10,11
          {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
          {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
          {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
          {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
          {-1,-1,-1,-1,-1, 0,-1,-1,-1,-1,-1},
          {-1,-1,-1,-1,-1, 0,-1,-1,-1,-1,-1},
          {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
          {-1,-1,-1,-1, 1, 0, 2,-1,-1,-1,-1},
          {-1,-1,-1, 1, 0, 0, 0, 2,-1,-1,-1},
          {-1,-1, 1, 0, 0, 0, 0, 0, 2,-1,-1},
          {-1, 1, 0, 0, 0, 0, 0, 0, 0, 2,-1},
          {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
private int current_Map[][] = new int[numberOfRows][numberOfColumns]; //this will store the current level
/***********MAP VARIABLES ENDS HERE*****************/
public clsCanvas(midMain m) //constructor to initilization
super(true);
fParent=m;
try {
clwalk = Image.createImage("/cl_walk_240x320.png");
tileMap = Image.createImage("/tiles_240x320.png");
bottomboard = Image.createImage("/bottomboard_240x320.png");
} catch (IOException ex) {
ex.printStackTrace();
public void start() //start game thread here
Thread runner = new Thread(this);
runner.start();
public void run()
{                                          //run method
int iKey = 0;
g = getGraphics();
while(isRunning)
     drawMap(g);
drawPlayer(g);
iKey = getKeyStates();
if ((iKey & GameCanvas.RIGHT_PRESSED) != 0) //keyPress_RIGHT
playerRunning = true;
System.out.println("right_key_pressed");
if(playerRunning) {
moveStrip();
flushGraphics();
try {
Thread.sleep(30);
} catch (Exception ex) { }
}//while ends here
g = null;
fParent.destroyApp(false);
fParent = null;
}//run ends here
private void drawMap(Graphics g)
     current_Map=sampleMap;
     g.setColor(0x000000);
g.fillRect(0,0,getWidth(),getHeight());
     g.setClip(0, 0, getWidth(), getHeight());
          g.drawImage(bottomboard, 0, getHeight()-bottomboard.getHeight(), 0);
     for(byte row = 0; row < numberOfRows; row++)
               for(byte col =0; col < numberOfColumns; col++)
                    switch(current_Map[row][col])
                    case 0:
                         g.drawRegion(tileMap, tileStartXPosition, tileStartYPosition, tileWidth, tileHeight, 0, tileXPos, tileYPos-55, Graphics.TOP|Graphics.LEFT);
                         System.out.println(tileYPos);
                         System.out.println("tileXpos-"+tileXPos);
                         break;
                    if(tileXPos < 215)
                         tileXPos += tileWidth;
                    else
                         tileXPos = 5;
               if(row >= 11)
                    tileYPos = tileStartY;
               else
                    tileYPos += tileHeight;
private void drawPlayer(Graphics g) //drawPlayer() Method [called by run()]
/* g.setColor(0x000000);
g.fillRect(0,0,getWidth(),getHeight());*/
g.drawRegion(clwalk,clwalkXstart, 0, 26, 41, 0, clnX,155, Graphics.TOP|Graphics.LEFT);
try {
Thread.sleep(40);
} catch (InterruptedException ex) {
ex.printStackTrace();
}//DrawPlayer ends here
private void moveStrip() //moveStrip() method [called by run()]
clwalkXstart +=26; //clipX updating to 26
if(clwalkXstart==390) {
clwalkXstart=0;
playerRunning = false;
clnX +=2; //increasing the destinationX to 2
}

Similar Messages

  • If I set Firefox to refrain from loading images automatically, how can I view a single image, or a single page's images, without having to enter the site in the Exceptions list, only to go back and remove it when I'm done?

    I was hoping for a hotkey option or button on the toolbar to load images for a single page for a single session at a time. Turning off images really saves bandwidth and speeds load time on websites, but sometimes I'd like to view the images on a page, but only for this session. Is that possible, or do I have to go to the Exceptions page and allow a specific domain or page to load images and then go back and remove that domain or page when I'm done?

    *Image Block: https://addons.mozilla.org/firefox/addon/image-block/

  • Rich text box used in Infopath Form not displaying option to get images from Computer

    Hello,
    We have used "Rich text box" in Infopath Form which is not displaying option to get images from Computer.
    Options available are : From Address, From SharePoint
    But if we Rich text box in list, then it works fine with "From Computer" option.
    can you please help me out to get this option.
    Thanks in advance.
    REgards,
    Jayashri

    Hi,
    From your description, there is no “From Computer” option to get images with rich text box in InfoPath form.
    Per my knowledge, by design there are “From Address” and “From SharePoint” options without “From Computer” option in rich text box in InfoPath form. As a workaround, you can develop a custom InfoPath Rich Text box to do it.
    About developing a custom InfoPath control, I suggest you create a new thread on the forum “Visual Studio Tools for Office”, more experts will assist you with InfoPath development.
    Visual Studio Tools for Office:
    https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=vsto&filter=alltypes&sort=lastpostdesc
    Thanks,
    Dean Wang

  • In my Macbook Pro, on a few occassions, the apple menu bar blacks out. its displayed as a negative image. The desktop wallpaper get greyed out and i get a blank screen as wallpaper. No idea why this happens. I reset the system and issue gets resolved.

    In my Macbook Pro, on a few occassions, the apple menu bar blacks out. its displayed as a negative image. The desktop wallpaper get greyed out and i get a blank screen as wallpaper. No idea why this happens. I reset the system and issue gets resolved.

    AshwinVC wrote:
    I reset the system and issue gets resolved.
    How? 

  • Can I have multiple images on a single USB drive?

    I would like to save an image from my T400 (XP), then upgrade the hard drive to an SSD, then upgrade the OS to Windows 7 (or 8), and take another image.
    I have several questions that I hope someone can help me with...
    Can I use Rescue and Recovery to save multiple images to a single USB drive?  
    If so, how does the sw keep the files separate?
    Will it still work if I use two different Rescue and Recovery versions (4.3 for XP, and 4.5 for W7)?
    Is there a way to store the images in separate folders on the USB drive, or is that unnecessary?
    Is there a better way to do this (including using different sw)?
    Thanks in advance,
    Ron
    Solved!
    Go to Solution.

    If you open Disk Management, you'll see Disk 0 with more than one partition. If you want to rebuild a HD back the same you'll want all or at least two of the partitions. You'll notice the Active Boot partition is not C the Windows drive but a partition called System_Drv (at least in my system). Those two will be mandatory when you image a new drive. Otherwide you'll have some fixing with external tools to get it booting.
    T520 Model 4239 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz
    Intel Sandy Bridge & Nvidia NVS 4200M graphics Intel N 6300 Wi-Fi adapter
    Windows 7 Home Prem - 64bit w/8GB DDR3

  • How can I add the logo image for a single item in an RSS feed?

    Hello,
    I am an administrator of iTunes U at the University of Minnesota.
    Before transitioning new public site, we are trying to figure out how to put a logo image into RSS feeds.
    We use our server to makes xml codes to create RSS feeds for podcasts.
    We successfully put a logo image for a collection in a RSS feed, but putting a logo image for a single item did not work.
    Below is the part of the xml code for the logo image for a single item, which is created by our server. I deleted other parts of xml code for your convenience.
    <item>
    <title>Plagiarism</title>
    <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" />
    <enclosure url="http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3" length="8544508" type="audio/x-mp3" />
    <guid>http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3</guid>
    <image></image>
    </item>
    We tried both <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" /> or <image>http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimming-conta st.jpg</image>.
    Both did not work.
    Can anyone help?
    Thank you for your help in advance!!
    Seogjoo

    Haven't created too many podcasts, but in this one
    http://itunes.apple.com/us/podcast/connecticut-college-sculpture/id372414245
    or
    itpc://video.conncoll.edu/d/sculptures/index.xml
    before we included the audio files, we added the images in iTunes.
    Select the file, then go to File>Get Info, here you can add metadata, and in Artwork add an image.
    Then upload this file to your server. Works for audio files anyways.
    You don't see the image in the web podcast, but you do in iTunes after you download each item, in "Show item artwork" in lower left. Click on the image and it zooms out.

  • Display of .CRW (Raw) images in Bridge CS6

    I have recently upgraded from PS CS3 direct to PS CS6. I have an issue with the display of raw images taken by my Canon PowerShot S70 camera (.CRW format). Many of the portrait-style images are displayed as landscape. This appears to be random as not all portrait images are affected. I did not have this problem with CS3. I have discussed the matter with the Adobe helpdesk which suggested various remedies (purging cache, resetting preferences) to no avail. They came to the conclusion that PS CS6 does not fully support the file structure generated by this camera in that it cannot detect from the file data that it should be displayed as a portrait image rather than as a landscape image. I have two issues with this. Firstly, if true, it means that PS CS6 has taken a slightly backward step as far as I'm concerned and secondly, it does not answer the random nature of the incorrect display.
    Obviously I want these images to be displayed correctly. I can rotate them in Bridge/PS manually, but I have a lot of them scattered over many folders and it is a task I would rather be automated.
    This issue also occurs in Windows 7 Home Premium, but as I was using Win 7 HP with CS3 without this display issue, it appears to be an Adobe problem as it only occurred after the upgrade to CS6.
    Has anyone else experienced this problem? If so how have you solved it? Is there a fix for it?
    Many thanks
    Richard
    Richard Malpas

    I have just checked my .CRW files and realise that the display problem is not random, all .CRW images shot in portrait mode are displayed as landscape. This appears to be an Adobe issue and means that the helpdesk was right - PS CS6 does not fully support this type of Raw file.

  • I recently connected my new MBA to an ACER display using the appropriate Apple hardware to connect to a VGA port. The quality of the ACER display is poor- the image is not clear. How do I achieve the same clarity of picture as my MBA screen?

    I recently connected my new MBA to an ACER display using the appropriate Apple hardware to connect to a VGA port. The quality of the ACER display is poor- the image is not clear. How do I achieve the same clarity of picture as my MBA screen?

    Welcome to the Apple Community.
    AirPlay Mirroring requires a second-generation Apple TV or later, OS X 10.8 or better and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer).
    On the basis of the specifications you have given for your set up, mirroring should work.

  • How to display multiple lines of texts in a single rows in ALV

    Hi,
    I have a unique requirement in which i have to display multiple lines if texts for a single rows in ALV Grid. Right now in my output it is coming in single line which is not visible fully because that text is more than 255 character. So i want to display the test by splitting into multiple lines and show it on output. Please suggest some solution for this if this is possible in ALV.
    Thanks,
    Raghav

    Hi Raghavendra,
    Its not possible to display multiple line in one row of an alv, but i think you can acheive it by splitting the whole text into multiple sub-text.
    For example, if your requirement is as below:
    Field #1          Field #2
    1                    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx(200 characters)
    2                    yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy(220 character)
    then you can break Field#2 value into say 50 character and then populate the internal table with repetative entries of Field#1 and the finally sort it by Field#1 value... as a result of which you output will be somewhat as below:
    Field#1          Field#2
    1                   xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
                         xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    2                   yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
                         yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
                         yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
                         yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
                         yyyyyyyyyyyyyyyyyyyy           
    Hope it will help you in meeting your requirement.
    Regards,
    Shradha

  • Display an object of Image type or Byte Array

    Hi, lets say i got an image stored in the Image format or byte[]. How can i make it display the image on the screen by taking the values in byte array or Image field?

    Thanks rahul,
    The thing is, i am generating a chart in a servlet
    and setting the image in the form of a byte [] to the
    view bean ( which is binded to the jsp, springs
    framework ). The servlet would return the view bean
    to the jsp and in the jsp, i am suppose to print this
    byte array so as to give me the image..
    I hope this makes sense.. pls help me ou!Well letme see if i got tht right or not,
    you are trying to call Your MODEL (Business layer / Spring Container) from a servlet and you are expressing that logic in form of chart (Image) and trying to save it as a byte array in a view bean and you want to print /display that as an image in a jsp (After Servlet fwd / redirect action) which includes other data using a ViewBean.
    If this is the case...
    As the forwaded JSP can include both image and Textual (hypertext too)..we can try a work around hear...Lets dedicate a Servlet which retreives byte [] from a view bean and gives us an image output. hear is an example and this could be a way.
    Prior to that i'm trying to make few assumptions here....
    1).The chart image which we are trying to express would of format JPEG.
    2).we are trying to take help of<img> tag to display the image from the image generating servlet.
    here is my approach....
    ViewBean.java:
    ============
    public class ViewBean implements serializable{
    byte piechart[];
    byte barchart[];
    byte chart3D[];
    public ViewBean(){
    public byte[] getPieChart(){
    return(this.piechart);
    public byte[] getBarChart(){
    return(this.barchart);
    public byte[] get3DChart(){
    return(this.chart3D);
    public void setPieChart(byte piechart[]){
    this.piechart = piechart;
    public void setBarChart(byte barchart[]){
    this.barchart = barchart;
    public void set3DChart(byte chart3D[]){
    this.chart3D = chart3D;
    }ControllerServlet.java:
    =================
    (This could also be an ActionClass(Ref Struts) a Backing Bean(Ref JSF) or anything which stays at the Controller Layer)
    public void doGet(HttpServletRequest request,HttpServletResponse response) throws IOException{
    /* There are few different implementations of getting   BeanFactory Resource
    In,the below example i have used XmlBeanFactory Object to create an instance of (Spring) BeanFactory */
    BeanFactory factory =
    new XmlBeanFactory(new FileInputStream("SpringResource.xml"));
    //write a Util Logic in your Implementation class using JFreeChart (or some open source chart library) and express the images by returning a  byte[]
    ChartService chartService =
    (GreetingService) factory.getBean("chartService");
    ViewBean vb = new ViewBean();
    vb.setPieChart(chartService.generatePieChart(request.getParameter("<someparam>"));
    vb.setBarChart(chartService.generateBarChart(request.getParameter("<someparam1>"));
    vb.set3DChart(chartService.generate3DChart(request.getParameter("<someparam2>"));
    chartService = null;
    HttpSession session = request.getSession(false);
    session.setAttribute("ViewBean",vb);
    response.sendRedirect("jsp/DisplayReports.jsp");
    }DisplayReports.jsp :
    ================
    <%@ page language="java" %>
    <html>
    <head>
    <title>reports</title>
    </head>
    <body>
    <h1 align="center">Pie Chart </h1>
    <center><img src="ImageServlet?req=1" /></center>
    <h1 align="center">Bar Chart </h1>
    <center><img src="ImageServlet?req=2" /></center>
    <h1 align="center">3D Chart</h1>
    <center><img src="ImageServlet?req=3" /></center>
    </body>
    </html>ImageServlet.java
    ==============
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
           byte buffer[];
            HttpSession session = request.getSession(false);
            ViewBean vb = (ViewBean) session.getAttribute("ViewBean");
            String req = request.getParameter("req");
            if(req.equals("1") == true)       
                buffer = vb.getPieChart();
            else if(req.equals("2") == true)
                 buffer = vb.getBarChart();
            else if(req.equals("3") == true)
                 buffer = vb.get3DChart();
            JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder(new ByteArrayInputStream(buffer));
            BufferedImage image =decoder.decodeAsBufferedImage() ;
            response.setContentType("image/jpeg");
            // Send back image
            ServletOutputStream sos = response.getOutputStream();
            JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(sos);
            encoder.encode(image);
        }Note: Through ImageServlet is a Servlet i would categorise it under presentation layer rather to be a part of Controller and added to it all this could be easily relaced by a reporting(BI) server like JasperServer,Pentaho,Actuate................
    Hope the stated implementation had given some idea to you....
    However,If you want to further look into similar implementations take a look at
    http://www.swiftchart.com/exampleapp.htm#e5
    which i believe to be a wonderful tutor for such implementations...
    However, there are many simple (Open) solutions to the stated problem.. if you are Using MyFaces along with spring... i would recommend usage of JSF Chart Tag which is very simple to use all it requires need is to write a chart Object generating methos inside our backing bean.
    For further reference have a look at the below links
    http://www.jroller.com/page/cagataycivici?entry=acegi_jsf_components_hit_the
    http://jsf-comp.sourceforge.net/components/chartcreator/index.html
    NOTE:I've tried it personally using MyFaces it was working gr8 but i had a hardtime on deploying my appln on a Portal Server(Liferay).If you find a workaround i'd be glad to know about it.
    & there are many BI Open Source Server Appls that can take care of this work too.(Maintainace wud be a tough ask when we go for this)
    For, the design perspective had i've been ur PM i wud have choose BI Server if it was corporate web appln on which we work on.
    Hope this might be of some help :)
    REGARDS,
    RaHuL

  • Firefox does not display websites correctly. Images are missing or out of position.

    Too much white space. How do I downgrade back to 3.6.3? I have another computer running that version that displays everything correctly. Text is also placed incorrectly. Even this Mozilla page has no images. Only white space with a fuzzy 'mozilla' in the upper left-hand corner.

    Thanks:
    The Fonts & Colours option worked wonderfully for me and now my pages are displaying the colour and images I expected to see. So very simple in the end. Is it related to the current upgrad? At least I will not have to trouble with attempting to revert to an earlier version.
    Bruce

  • How do you print multiple different images on a single page in preview

    How do you print multiple different images on a single page in preview?

    Chances are no one who saw your question knew the answer.
    Unless you're willing to share the answer you found here, then anyone else like you searching for the problem who comes across this thread will also be unable to thank you for providing the answer too.  

  • 15" studio display - colored stripes

    Hi,
    Please excuse my lack of technical knowledge. I was just given a G4 (used to use one at work) with a 15" Apple Studio Display LCD. When I turned the display on, I got a lovely display of stripes of various colors. Each time I turn it on, the colors/width/intensity changes.
    Is this the disply in its death throes, or is it the G4's video card (as someone pointed out to me)?
    Help! I love the G4 but it would be better to be able to use it!
    G4   Mac OS X (10.1.x)  

    http://www.ifixit.com/ may have some do-it-yourself solutions.

  • Most times when I import photos from my desktop or dropbox to iPhoto, iPhoto will keep the title I created for the image as the display title under the image. but occasionally it displays the filename instead and I have to go back through and reenter

    most times when I import photos from my desktop or dropbox to iPhoto, iPhoto will keep the title I created for the image as the display title under the image. but occasionally it displays the filename instead and I have to go back through and reenter the title in iPhoto. why the inconsistency? running OS 10.9.5 and using iPhoto 9.5.1

    Try this:  select one of the photos that are showing the wrong title and use the Photos ➙ Batch Change ➙ Title to File Name menu option.
    See if that will put the name that you want under the thumbnail.

  • Can images placed in a slideshow be zero spaced to appear as a rotating strip of images?

    I'd like to make a slideshow of images without spacing between the images to make a continuously rotating slideshow strip of images. Is that possible with Muse?

    Hi Kenneth,
    Use a basic slideshow with vertical transition. By default it has 0 spacing between the images.
    - Abhishek Maurya

Maybe you are looking for

  • How can I get RoboHelp to recognize my FrameMaker installation?

    I have Technical Suite 3.5 installed and several RoboHelp projects linked to FrameMaker books. The Frame books were created in FrameMaker 10. I then upgraded to Technical Suite 3.5, then later upgraded my FrameMaker to 11. All was well, RoboHelp cont

  • Using the Telephone drops my wireless connection from TC

    Hello, I was just seeking some help with why when I use my telephone my internet connection is dropped. I am new to Mac so when I bought my Macbook, I purchased a time capsule also. I have Comcast which provides my telephone service as well as my cab

  • Attachment in pld

    I am updating pld of purchase order.I want attach a document specifying certain conditions.This document should be issued time a po is created.How to attach this document ? Regards, Dilip Kumbhar

  • Picture sms in java

    hi can ne1 help me with jsms....in my code the PictureMessage constructor gives error.....it gives unknown class...i have imported the required packages but still i dunno what to do...... My target is to send a picture message as an sms..........

  • Windows external job user

    When running an external job on Oracle 10g in Windows, it seems that the external job username is no name at all. In the file which is kicked off by the scheduler job I put this line: echo "%username%"  >> %SI_HOME%\lib\imp_data.log which produces ju