Rotlaus Software

Pages: [1]
Print
Author Topic: Home skin  (Read 10205 times)
Pedram
Global Moderator
Sr. Member
*****
Posts: 266



View Profile WWW
« on: November 19, 2007, 01:00:24 PM »

Home (3Dskin) Skin
Author: Pi3cH
Category: Functional
Date: 19 Nov 2007
Version: 0.2

This skin contains:
1. Windows Media Player 10 today plugin. You can play your music files from today screen.
2. Unread SMS
3. Hijri shamsi date (Jalali Date)
4. Urgent Memo! Many time I forgot to read my recording notes in my notes folder. I called this recording notes as Urgent Memos. you can use your voice to write notes, memo, tasks, .... there is a MortScript in this skin which count numbers of you recording notes (*.amr files) and add them to registry. So you see how many Urgent memo you have in your today screen. This script run we you power-on-off your PDA.
5. Digital clock.
6. Appointment and Tasks
7. set your device volume to mid level.
8. set your back light to mid level. (change code if not work for you.)

Installation:
1. Unzip 3Dskin-Pi3cH.zip (Contains: mscr.zip, 3dskin.zip, WMPTodayPlugin.cab)
2. Unzip both msrc.zip and 3dskin.zip files to your rltoday folder (not inside your skins!, if you are using my Office skin you need not unzip mscr.zip)
3. Install WMPTodayPlugin.cab to your main memory (not work if you install it on your storage card).
4. Open Init.mscr in Office folder and change part called "Disable and Enable today plugins". Add/Remove those today plugins that you want to be loaded when this skin is loading.
5. Run Init.mscr in Home\mscr\.

Note: Never change skin with default rltoday skin changer option! otherwise many future would not work for you. Only run Init.mscr!

Comments are welcome.

What do I mean by functional skin?
Different skin in different locations, for e.g. we you are at your office you need to do some different things with your PDA that you do not need or not able to do them when you are outdoor.

* 3dskin-Pi3cH.zip (99.29 KB - downloaded 265 times.)
Logged

------------------------
rlToday Developer Resource Kit v0.5
 I-teq XBOND, WM5, 5.1.195, V1.12.80
Pedram
Global Moderator
Sr. Member
*****
Posts: 266



View Profile WWW
« Reply #1 on: November 26, 2007, 01:55:13 PM »

No comments guys?!
Logged

------------------------
rlToday Developer Resource Kit v0.5
 I-teq XBOND, WM5, 5.1.195, V1.12.80
pf

Posts: 132


View Profile
« Reply #2 on: November 26, 2007, 08:10:56 PM »

Too great, Pi3cH Smiley Really nice skin. Perhaps to personal, to get many comments :rolleyes:
Logged

Toshiba G900 (after XDA I, II, IIi and Trion = HTC TytnI)
Mark
Global Moderator
Hero Member
*****
Posts: 609



View Profile
« Reply #3 on: November 27, 2007, 07:54:36 AM »

I've thought about having a skin for when I'm on the move and want to use bigger buttons rather than the pen, but find that MortButtons is the answer. I did have a skin with a big digital clock but found myself switching back to my standard skin too much.
Logged

Mark

rlToday 0.1.22b | MortScript 4.1 | Sys-to-Reg 3 | WM5 HTC TyTN
Pedram
Global Moderator
Sr. Member
*****
Posts: 266



View Profile WWW
« Reply #4 on: November 27, 2007, 01:42:32 PM »

May be it is too personal! Wink

Mark I had similiar problem. I coded a script for automatic skin changing. This script change rltoday skin, today plugins, volume, backlight, ... at specific time of day that setted in INI file.
The intresting part is that it turns my phone(signal) off at night and turn it on at morning. Smiley

If you think it can be helpful, I can share it.
Logged

------------------------
rlToday Developer Resource Kit v0.5
 I-teq XBOND, WM5, 5.1.195, V1.12.80
Projekt8e

Posts: 11


View Profile
« Reply #5 on: December 27, 2007, 01:29:28 AM »

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!
Logged
Pedram
Global Moderator
Sr. Member
*****
Posts: 266



View Profile WWW
« Reply #6 on: December 28, 2007, 02:13:13 PM »

Quote from: Projekt8e
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:
Code:

     
     
     


     
     
     
"

     
     
     
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

Code:
#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)
Logged

------------------------
rlToday Developer Resource Kit v0.5
 I-teq XBOND, WM5, 5.1.195, V1.12.80
Projekt8e

Posts: 11


View Profile
« Reply #7 on: December 28, 2007, 11:35:10 PM »

thank you for your reply and the insight on how to adjust it. I did try removing that script from the skin file and I received an error every time I used the phone. The joys of modifying! Smiley

I'll keep looking into it.

Kepp up the good work!
Logged
Pedram
Global Moderator
Sr. Member
*****
Posts: 266



View Profile WWW
« Reply #8 on: December 30, 2007, 03:41:25 PM »

To stop jalalidate script run at each device power on download and run attached script into your pda.

* StopJalaliDate.mscr (0.2 KB - downloaded 72 times.)
Logged

------------------------
rlToday Developer Resource Kit v0.5
 I-teq XBOND, WM5, 5.1.195, V1.12.80
Projekt8e

Posts: 11


View Profile
« Reply #9 on: December 30, 2007, 10:10:29 PM »

right on man, thanks a lot! I'll post up if I get some decent looking meters in place of the jalali date.
Logged
Pages: [1]
Print
Jump to: