@Syridian
Hmm, it seems part of my xml has disappeared. At the beginning of it a <screens> tag is missing, that xml should go in the screens.xml file. So, i agree the action tags should be in screens.xml
Another action could be <action timeout=1000> to wait 1 second (f.e. for a intro, i also described that, but i think I forgot to paste that part).
@Henri
What i mean with the layout tag is just a reference to a screen xml file. Could(should?) have used a <screenfile> tag.
My idea of using lists:
- put the list items in the screens.xml file (static list like i described before) or use a list which gets it's data from a plugin(reads xml/database/playlist/unread mail/etc).
- use something like this in the layout xml-file:
Code:
<item type="list" x=10 y=20 w=50 h=40>
<listid>userlist</listid>
</item>
or
<item type="list" x=10 y=20 w=50 h=40>
<listid>winamp2.playlist</listid>
</item>
and then use the action tags in the screens.xml file to define button/keyboard actions to scroll through and select from the list.
Quote:
Reading buttons shouldn't be a problem even now but there isn't that much that could be attached to the button presses except screen changes.
Not now, but maybe later execute external program's? (f.e. start winamp.exe). Browse playlists? Select a file from a playlist?
And what about:
Code:
<item type="uservariable" x=3 y=5>
<varid>Caption</var>
</item>
for referencing user-defined variables? Or use %(varid)? I prefer the last one, because then
Code:
<item type="image"...><imagebitmap>images/%(mylogonamevar).bmp</...>
could be possible. But i think the first one is more non-programmer friendly.
All actions/variables/lists should in my opinion be defined in screens.xml. The other xml files just describe the screen layout, referencing lists, images and variables (and contain static text tags).
I'm just sharing my

's. Feel free to do with them what you want.
To clarify things, I'll try to make some more detailed examples.
Now, if I only got my Nokia 3310 lcd to work...