|
|
Bitmap text
Added on 1/29/2004
|
Compatibilities:
|
This item has not yet been rated
|
(sorry for bad english)
I have seen a lot of tricks to make bitmap font, here is another way :
on startmovie
fld = new(#text)
fld.antialias = true
fld.fontSize = 3
temp = new(#bitmap)
fld.text = "Bitmap Text !!"
temp.picture = fld.picture
(the stage).image.copypixels(temp.image, (the stage).image.rect, temp.image.rect)
erase(fld)
erase(temp)
end
|
|