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

2012/1/11

Needs help, pretty new here.

andylcox andylcox

2012/1/11

#
OK so i'm working on the coding for my world and i keep getting a error that says cannot find symbol and it highlights populate(); what should i do??
darkmist255 darkmist255

2012/1/11

#
That means it doesn't know what to do when you say "populate()". Do you have a method written for populate()? example: private void populate() { (what to do....) } I can tell detail more if you want :D! It's an important part of coding.
mjrb4 mjrb4

2012/1/11

#
We'd need to see your code for certain - but the above advice is a common cause! If you have declared a populate() method then check it's the same case (Java is case sensitive) and check your curly brackets are all in the right place which can also sometimes cause that error.
You need to login to post a reply.