This site requires JavaScript, please enable it in your browser!
Greenfoot back

Comments for Text Editor

Return to Text Editor

A new version of this scenario was uploaded on Fri Aug 19 21:16:13 UTC 2011 New Pic
kiarockskiarocks

2011/8/19

AND!!!!!-i know about the bug._.
A new version of this scenario was uploaded on Fri Aug 19 21:27:08 UTC 2011 Fixed Bug
Locomotion15Locomotion15

2011/8/19

Shift makes s But really cool. I like this!
kiarockskiarocks

2011/8/19

yea, shift is not technically a supported key.
A new version of this scenario was uploaded on Fri Aug 19 22:08:53 UTC 2011 Fixed Bug-hopefully
kiarockskiarocks

2011/8/19

yay-shift makes no "s"
A new version of this scenario was uploaded on Sat Aug 20 14:30:05 UTC 2011 Source Code!
dothebonedothebone

2011/8/20

...and don't forget to check http://greenfootgallery.org/users/807
MathManiacMathManiac

2011/11/29

Cool! Heh, I made one! however it opens a new window sonce it's based off reg. Java! PS: You're in Fresh Programming!
kiarockskiarocks

2011/11/29

I know. Where is yours?
MathManiacMathManiac

2011/11/30

Look at my profile.
MathManiacMathManiac

2012/8/18

All right, I need some help from you for a Fresh Programming Greenfoot Scenario. Devise a class that finds all the classes that implement interface A and creates an object of each class.
MathManiacMathManiac

2012/8/23

That Fresh Programming Weebly Website, Barely Interactable. I made a new one here: http://freshprogramming.enjin.com/ It's an enjin one, and I'll see to make it home.
MathManiacMathManiac

2012/8/23

Actually, I just realized that the Website has a Forum and Chat, but requires a new account. Enjin websites, also needs a new account, but Enjin accounts can join any enjin forum.
CockyCocky

2012/8/26

nicht schlecht
avocassoavocasso

2013/1/28

Hey Guys, something different form your discussion. Can someone help me here?I have this: import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class MyDog here. * * @author (your name) * @version (a version number or a date) */ public class MyDog extends Dog { private String image = "dog.png"; private int energy = 100; private boolean amSleepy = false; private int countSteps; /** * Act - do whatever the MyDog wants to do. This method is called whenever * the 'Act' or 'Run' button gets pressed in the environment. */ public void act() { //All code relating to the player-controlled dog goes here walkMyDog(); } } /** * This dog gets sleepy when its energy hits 20 or lower. */ public boolean isSleepy(){ if ( energy <= 20 ) { amSleepy = true; } else { amSleepy = false; } return amSleepy; } Now every time I try to compile this, I have this error displayed: class, interface, or enum expected with emphasis in the source code highlighting this whole method in yellow: ' public boolean isSleepy() ' , also marking a redline before |boolean. What am I doing wrong, please tell me?