I wrote an application. I want to have an image to show when i click the the icon for this application. This image will show 10 seconds.........How can this be achived?
--------------------------------------------------------
i found
from appuifw import *
import icon_image, e32
app.body = c = Canvas()
# choose a bitmap from plenty inside mbm (multi-bitmap)
icon = icon_image('z:\\system\\data\\avkon.mbm', 28)
c.blit(icon)
e32.ao_sleep(10) # 10 sec to end program
--------------------------------------------------
Is it what i want?If yes,,,where i can find the module incon_image.........?By the way,, where i can find Canvas().Thanks a lot...