Removing border from JButton

* This is a crosspost, hope you don't mind. The earlier post I made was in the wrong forum and in the wrong thread.. *
I'm trying to remove the border from a bunch of JButtons.
My code adds custom actions to a custom JToolbar. The code responsible for this looks like this:    JButton button = this.add(action);
    //button.setBorder(new EmptyBorder(1, 2, 1, 2));
    button.setBorder(null);I've tried both lines, and both work and don't work at the same time. In one panel it works but in five others it doesn't. The only difference I see between these two groups is that the panel that works uses a GroupLayout and the other panels use a BorderLayout.
Also, I'm trying to create an onMouseOver effect similar (well, exactely the same actually) as is used in Eclipse. When the users mouse hover over the button the button should be given a border, when it is not the border should be gone.
Any help on these issues would be appreciated,
Jurgen

This might also help if you want to make a button out of a Componet
package tjacobs.ui.drag;
import java.awt.Color;
import java.awt.Component;
import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JFrame;
import javax.swing.JPanel;
import tjacobs.ui.swing_ex.JLabel;
import tjacobs.ui.util.RandomColor;
public class Buttonize extends MouseAdapter {
     private Component c;
     private Action a;
     private static int sNumClicks = 2;
     private int numClicks;
     private boolean showClicks = false;
     private Buttonize(Component c, Action a) {
          this.c = c;
          this.a = a;
          numClicks = sNumClicks;
          c.addMouseListener(this);
      * Main interface to Buttonize. Makes a component double-clickable
      * @param c Component to listen for clicks on. Not null
      * @param a Action to be run when the click count is hit. Not null
      * @return
     public static Buttonize MakeButton(Component c, Action a) {
          if (c == null || a == null) throw new IllegalArgumentException("Invalid Parameters");
          Buttonize b = new Buttonize(c, a);
          return b;
     public void mouseClicked(MouseEvent me) {
          if (TEST) System.out.println("clicked");
          if (me.getClickCount() % numClicks == 0) {
               int modifiers = me.getModifiers() | me.getModifiersEx();
               //if (ev == null) {
                    //Object source, int id, String command, long when, int modifiers
               Component src = (me.getSource() instanceof Component) ? (Component)me.getSource() : c;
               ActionEvent ev = new ActionEvent(me.getSource(), me.getID(), src.getName(), me.getWhen(), modifiers);
               a.actionPerformed(ev);
     private static final boolean TEST = false;
     public void mousePressed(MouseEvent me) {
          if (TEST)
          System.out.println("pressed" + me.getPoint());
          if (showClicks) {
               Component c = me.getSource() instanceof Component ? (Component) me.getSource() : this.c;
               Graphics g = c.getGraphics();
               g.setXORMode(Color.BLACK);
               c.paint(g);
     public void mouseReleased(MouseEvent me) {
          if (TEST) System.out.println("released" + me.getPoint());
          if (showClicks) {
               Component c = me.getSource() instanceof Component ? (Component) me.getSource() : this.c;
               c.repaint();
     public void setClicks(int clicks) {
          numClicks = clicks;
     public int getClicks() {
          return numClicks;
     public static void setDefaultClicks(int clicks) {
          sNumClicks = clicks;
     public static int getDefaultClicks() {
          return sNumClicks;
     public void setShowClicks(boolean b) {
          showClicks = b;
     public boolean getShowClicks() {
          return showClicks;
     public static void main(String[] args) {
          // TODO Auto-generated method stub
          JLabel hic = new JLabel("Hic"), haec = new JLabel("Haec"), hoc = new JLabel("Hoc");
          Action a = new AbstractAction() {
               public void actionPerformed(ActionEvent ae) {
                    System.out.println(ae.getActionCommand());
                    RandomColor rc = new RandomColor();
                    Color c = rc.getRandomROYGBV();
                    ((JLabel)ae.getSource()).setForeground(c);
          JPanel jp = new JPanel(new FlowLayout());
          hic.setName("Hic");
          haec.setName("Haec");
          hoc.setName("Hoc");
          jp.add(hic);
          jp.add(haec);
          jp.add(hoc);
          MakeButton(hic, a);
          Buttonize b = MakeButton(haec, a);
          b.setShowClicks(true);
          //MakeButton(hoc, a);
          hoc.addMouseListener(b);
          JFrame jf = new JFrame("Buttonize Test");
          jf.setContentPane(jp);
          jf.setBounds(100,100,200,100);
          jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          jf.setVisible(true);
}

Similar Messages

  • Remove border from last item in ul, li?

    Hello! I am using this css style for a list.
    ul.listright { border-left:1px solid #EDEDED; padding-top:4px; }
    ul.listright li { border-bottom:1px solid #D9D9D9; margin:0 0 -1px; padding:1.1em 0; }
    I am trying to remove the border from the li on the bottom. I tried:
    ul.listright li last { border-bottom:medium none; }
    ..but that didn't do anything. What am I doing wrong?

    nemci7v wrote:
    Hello! I am using this css style for a list.
    ul.listright { border-left:1px solid #EDEDED; padding-top:4px; }
    ul.listright li { border-bottom:1px solid #D9D9D9; margin:0 0 -1px; padding:1.1em 0; }
    I am trying to remove the border from the li on the bottom. I tried:
    ul.listright li last { border-bottom:medium none; }
    ..but that didn't do anything. What am I doing wrong?
    In cases where you need to remove the border on one element its faster and simpler to just go into code view and use some inline css styling as below:
    <ul class="listright">
    <li>Some text</li>
    <li>Some text</li>
    <li style="border: none;">Some text</li>
    </ul>

  • Remove focus from JButton?

    I am starting a new thread related to my previous thread.
    I came to realize that when I call a game object from the GUI menu by clicking on "New Game" button, the focus is set to the button. I found it by using the method, if(newButton.hasFocus()).
    However, my problem is not yet finished. I tried game.requestFocus(); also.
    But still, the focus is not removed.
    Can n e one pls let me know if there is a way to remove focus from the damn button?
    Thanks.                         

    button.setFocusable( false );Will pevent the button from maintaining focus.

  • Removing Border from a JtextField

    Hi all
    how do i remove the border surrounding the JTExtfield in my applet (using jdk1.3)
    Thank You

    A brief browsing of the Java documentation (which I always keep close at hand) indicates that JComponent has the setBorder() method. A website mentioned in the setBorder part gives this example (I haven't tested it):
    nameOfTextField.setBorder(BorderFactory.createEmptyBorder());Here is the site I extracted it from:
    http://java.sun.com/docs/books/tutorial/uiswing/misc/border.html

  • Remove border from HTML portlet

    Hii,
    When i am adding HTML portlet then a border is coming automatically. How to remove this border.

    Hi,
    The Rendering of the Portlet depends on the Region too - you can have a look at the "Edit Defaults" ( the Pencil Icon ) link for the Region where the Portlet is located. You can uncheck the " Show Portlet Borders " ( or, even " Show Portlet Headers " ).
    Regards,
    Sandeep

  • Need to remove border from stock image...

    I am very very new to using Illustrator10 and I have a stock image that I bought online and am trying to make some adjustments to it.  I've been successful so far with my changes except for a thin black line border that was around the image when I opened it in Illustrator.  I can't even seem to click on it or highlight it at all and therefore I have no idea how to delete it.  Any help would be greatly appreciate! Thanks!

    The artwork has no printable border.
    What you are seeing is the artboard bounds. You can prove it to yourself by printing the document (print to PDF if you don't want to waste paper) or by changing the artboard size via File | Document Setup.
    The artwork does happen to have a rectangle that exactly coincides with the artboard size. It provides the taupish background. If you select it and look at the appearance palette, you'll see it has a fill but no stroke.
    {Beaten to the punch by Larry.}

  • How to remove the border from an AWT Component (specifically a ScrollPane)

    I've been trying to remove the border from an AWT ScrollPane, but having no luck.
    I've tried setting the bounds on the ScrollPane to get rid of the border:
    ScrollPane scrollPane = new ScrollPane();
    scrollPane.setBounds(-2, -2, getSize().width+4, getSize().height+4);
    I've also tried overwriting the paint method of the ScrollPane but it didn't draw anything:
    private class CustomScrollPane extends ScrollPane
         public void paint(Graphics p_g)
              super.paint(p_g);
              Graphics2D g2 = (Graphics2D)p_g.create();
              g2.setColor(Color.MAGENTA);     //tried magenta so I could easily see it
              g2.drawLine(0, 0, 0, getSize().width);
    Is there anything else I should try? (I wish AWT components had a setBorder method)

    Is there anything else I should try? (I wish AWT components had a setBorder method)Actually this probably isn't possible. One of the main drawbacks of AWT was that since everything is connected to peers, you can't actually draw over or customize the view of your AWT component.
    The only recommendation I might make would be that you could try creating Canvases around your ScrollPanel that draw over the border

  • Removing blue border from rollover image in cs6

    Have 14 sliced images. But only the images created for rollover have the blue border when I reveiw in the browser. Not sure how to remove them in Dreamweaver CS6
    Message was edited by: MrBotis

    Just to clarify, to remove borders from linked images, use this in your CSS:
    a img }
    border:none;
    Ouline serves a different purpose.  It's usually dotted and displays when the link is in focus, as when people tab through links with their keyboard.
    Jon, I know you know this. 
    Nancy O.

  • Remove red border from required fields

    Is there a way to remove the red border from required fields.?

    No, not the same error message that Acrobat issues. You'll have to do your own using JavaScript. The script would check each of the required fields and alert the user if anything was wrong, but you'd have to set up your own "Print" button on the form and convince your users to use it. But they can always choose not to use it and orint without going through the checking process.
    Even though there is a Document Will Print event that you can attach code to, there is no way to prevent printing in the event.

  • Removing keyword from multiple images at the same time

    None of the documented methods seem to work for me.
    1     Select all the images. Go to Metadata > Remove Keyword [my keyword] - the keyword is only removed from the image that is selected in the batch - i.e the one that has the yellow border round it to show it's the active image.
    2     Select all the images, enter [my keyword] in the Add Keyword field when Keyword Controls is visible and press Shift + Enter - does the same thing as 1 above (removes it from the active image only).
    3     Select all the images, Shift Click on the keyword that I have in my Keyword Controls in the Control Bar - does the same things as 1 above.
    So all these methods, which are supposed to work, do not work for me. The removal of the keyword is only applied to the image that has the yellow border showing it to be the currently active image in the selected batch - the remaining selected imaged still retain the keyword. I can remove it "one at a a time" but it would be great if I could find a solution as to why this isn't working.
    Any ideas?
    If it helps, I'm running Aperture 3.1.3 in OS X 10.6.8.
    thanks
    Alan

    Based on the frequency with which this trips up users, the Aperture team is going to have to add a much stronger visual indication that "Primary Only" is active.  Marching ants, anyone?  Or a pink selection marquee?
    At least in the Viewer when multiple Images are selected the thin white selection marquee is dropped when Primary Only is active.  There is no such change in the Browser.

  • Add and remove columns from JTable

    Help me please!
    A try to remove column from JTable. It's removed, but when I try to add column in table, then I get all old (removed early) columns + new column....
    I completely confused with it.....
    Here is my code for remove column:
    class DelC implements ActionListener
              public void actionPerformed (ActionEvent e )
                   int [] HowManyColDelete = table.getSelectedColumns();
                   if (HowManyColDelete.length !=0)
                        TableColumnModel tableCModel = table.getColumnModel();
                        for (int i = HowManyColDelete.length-1; i>-1; i--)
                             table.getColumnModel().removeColumn (tableCModel.getColumn (HowManyColDelete [ i ]));
                   else
                          JOptionPane.showMessageDialog(JOptionPane.getRootFrame(), "Column is not selected!");
         }

    It's little ex for me, I just try understand clearly how it's work (table models i mean). Here is code. All action with tables take place through menu items.
    My brain is boiled, I've try a lot of variants of code, but did't get right result :((
    It's code represent problem, which I've describe above. If you'll try remove column and then add it again, it will be ma-a-a-any colunms...
    I understand, that my code just hide columns, not delete from table model....
    But now I have not any decision of my problem...
    Thanks a lot for any help. :)
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.table.*;
    import java.awt.event.*;
    import javax.swing.table.DefaultTableModel;
    class JTableF extends JFrame
         Object [] [] data = new Object [0] [2];
         JTable table;
         DefaultTableModel model;
         String [] columnNames = {"1", "2"};
         TableColumnModel cm;
         JTableF()
              super("Table features");
              setDefaultLookAndFeelDecorated( true );
              setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
              JMenuBar MBar = new JMenuBar();
              JMenu [] menus =  {new JMenu("A"), new JMenu("B")};
              JMenuItem [] menu1 =  {new JMenuItem("Add row"), new JMenuItem("Delete row", 'D'),  new JMenuItem("Add column"), new JMenuItem("Delete column")};
              menu1 [ 0 ].addActionListener(new AddL());
              menu1 [ 1 ].addActionListener(new DelL());
              menu1 [ 2 ].addActionListener(new AddC());
              menu1 [ 3 ].addActionListener(new DelC());
              for (int i=0; i<menu1.length; i++)
                   menus [ 0 ].add( menu1 [ i ]);
              for (int i=0; i<menus.length; i++)
                   MBar.add(menus );
              JPanel panel = new JPanel ();
              model = new DefaultTableModel( data, columnNames );
              table = new JTable (model);
              cm = table.getColumnModel();
              panel.add (new JScrollPane(table));
              JButton b = new JButton ("Add row button");
              b.addActionListener(new AddL());
              panel.add (b);
              setJMenuBar (MBar);
              getContentPane().add(panel);
              pack();
              setLocationRelativeTo (null);
              setVisible (true);
         class DelC implements ActionListener
              public void actionPerformed (ActionEvent e )
                   int [] HowManyColDelete = table.getSelectedColumns();
                   if (HowManyColDelete.length !=0)
                        TableColumnModel tableCModel = table.getColumnModel();
                        for (int i = HowManyColDelete.length-1; i>-1; i--)
                             int vizibleCol = table.convertColumnIndexToView(HowManyColDelete [ i ]);
                             tableCModel.removeColumn (tableCModel.getColumn (vizibleCol));
                        //cm = tableCModel;
                   else
                        JOptionPane.showMessageDialog(JOptionPane.getRootFrame(), "Column is not selected!");
         class AddC implements ActionListener
              public void actionPerformed (ActionEvent e)
                   //table.setColumnModel(cm);
                   Object NewColumnName = new String();
                   NewColumnName = JOptionPane.showInputDialog ("Input new column name", "Here");
                   int i = model.getRowCount();
                   int j = model.getColumnCount();
                   Object [] newData = new Object [ i ];
                   model.addColumn ( NewColumnName, newData);
         class AddL implements ActionListener
              public void actionPerformed (ActionEvent e)
                   int i = model.getColumnCount();
                   Object [] Row = new Object [ i ];
                   model.addRow ( Row );
         class DelL implements ActionListener
              public void actionPerformed (ActionEvent e)
                   int [] HowManyRowsDelete = table.getSelectedRows();
                   if (HowManyRowsDelete.length !=0)
                        for (int k = HowManyRowsDelete.length-1; k>-1; k--)
                             model.removeRow (HowManyRowsDelete[k]);
                   else
                        JOptionPane.showMessageDialog(JOptionPane.getRootFrame(), "Row is not selected!");
         public static void main (String [] args)
              javax.swing.SwingUtilities.invokeLater(new Runnable()
                   public void run()
                        JTableF inst = new JTableF();

  • Class inhertis from JButton, but button is not visible

    Hi!
    I'm having a class that inherits JButton. The idea was to give the button additional parameters, so it inherits from JButton to have all the attributes from JButton... But the problem is, that the Buttons are only visible when I touch them with the mouse. When I move the window they are invisible again...
    Does anybody know why? Thanks for your help!
    P.S Sorry for my bad english....

    Okay, thanks for that hint!
    Here is the class for the gui:
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.BorderFactory;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    public class Temp extends JFrame{
         private static final long serialVersionUID = 5945597724189252185L;
         private JMenuItem closeItem = null;
         private JMenuItem newItem = null;
         private JPanel mainPanel = null;
         private JLabel startImage = null;
         private MineFieldButton[][] mines = null;
         public Temp(){
              this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
              addMenu();
              this.add(getMainPanel());
              this.pack();
         private JPanel getMainPanel(){
              if (mainPanel == null){
                   mainPanel = new JPanel();
                   if (mines == null)
                        mainPanel.add(getStartImage());
                   else{
                        mainPanel.setLayout(new GridBagLayout());
                        GridBagConstraints c = new GridBagConstraints();
                        c.fill = GridBagConstraints.HORIZONTAL;
                        c.ipady = 20;
                        c.ipadx = 20;
                        for (int x=0;x<mines.length;x++){
                             for (int y=0;y<mines[x].length;y++){
                                  c.gridx = x;
                                  c.gridy = y;
                                  mainPanel.add(mines[x][y],c);
              return mainPanel;
         private JLabel getStartImage(){
              if(startImage == null){
                   startImage = new JLabel();
              return startImage;
         private void addMenu(){
              JMenuBar menuBar = new JMenuBar();
              JMenu menu = new JMenu("File");
              menu.add(getNewItem());
              menu.add(getCloseItem());
              menuBar.add(menu);
              this.setJMenuBar(menuBar);
         private JMenuItem getNewItem(){
              if (newItem == null){
                   newItem = new JMenuItem("New");
                   newItem.addActionListener(new ActionListener(){
                        public void actionPerformed(ActionEvent e) {
                             createMines();
              return newItem;
         private JMenuItem getCloseItem(){
              if (closeItem == null){
                   closeItem = new JMenuItem("Close");
                   closeItem.addActionListener(new ActionListener(){
                        public void actionPerformed(ActionEvent e) {
                             System.exit(0);
              return closeItem;
         public void showGUI(){
              this.setVisible(true);
         private void createMines(){
              initMinesGUI();
              this.remove(getMainPanel());
              mainPanel = null;
              this.add(getMainPanel());
              this.pack();
         private void initMinesGUI(){
              mines  = new MineFieldButton[10][10];
              for (int x=0;x<mines.length;x++){
                   for (int y=0;y<mines[x].length;y++){
                        mines[x][y] = new MineFieldButton();
                        mines[x][y].setBorder(BorderFactory.createRaisedBevelBorder());
                        mines[x][y].setX(x);
                        mines[x][y].setY(y);
                        mines[x][y].setNumber(x*y);
    }And here for the class that inherits JButton "MineFieldButton":
    import javax.swing.JButton;
    public class MineFieldButton extends JButton{
         private static final long serialVersionUID = -1020769129018597011L;
         private int number = 0;
         private int x;
         private int y;
         public int getNumber() {
              return number;
         public void setNumber(int number) {
              this.number = number;
         public int getX() {
              return x;
         public void setX(int x) {
              this.x = x;
         public int getY() {
              return y;
         public void setY(int y) {
              this.y = y;
    }I hope that you can find my error.... And that this is a SSCCE :-)
    Thanks!

  • Remove panel from frame

    CONTINUATION OF 1St MAIL
    public JScrollPane ThumbnailGui(Vector vSeriesNo,Vector[] vImageNo,Vector[] LoadedFilenames)
              this.parent=parent;
              this.vSeriesNo=vSeriesNo;
              this.vImageNo=vImageNo;
              this.LoadedFilenames=LoadedFilenames;
                   try{
              MainPanel=new JPanel();
              MainPanel.setLayout(new BoxLayout(MainPanel,BoxLayout.Y_AXIS));
              LineBorder lineborder=new LineBorder(Color.red,2,true);
              MainPanel.setBorder(lineborder);     
              int LoadedFilenamesSize=LoadedFilenames[0].size();
              int LoadedSeriesSize=vSeriesNo.size();
              System.out.println("*******Im under Thumbnial GUI");
              Thumbnail=new JButton[LoadedSeriesSize][LoadedFilenamesSize];     
              for(int count=0;count<1;count++)
                   System.out.println("Vector creation");
                   vImageNo1[count]=new Vector();
                   LoadedFilenames1[count]=new Vector();
                   for(int j=0;j<vSeriesNo.size();j++)
                        for(int i=0;i<vImageNo[j].size();i++)
                             str=LoadedFilenames[j].elementAt(i).toString().replace('~','\\');
                             str=str.replace(".dcm",".jpg");
                             Icon ic=new ImageIcon(str);
                             Thumbnail[j]=new JButton(ic);
                             Thumbnail[j][i].addActionListener(new ThumbnailAction());
                             MainPanel.add(Thumbnail[j][i]);
                        }//inner for
                   }//outer for
                                       //     MainPanel.setVisible(true);
                   heightScrollbar = new JScrollPane(MainPanel);
              heightScrollbar.setName("height");
                   heightScrollbar.setVisible(true);
                   MainPanel.updateUI();
                   heightScrollbar.updateUI();          
              }catch(Exception e){
                   e.printStackTrace();
                   return heightScrollbar;
         }//ThumbnailGui()
         public void removePanel()
         public void loadimage()
    class ThumbnailAction implements ActionListener
              public void actionPerformed(ActionEvent ae)
                   JButton ThumbnailEvent =(JButton)ae.getSource();          
                   String Series="",Imageno="",FilePath="";
                   vSeriesNo1.removeAllElements();                    
                   for(int count=0;count<1;count++)
                   vImageNo1[count].removeAllElements();
                   LoadedFilenames1[count].removeAllElements();
                                  System.out.println("*******Im under Thumbnial Action Listener");
              for(int j=0;j<vSeriesNo.size();j++)
                        for(int i=0;i<vImageNo[j].size();i++)
                             if(ThumbnailEvent==Thumbnail[j][i])
                                                 //Properties dicomheaderdetails = (Properties)parent.htHeaderData.get(vSeriesNo.elementAt(j)+"+"+i);
                                            try
                                                      FilePath=LoadedFilenames[j].elementAt(i).toString().replace('~','\\');
                                                      System.out.println("File name is :"+FilePath);
                                                      Imageno = vImageNo[j].elementAt(i).toString();
                                                      System.out.println("Thumbnail Image Number is : "+Imageno);                                              
                                                      Series = vSeriesNo.elementAt(j).toString();
                                                      System.out.println("Thumbnail Series Number is : "+Series);                              
                                                 }catch (Exception e)
                                                           e.printStackTrace();
                        }//inner for
                   }//outer for          
              vSeriesNo1.addElement(Series);
              vImageNo1[0].addElement(Imageno);
              LoadedFilenames1[0].addElement(FilePath);
              parent.imageLoader = new ImageLoader(parent,vSeriesNo1,vImageNo1,LoadedFilenames1,false,1);          
         }//class

    If you want to add/remove components from a panel then the code should be something like:
    panel.add( something );
    panel.revalidate();
    panel.repaint();
    If you want to replace an entire panel then you should probably be using a [Card Layout|http://java.sun.com/docs/books/tutorial/uiswing/layout/card.html].

  • Method or property to remove decorations from a control

    Hi folk,
    by program, I would like to remove (to make transparent) some decorations of a control (the 3d border of an Intensity Graph) before to save it on a png/jpg file.
    Do you know how to perform that task by method or property?
    Regard,
    Asper

    Dear Ben,
    thanks for your workaround suggestion.
    I already use the Get Image node, but I believe that this is not the right way. I would like to preserve all features like scales, scale labels etc. and strip out only the 3d border and other decorations.
    "slice and dice" the image is not possible because it would cut parts of scales. Now I am using the "Create Mask.vi" to delete the color that is associated with the border. This approach works not very well too.
    The 3d border has a color gradient and it is necessary to delete all colors associated to the 3d border gradient.
    Further the 3d border changes size and number of gradient colors with the zooming of the windows. Not last, the size of plot area changes with variation of the minimum and maximum of scale limits.
    Programmaticly is not so clear which points should be selected to detect the colors to mask.
    Any method or property to remove decorations from a control?
    Asper

  • How do i remove money from 1 itunes account to another ?

    How Do I Remove Money From One Itunes Account To Another ?

    See:  More Like This    To the right -->

Maybe you are looking for

  • AS3 Code problem

    I wrote this code: match = new Array(); matchHoriz = new Array(); row = 0; while (row < gridRows)       col = 0;      while (col < gridCols)           match = getHorizMatch (row, col);           if (match.length > 1)                match.unshift(grid

  • New Library - Erase and Sync??!!

    OK, I've searched this site and found a lot of opinions, it seems, but I'm looking for a definitive answer, please. My girlfriend has an iPhone that was once registered to her ex-husband's computer/iTunes.  She still has the iPhone, but she has a new

  • Can I clone an intel based iMac to a powerbook G4

    I have an intel iMac (2006) running Tiger, and have just procured a powerbook G4. Is there a way to clone the iMac onto the powerbook. I do;t have much knowledge of the differences between the intel chips and powerpc chips as to whether they cause is

  • Updating schedule ship date and arrival date in SO

    Hello all, I want to update the sales orderline based on supplier PO changes. Can anyone let me know if I can use process order API to update the schedule ship date and arrival date.I have created a seperate procedure inorder to achieve the same whic

  • How to view ear files?

    we have a third party ear file deployed. I want to find out its contents such as the app descriptors web.xml, weblogic.xml , jar files and etc. How can I view these? TIA