Posts by Diogo Dio Pinto • 36 points
2 posts
-
0
votes3
answers99
viewsA: My code does not recognize the SCRIPT
Configure Jquery to load as soon as the document is ready, as suggested by Amadeu Junior: <script type="text/javascript"> /** * $(function()), $(document).ready(function() ou *…
-
2
votes1
answer134
viewsA: Bufferedimage does not appear on the screen
You are creating a new instance of the Graphics2d type, when you should actually get it through one provided by the implementation. How? Through the paintComponent behavior(); Note, however, that…