well, your skin made me finally sign up for this board. I have tried about 20 skins in the last couple weeks and find that this one suits me best with just a few changes to the programs I prefer.
The one thing that I thought I would try to be clever with was removing the Jalali Date. I wanted to replace it with a system memory and sd memory meter. Something small. Unfortunately I do not know how to edit mscr files. I tried getting crafty and editing the skin file and registry, but found out that while removing the Jalali Date, it obviously must have been parented by the mscr file because I would get an error every time I use my phone.
So, at the very least, is it possible to get that Jalali Date removed as it not only confuses me, but it serves no purpose for me AND at the very most, would the meters be an easy add on?
Thanks!
Thanks for your comment. To remove Jalalidate simply open Skin.xml and remove all the line from line 18 to line 29. this part:
"
to add system memory or sd memory metter you should first create mscr files. for makin mscr code in order to get memory status you can use below code as sample or download my Pi3cH tabbed skin:
http://rotlaus-software.de/forum/viewtopic.php?id=1099#Get Memory
MainMem = FreeMemory() / 1024
TotMem = TotalMemory() / 1024
SDMem = FreeDiskSpace("\Storage Card") /1024
RAMMem = FreeDiskSpace("\") / 1024
RegWriteString("HKCU", "\Software\Pi3cH\", "MainMemory", MainMem)
RegWriteString("HKCU", "\Software\Pi3cH\", "TotalMemory", TotMem)
RegWriteString("HKCU", "\Software\Pi3cH\", "SDMemory", SDMem)
RegWriteString("HKCU", "\Software\Pi3cH\", "RAMMemory", RAMMem)