try
	  	{
		  im4=Image.createImage("/images/image4.png");
		   int hauteur = fenetre5.getHeight();
			  int longueur= fenetre5.getWidth();
			  Image im4_2=redimImage(im4,longueur, hauteur);
		  imBouton4 = new ImageItem (null, im4_2, ImageItem.LAYOUT_CENTER, null, ImageItem.BUTTON);  
		  		  
	  	}
	  catch(java.io.IOException e)
	  {
		  System.err.println("Impossible de trouver ou lire l'image"+e);
	  }
	  
	  	imCommand4 = new Command("Button", Command.SCREEN, 1);    	  	
                          imBouton4.setDefaultCommand (imCommand4);   	  	             imBouton4.setItemCommandListener (this); 
	  	 	  	
	  	fenetre5.append(imBouton4);
			
		
 
	
Partager