This site requires JavaScript, please enable it in your browser!
Greenfoot
Username
Password
Remember Me?
Sign Up, Lost Password
Activity
About
Documentation
Download
Discuss
Scenarios
Discussions
You need to login to take part
Current Discussions
Keep getting error :/
By footpickle, with 9 replies.
Last reply by footpickle, over 6 years ago:
Turns out I'm an idiot. I changed the "Actor actor = (actor)" to "Plane2 plane2 = (plane2)" without realizing that wasn't how it worked. Thanks for your help anyway!
If Statement Help
By DaRafster, with 5 replies.
Last reply by danpost, over 6 years ago:
DaRafster wrote...
Going into the code itself and changing the values. Sorry if I'm not being clear enough
Then, what do you need an
if
statement for? Just build the world based on their values. The width of the world divided by the width of a white key should give the number of white keys to add. You can add the black keys up to, but not more right than the last white key. Using for loops to add the keys into the world would be the way to go.
why doesn't this work...
By Cool, with 3 replies.
Last reply by danpost, over 6 years ago:
Try using the
Actor
instance method
getWorld
on
World
instance methods like
getObjects
and
removeObjects
. Like: <Code Omitted>
how to convert greenfoot project to exe file?
By Rafiqi_Fariz, with 13 replies.
Last reply by Rafiqi_Fariz, over 6 years ago:
Thanks for your advice
Ping Pong Game
By _kr_696, with 19 replies.
Last reply by danpost, over 6 years ago:
_kr_696 wrote...
ok so if i want to update the score i would have to call the ball class in the world class, right?
No. You would call a method in your
MyWorld
class from the
Ball
class when scoring. Calling the method to update the scoreboard can be done from either class.
Change profile name.
By suzbo, with 1 reply.
Replied to by Super_Hippo, over 6 years ago:
Unfortunately, you can’t.
Is there a way to convert String input to Integer
By egc2505, with 1 reply.
Replied to by Super_Hippo, over 6 years ago:
You can use the “Integer.valueOf()” method. It takes a String as a parameter and converts it to an int (or gives you an error when the string isn’t a number).
Map Game PLEASE HELP
By samuelshao, with 1 reply.
Replied to by danpost, over 6 years ago:
The resource clicking is not easy -- but would be considered easy compared to changing the color of individual countries. I think this may be too advanced for a beginner to try and tackle. However, if you still would like to proceed, I would suggest that you start by creating images of the individual countries. Maybe for each, snip a small rectangle containing the country, the fill unwanted areas (parts of the image that do not represent part of the country) with black; then change all black to transparent. What you end up with is images whose non-transparent pixels exactly represent the c
Help With Creating Several Levels and Creating A counter that continues in Different Worlds
By Happycrusher764, with 9 replies.
Last reply by danpost, over 6 years ago:
Happycrusher764 wrote...
@danpost it didnt work. Came with error message "cannot reference counter before supertype constructor has been called". What does this mean?
Alright -- try this for my line 15: <Code Omitted>
Assistance In Generalizing Code - Method
By DaRafster, with 5 replies.
Last reply by DaRafster, over 6 years ago:
danpost wrote...
Then add those parameters to the method signature and use them: <Code Omitted>
Thank you will give it a shot!
Mülltrennung/Wasteseparation
By Cool, with 11 replies.
Last reply by Cool, over 6 years ago:
I uploaded my Scenario here...
It Works!!! Tank you all so much for your help! <3
showText
By MrBradley, with 2 replies.
Last reply by danpost, over 6 years ago:
Super_Hippo wrote...
No, the showText method is only a very simple way to show text. For more advanced options, you have to draw the text with any font and color on a GreenfootImage.
... and use an
Actor
object to display it.
Location of actor
By tbag, with 1 reply.
Replied to by danpost, over 6 years ago:
tbag wrote...
How do I make an actor(A) appear where another actor(B) is located at?? and by appear I meant at the preset location of actor B and actor A must move along with actor B unless I press another key to release it.
Add a field to ActorB to hold an ActorA object: <Code Omitted>
How to reset the food when the eater was died?
By Rafiqi_Fariz, with 4 replies.
Last reply by Rafiqi_Fariz, over 6 years ago:
yeah it is working. Thank you very much danpost :)
if counter
By TakedaYeet, with 2 replies.
Last reply by danpost, over 6 years ago:
TakedaYeet wrote...
please help
Need Counter class codes (at minimum).
146
147
148
149
150
151
152
X