@GreenHouse, if you are trying to get the image of a user on the site, use the following:
[code]GreenfootImage userImage;
if (UserInfo.isStorageAvailable())
{
UserInfo ui = UserInfo.getUserInfo():
if (ui != null) userImage = ui.getUserImage();
}
if (userImage == null)
{
// create a dummy image here
}[/code]
UserInfo.getUserImage() ends up in GreenfootUtil.getUserImage(), so it will be the same...
I need this to get the image from a user; who is not the user who is running this.
But the game still crashes on tab 'famous' and 'editor' if the user is logged in; i dont know why...
It works in standalone.
2013/9/16
2013/9/16