Quote:
Originally Posted by Hio
Hi,
the nickel library appears to be working again so far..i updated the cached metadata of the device and it added the books to nickel that it wasn't seeing before..
i will keep posted if anything goes strange again!
thank you.
and ken how would i go about adding images to the power off function of the ksm?
where would i put the images etc?
thanks
|
The PowerOff function of KSM is better discussed in the "Kobo Start Menu" thread. The original discussion started at about post #302 (for me that is page 21 of the thread)
The PowerOff page displayed is basically just a very simple HTML page. Like one page of an HTML book/pamphlet/web page. That might scare some, but all the code that you need is spelled out in the examples, you can just replace the text used with your own and add images if you want. Or you can do what I did and create the displayed page as a full page image and just have that as the body of the page, defined in the HTML code. I used GIMP2 to compose the picture.
My poweroff_info.html:
<html>
<head>
<title>kobo menu info</title>
<style type="image/png">
p {
margin-top: 0.5em; }
</style>
</head>
<body>
<img src="/mnt/onboard/.kobo/kbmenu/txt/poweroff.png">
</body>
</html>
See.. nothing to it. I have my poweroff.png image file in the same directory with the poweroff_info.html above. (Just to make it easy to find.)
If you have any more to address KSM you should post it in the KSM thread.
Luck;
Ken