Uploader Comments (MrJavaHelp)
All Comments (16)
-
I like how you breathe directly into the microphone. It gives definition to your voice.
-
@MrJavaHelp wer can i get this tutoriaL?...
u have tutoriaLs in net beans?.
-
Problem I found: Sometimes when you "Click" and you have moved the mouse during the "Click" the dot will not appear. Simply changing mouseClicked(MouseEvent e) to mouseReleased(MouseEvent e) fixed this...in case anyone else had this problem..
-
draw is basically an extended JPanel class here right?
-
thanks a lot!
-
thanks!!!
-
hey, when i click mouse, the new dot appears but the old one doesnt dissapear. whats the problem?
-
@MrJavaHelp Just what I was about to ask but now my first click spawns another menu across the top of my window...any ideas?
-
How can you put this all in 1 class?
-
Firstly, thanks so much for these videos. You've helped me to no end. But could you possibly tell me the name of the program do you used to record this video?
Hi quick question, but it would be really nice if you can help -
What do I have to change, or add if I want to just keep on adding these little dots (as opposed to changing the position of the same dot), every time the mouse is clicked?
sarovarc 2 years ago
remove line 14, super.paintComponent(g); in the paintComponent method in the "draw" class, and it will only add to the canvas every time the paint method is called instead of redrawing everything. Therefore, you can add circles to the canvas every time instead of drawing a new circle each time.
Regards
-MrJavaHelp
MrJavaHelp 2 years ago