Serious_Noize!
I don't mean to change the subject here. But I was wondering if anyone might know how you can change the picture on the templates for the start screen? From what I understand it takes a snapshot picture when saving the template? Not sure about that, I was just wondering how you add a picture to them?
Looking at the .cwt and .cwp files, it looks like the image is stored as base64 pretty near the beginning of the file. The .cwp/.cwt file format looks like it comprises of a header followed by various data chunks. Each chunk starts with a chunk type id and a length, then the data (of the specified length) follows.
In theory it should be possible to copy the header and chunks before the image chunk, replace the image chunk, then copy the rest of chunks in the file to a new file.
scook
...The size of the images changed a few releases ago so the manual process if it is still supported may use larger images.
I guess if you decoded the base64 data, checked the width/height/depth/format and just made sure whatever image you replaced it with matched what you found, this should work ok.
To do this though, you'd need some programming experience... and a fair amount of patience ironing out any issues.