What you could do, is in the set up, when you load your images, in the For... Next loop ( assuming you are using that ) Load the image, paste it to the screen, set the current bitmap to 0 ( set it to the screen ) then use the Text command to put the text ontop of the image, then use the get image command, and select the area where the image is, then make that the sprite, and the number is on there permanently.
eg;
For x = 1 To 10
Load Image "circle" + Str$(x) + ".bmp",x
Paste Image 1,0,0
Text 10,10,Str$(x)
Set Current Bitmap 0
Get Image (x + 10),0,0,30,30
Sprite x,200,200,(x + 10)
Next x
Then, when you don't want the text, just rem the appropriate lines!
Hope I Helped...

Team EOD :: Programmer/Logical Engineer/All-Round Nice Guy