Marketing name used by Microsoft since about 2000 for [Windows/CE], which runs on little handheld computers ([PDA]s) with small screens, e.g. [iPAQ] or [Yakumo Alpha]. To port a Tk app to a PocketPC, consider that the screen is only 240x320 pixels, of which the top menu bar and at least the bottom right corner are not at the app's disposition. As an example for porting, here is code with which [MPJ] adapted the code in [Chess in Tcl] to a HP Jornada: ### Code to look better on a PocketPC wm geometry . 240x268+0+1 . config -menu [menu .m] .m add casc -label Game -menu [menu .m.game -tearoff 0] .m.game add comm -label Undo -comm {game undo; game drawSetup .c} .m.game add comm -label Reset -comm {game reset; game drawSetup .c} .m.game add comm -label Flip -comm {game flipSides .c} .m.game add separator .m.game add comm -label Exit -comm exit game drawBoard .c -color {blue tan3} [http://mini.net/files/ChessOnJornada.jpg] ---- To produce screen shots see [how do people produce the PocketPC screenshots] on the Wiki. [MNO] Thanks for the suggestion - it works very well for me too. Now I have a further question: I notice that the above code and the code for iFile 1.1 (and probably tkcon 2.3 but I haven't checked) include menus and the screenshot above clearly shows the menu appearing in the bottom left. This, for some reason, is not working for me. I am using the 8.3.4 binaries as posted on the [Windows/CE] page and iFile 1.1 from its page (as well as tkcon 2.3 downloaded elsewhere). I ran a quick test in tkcon, doing package require Tk . config -menu [menu .m] .m.game add comm -label Exit -comm exit but I still don't see a menu anywhere even when activating (i.e. bringing to the front) the . window. Is anybody else using the 8.3.4 binaries but seeing the menus? (i.e. have I messed up something in my installation or is this behaviour common to everybody?) ''Ahh - I just re-read the README in that distribution, which has "Menus don't work correctly" as one of the TO-DO items.'' Any idea when/if menus will be fixed in the 8.3.4 distro? [MPJ] Rainer's version 8.4a does file menu and menu buttons correctly. I'm sure [TclGuy] will get his version working soon. [MNO] yes - I don't doubt it too :) I've also noticed another piece of behaviour which is perhaps specific to this 8.3.4 version. In e.g. iRead, the open file dialog box opens up underneath the main window and so far I've not been able to find a way to coax it into visibility (it doesn't show up in the running programs list so I can't activate it there, and activating iRead just brings up the main window) short of killing the iRead application after which it appears with an exception dialog box. ---- * [Regular polygons] shows how we can have ovals, even if not yet supported by Tk on the iPAQ, by approximating them in Tcl * [A little file searcher (iPAQ)] * [Font families workaround] * [puts workaround] * [iPAQ as signal lamp] * [iFile: a little file system browser] * [iKey: a tiny multilingual keyboard] * [iMap: an indexed map viewer] * [iRead: a Gutenberg eBook reader] * [iDict: a multilingual dictionary] * [iKnow: a pocket quiz] * [iConnect4] too - see that page * [iShow] * [Nine Men Morris] * [Chess in Tcl] * [TkPool] 0.4 has been adapted to run fine on PocketPC - available from http://mini.net/files/TkPool.zip (7KB, 24 KB unwrapped). * [Gem Game] - see that page * [Video Poker] - see that page * [A little CIDR calculator] - works on PocketPC and has been tweaked so that its display fits within the 240x320 confines but is nothing like the polished apps above! * [A symmetric doodler] - see that page for iDoodle ---- [PDA] | [Arts and crafts of Tcl-Tk programming]