HI
Here is an old tutorial :
http://translate.google.fr/translate?js ... 3Fid%3Ddoc To begin you can have a look at existing skins to understand how it works. (unzip one of them and have a look at the files)
The really hard part if the graphic design. If you are faced with problems for the configuration file i can help...
Te tutorial is not up to date :
Here are updated list of values :
*cmd values :
SKIN_CMD_EXIT_MENU = 0, /*!<exit skin */
SKIN_CMD_PAUSE = 1, /*!<send a pause command to mplayer */
SKIN_CMD_STOP = 2, /*!<send a stop command to mplayer */
SKIN_CMD_MUTE = 3, /*!<send a mute command to mplayer */
SKIN_CMD_VOL_MOINS = 4, /*!<send a volume command to mplayer */
SKIN_CMD_VOL_PLUS = 5, /*!<send a volume command to mplayer */
SKIN_CMD_LIGHT_MOINS = 6, /*!<send a light command to mplayer */
SKIN_CMD_LIGHT_PLUS = 7, /*!<send a light command to mplayer */
SKIN_CMD_DELAY_MOINS = 8, /*!<send a delay+ command to mplayer */
SKIN_CMD_DELAY_PLUS = 9, /*!<send a delay- command to mplayer */
SKIN_CMD_GAMMA_MOINS = 10,/*!<send a gamma+ command to mplayer */
SKIN_CMD_GAMMA_PLUS = 11,/*!<send a gamma- command to mplayer */
SKIN_CMD_FORWARD = 12,/*!<send a forward command to mplayer */
SKIN_CMD_BACKWARD = 13,/*!<send a backward command to mplayer */
SKIN_CMD_NEXT = 14,/*!<send a next command to mplayer */
SKIN_CMD_PREVIOUS = 15,/*!<send a previous command to mplayer */
/* Others */
SKIN_CMD_BATTERY_STATUS = 16,
SKIN_CMD_ANIM = 17,
SKIN_CMD_TEXT_UPTIME = 18,
SKIN_CMD_TEXT_TIME = 19,
/* Begin of GPS info */
SKIN_CMD_TEXT_LAT = 20,
SKIN_CMD_TEXT_LONG = 21,
SKIN_CMD_TEXT_ALT = 22,
SKIN_CMD_TEXT_SPEED = 23,
/* Begin of tags related info */
SKIN_CMD_TEXT_ARTIST = 30,
SKIN_CMD_TEXT_TRACK = 31,
SKIN_CMD_TEXT_ALBUM = 32,
SKIN_CMD_TEXT_TITLE = 33,
SKIN_CMD_TEXT_YEAR = 34,
SKIN_CMD_TEXT_COMMENT = 35,
SKIN_CMD_TEXT_GENRE = 36,
SKIN_CMD_COVERART = 37
SKIN_CMD_CURRENT_POS = 40
SKIN_CMD_REMAINING_TIME = 41
* Type values :
SKIN_CONTROL_CIRCULAR = 1
SKIN_CONTROL_RECTANGULAR =2
SKIN_CONTROL_PROGRESS_X = 3
SKIN_CONTROL_PROGRESS_Y = 4
SKIN_CONTROL_TEXT = 5
Regards