View Single Post
  #8563 (permalink)  
Old 10-29-2010, 12:50 AM
vin255764's Avatar
vin255764
Its FLASHING time!!!
Offline
Threadstarter
Location: Seattle,WA
 
Join Date: Nov 2008
Posts: 3,713
Reputation: 36470
vin255764 can't get a higher reputation levelvin255764 can't get a higher reputation levelvin255764 can't get a higher reputation levelvin255764 can't get a higher reputation levelvin255764 can't get a higher reputation levelvin255764 can't get a higher reputation levelvin255764 can't get a higher reputation levelvin255764 can't get a higher reputation levelvin255764 can't get a higher reputation levelvin255764 can't get a higher reputation levelvin255764 can't get a higher reputation level
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Oct 24 Plutonium-TEST ROM.SYS 28240,Sense 2019 core

Quote:
Originally Posted by ezzie1971 View Post
hi Vin,

I was wondering if you would be able to give me a dumbed down lesson in how to add to your sense mods. I've found the different mscr's for the different mods but i'm not sure how to add to them. I'm slowly making my way through the manual but right now i'm having trouble locating the text files that correspond with the mscr's. Any assistance you could give me would be most appreciated

Dorothy
For main menu-add cases to the "top and bottom portions" of MasterScript.That way you can create your own separate add-on
example

BEFORE:
## SET SCRIPT DIRECTORY ##
ScrDir="\Windows"
## MASTER OPTIONS ##
ChoiceDefault("Master Script","Choose customization:^CR^(Cancel will exit)",0,0,"Analog Clock Face","Clock Background","Clock Flip","Clock Numbers","BG4ALL (HQ Wall/BG4ALL/Stock)","GoS2W","Sliders")




Case(7)
#Sliders
If(FileExists(ScrDir & "\Sliders.mscr"))
Run(ScrDir & "\Sliders.mscr")
Else
Message( "Sliders app not found^CR^Please choose another option" )
Run(ScrDir & "\MasterScript.mscr")
EndIf
Case(0)
Exit
EndChoice

AFTER (NEW one)
## SET SCRIPT DIRECTORY ##
ScrDir="\Windows"
## MASTER OPTIONS ##
ChoiceDefault("Master Script","Choose customization:^CR^(Cancel will exit)",0,0,"Analog Clock Face","Clock Background","Clock Flip","Clock Numbers","BG4ALL (HQ Wall/BG4ALL/Stock)","GoS2W","Sliders","Ezzie")




Case(7)
#Sliders
If(FileExists(ScrDir & "\Sliders.mscr"))
Run(ScrDir & "\Sliders.mscr")
Else
Message( "Sliders app not found^CR^Please choose another option" )
Run(ScrDir & "\MasterScript.mscr")
EndIf
Case(
#Ezzie
If(FileExists(ScrDir & "\Ezzie.mscr"))
Run(ScrDir & "\Ezzie.mscr")
Else
Message( "Ezzie app not found^CR^Please choose another option" )
Run(ScrDir & "\MasterScript.mscr")
EndIf
Case(0)
Exit

EndChoice

Now you can Create Ezzie.mscr
If you dont want to add separate mod,you can expand existing mod menu.
for example clock digits (ClockNumbers.mscr)

before
ChoiceDefault("Clock Numbers","Choose which clock font numbers you want:^CR^(Cancel will exit)",1,0,"Default","s2w_v2","Metal","Cell","Tran Cell","Gothic","Flame","Cell Dark")


Case(
#Cell Dark
Message( "Cell Dark Font Numbers will be applied","Clock Numbers" )
RegWriteDword("HKLM","Software\Microsoft\Today\Ite ms\HTC Sense","Enabled",0)
RedrawToday
RedrawToday
Sleep(3000)
SetFileAttribute( "\windows\77e0069a_manila", "readonly", FALSE )
copy( "\windows\77e0069a_Darkfont", "\windows\77e0069a_manila", TRUE )
Sleep(3000)
RegWriteDword("HKLM","Software\Microsoft\Today\Ite ms\HTC Sense","Enabled",1)
RedrawToday
RedrawToday
Sleep(3000)
Message( "Cell Dark Font Numbers applied,^CR^wait for Sense to restart ","Clock Numbers" )
Exit
Case(0)
Exit
EndChoice


After

ChoiceDefault("Clock Numbers","Choose which clock font numbers you want:^CR^(Cancel will exit)",1,0,"Default","s2w_v2","Metal","Cell","Tran Cell","Gothic","Flame","Cell Dark","Ezzie")


Case(
#Cell Dark
Message( "Cell Dark Font Numbers will be applied","Clock Numbers" )
RegWriteDword("HKLM","Software\Microsoft\Today\Ite ms\HTC Sense","Enabled",0)
RedrawToday
RedrawToday
Sleep(3000)
SetFileAttribute( "\windows\77e0069a_manila", "readonly", FALSE )
copy( "\windows\77e0069a_Darkfont", "\windows\77e0069a_manila", TRUE )
Sleep(3000)
RegWriteDword("HKLM","Software\Microsoft\Today\Ite ms\HTC Sense","Enabled",1)
RedrawToday
RedrawToday
Sleep(3000)
Message( "Cell Dark Font Numbers applied,^CR^wait for Sense to restart ","Clock Numbers" )
Exit
Case(9)
#Ezzie
Message( "Ezzie Font Numbers will be applied","Clock Numbers" )
RegWriteDword("HKLM","Software\Microsoft\Today\Ite ms\HTC Sense","Enabled",0)
RedrawToday
RedrawToday
Sleep(3000)
SetFileAttribute( "\windows\77e0069a_manila", "readonly", FALSE )
copy( "\windows\77e0069a_Ezzie", "\windows\77e0069a_manila", TRUE )
Sleep(3000)
RegWriteDword("HKLM","Software\Microsoft\Today\Ite ms\HTC Sense","Enabled",1)
RedrawToday
RedrawToday
Sleep(3000)
Message( "Ezzie Font Numbers applied,^CR^wait for Sense to restart ","Clock Numbers" )
Exit
Case(0)
Exit
EndChoice

All you need is to rename your custom 77e0069a_manila to 77e0069a_Ezzie.
That smiley is number eight).You can use Notepad to work with .mscr
__________________

Last edited by vin255764; 10-29-2010 at 01:09 AM.
Reply With Quote
This post has been thanked 4 times.