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

Comments for TextImage Support Class

Return to TextImage Support Class

A new version of this scenario was uploaded on Wed Aug 13 15:51:53 UTC 2014
A new version of this scenario was uploaded on Wed Aug 13 22:48:05 UTC 2014
A new version of this scenario was uploaded on Wed Aug 13 22:51:13 UTC 2014
A new version of this scenario was uploaded on Thu Aug 14 01:55:39 UTC 2014
A new version of this scenario was uploaded on Thu Aug 14 01:55:53 UTC 2014
A new version of this scenario was uploaded on Thu Aug 14 14:58:13 UTC 2014
edparrishedparrish

2014/8/14

Nice idea to extend GreenfootImage to add more text options! I also liked your scrolling world.
A new version of this scenario was uploaded on Fri Aug 15 03:24:10 UTC 2014 Yes. An abundance of fonts.
A new version of this scenario was uploaded on Fri Aug 15 04:22:35 UTC 2014
A new version of this scenario was uploaded on Fri Aug 15 04:30:30 UTC 2014
A new version of this scenario was uploaded on Wed Aug 20 19:11:01 UTC 2014
A new version of this scenario was uploaded on Sat Aug 23 03:27:27 UTC 2014
A new version of this scenario was uploaded on Sat Aug 23 03:27:34 UTC 2014
DalvengyrDalvengyr

2014/12/4

This is just perfect. Anyway, if I have a custom font downloaded from somewhere, how can use that font for a text? Where should I put it (what folder)? Or user should install that font first?
danpostdanpost

2014/12/4

@Dalvengyr, I spent some time looking for a scenario a know had a 'True type font' file in a 'fonts' folder within the scenario folder. It also had a FontLoader class with it. I was hoping to share that with you, but was having trouble finding that scenario on the site (it may have been removed).
vessaliuzzvessaliuzz

2015/7/1

private void createCounters() { boardLabel = new Text("BOARD " + board); addObject (boardLabel, 670, 120); tryLabel = new Text("Nyawa: " + tries); addObject (tryLabel, 670, 150); rollsLabel = new Text("Kesempatan : " + rolls); addObject (rollsLabel, 670, 200); scoreLabel = new Text("Score: " + score + " "); addObject (scoreLabel, 670, 230); } i tried to change Text into TextImage, but error. so what should i do, n what should i write on the Board class to make it bold
A new version of this scenario was uploaded on 2017-01-22 09:22:54 UTC Fixed some constructorss missing default values.
Nosson1459Nosson1459

2017/2/16

With the listFonts() method in only shows the last 45 fonts that I have. I made my own method in the class which saves the fonts to a text file and it shows ALL my fonts.
Nosson1459Nosson1459

2017/2/16

I just saw "NOTE: DO NOT MODIFY THIS CLASS -- except for the five static 'default' fields in the modifiable section below fields.". But I technically could edit it, just maybe before I do too much testing I should copy it into the Greenfoot folder mentioned above (I also just saw that).
Nosson1459Nosson1459

2017/2/16

"Copy the TextImage.JAVA file from the project folder to your 'Greenfoot/lib/greenfoot/common' folder to allow easy addition into your scenarios using the 'Edit>Import class...' option from the menubar." Why not the CLASS file, that way it will be there but you won't see it in the Greenfoot sidebar? (But I guess then it might not show up in the import class list, I don't know much about it.)
danpostdanpost

2017/2/16

As far as the number of fonts showing up -- you probably have the terminal set to limited output. On the terminal frame menubar, go to 'options>Unlimited buffering'.
Nosson1459Nosson1459

2017/2/17

Thanks for the help.
A new version of this scenario was uploaded on 2020-11-25 16:51:26 UTC
tszsltszsl

2022/2/14

Is there a version which runs embed? I always get an reference error
danpostdanpost

2022/2/14

The class can now only be used locally (not on a site). For help on error, create a discussion thread. Show class of code where error is located and indicate what error you are getting and at which line it occurs.