@robertobruno
You can change the font by editing this
var tf:TextFormat = new TextFormat();
.
.
.
tf.font = “Arial”; // <- change this
var stf:TextFormat = new TextFormat();
.
.
.
stf.font = “Arial”; // <- also this
If you want to embed the fonts
-add the font to the library and do a linkage and export for Actionscript
-under
var categoryText:TextField = createTextField(0, 0, 100, 20);
categoryText.embedFonts = true; // <- add this
var dText:TextField = createTextField(0, 0, mainMC.stage.stageWidth, 20); //description text for the selected image
dText.embedFonts = true; // <- add this too
to hide the thumbs
put inside the the last line of the allCompleteHandler handler function
tContainer.visible = false; // add this
Lastly, size of the images depend on what you put inside the xml file
OR
If your asking is about the thumbs, these are the values you will change
var tWidth:Number = 50; //width of thumbs
var tHeight:Number = 50; //height of thumbs

Posted 10 days ago