in flash game , while in the menu we use to selct d option 4m menu and when button is pressesd it move to corresponding page
but in j2me
how in splash of j2me i can implement d same thing , i mean do i need diffrent screen shot of diffrent menu scene
suppose , foucs is on play optin so do i need seperate screen shot of play foucus . or one can do direct at runtime , ie whenevr user press up key so foucs shift to the corresponding optoin , or i need to call dat screen shot each time .
I think you are speaking about submenu options. You need to construct submenu in the same canvas. You need to keep track of which menu you are in. And you need to show an array of string with fonts which represents the corresponding menu.
and i nedd dat splash is ther 4 20sec and dan it will automaticaaly move to game page , how dis can be done ,
in flash lite its very easy , but m feeling truble in j2me
In J2me you need to get the time when the game starts using System.currentmilliseconds() function and then keep looking if the different of current time and started time is greater than 2000 milliseconds and change the splash screen. 2000 milliseconds represent 2 second.