I would like to know why when i write a text in a JtextArea with transparent background, the image from the frame starts to appear on the jtextarea background. on this link there is a print of my screen where the clouds are being copied from the frame.
http://postimg.org/image/rebtmcbwx/
My Code:
jTextArea1 = new javax.swing.JTextArea();
jTextArea1.setColumns(20);
jTextArea1.setRows(5);
jScrollPane1.setViewportView(jTextArea1);
jScrollPane1.setOpaque(false);
jTextArea1.setBackground(new java.awt.Color(255, 255, 255, 150));