PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro 2 > CDMA TP2 Development

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #8561 (permalink)  
Old 10-28-2010, 11:42 PM
vin255764's Avatar
Its FLASHING time!!!
Offline
Pocket PC: Evo & TP2
Carrier: SPCS
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 darren.wlsn1 View Post
i just didnt want people flaming each other over briggs opinion which he is entitled to and dont think he was bashing your rom/work imo. thanx vin
Yep,I agree
__________________
Reply With Quote
This post has been thanked 4 times.
  #8562 (permalink)  
Old 10-29-2010, 12:06 AM
ezzie1971's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC HD2
Carrier: T Mobile
Location: omaha ne
 
Join Date: Sep 2008
Posts: 155
Reputation: 170
ezzie1971 is keeping up the good workezzie1971 is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Oct 24 Plutonium-TEST ROM.SYS 28240,Sense 2019 core

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
__________________
Those who can, do. Those who can't, search the forums for the works of those who can.
Reply With Quote
This post has been thanked 1 times.
  #8563 (permalink)  
Old 10-29-2010, 12:50 AM
vin255764's Avatar
Its FLASHING time!!!
Offline
Pocket PC: Evo & TP2
Carrier: SPCS
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.
  #8564 (permalink)  
Old 10-29-2010, 01:21 AM
vin255764's Avatar
Its FLASHING time!!!
Offline
Pocket PC: Evo & TP2
Carrier: SPCS
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: Question???

Quote:
Originally Posted by statchmoe View Post
So, this is weird to me... I am wondering about the compatability of WM software... I had a bunch of software running on my diamond using nrgz 6.5 rom and it ran great... now I am in the TP2 with pluto oct 17th and almost none of it runs... specifically games like uno classic... Should pretty much all software run on windows mobile... or is there an issue I am unaware of... and then what might be causing this problem?
Probably because of different screen resolution.Search for WVGA games
Quote:
Originally Posted by Recursion View Post
Video drivers might be different, and can make a difference. That free NFS game wouldn't run on one of Vin's older ROMs, so I installed the attached drivers & it did run. You can give it a shot...
That one is already cooked
Reply With Quote
This post has been thanked 4 times.
  #8565 (permalink)  
Old 10-29-2010, 09:25 AM
swear0730's Avatar
PPCGeeks Regular
Offline
Pocket PC: HP Jornada 680,720 Treo 600,650,700P, TP2, Epic4G
Carrier: Sprint
Location: Madtown, USA
 
Join Date: Oct 2009
Posts: 208
Reputation: 570
swear0730 knows their stuffswear0730 knows their stuffswear0730 knows their stuffswear0730 knows their stuffswear0730 knows their stuffswear0730 knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Oct 24 Plutonium-TEST ROM.SYS 28240,Sense 2019 core

Quote:
Originally Posted by darren.wlsn1 View Post
easy boys/girls, briggs really wasnt outa line imo and vin fixed him and seemed like he wasnt offended. i know we all love vin but i flash a different one too at times. group hug?
To me, its not about flashing different ROMs. He could've used 1000 different words other than "stupid" and it wouldn't have bothered me. Vin works hard and cheerfully and his work is exemplary. Simply put, he doesn't deserve any derisive statements about something that is a matter of taste. Period.
__________________
Madtown, Wisconsin. 68 square miles surrounded by reality.
Reply With Quote
This post has been thanked 1 times.
  #8566 (permalink)  
Old 10-29-2010, 12:34 PM
briggs's Avatar
mcom
Offline
Pocket PC: Panther 850e, RhodiumW500, BlackBerry8220
Carrier: Telus & Rogers
Location: Ontario
 
Join Date: Oct 2008
Posts: 1,041
Reputation: 3380
briggs is still contributing even after becoming a VIPbriggs is still contributing even after becoming a VIPbriggs is still contributing even after becoming a VIPbriggs is still contributing even after becoming a VIPbriggs is still contributing even after becoming a VIPbriggs is still contributing even after becoming a VIPbriggs is still contributing even after becoming a VIPbriggs is still contributing even after becoming a VIPbriggs is still contributing even after becoming a VIPbriggs is still contributing even after becoming a VIPbriggs is still contributing even after becoming a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Oct 24 Plutonium-TEST ROM.SYS 28240,Sense 2019 core

Quote:
Originally Posted by briggs View Post
I don't want that uneccessary plutonium logo on my Touch Pro 2 boot splash screen anymore. how do I get rid of it.
Is ^that^ better?

Thanks darren and vin.
__________________
Touch Pro 2 O/C 749mHz: LEAD ROM Mar. 5 2011 6.5 Release Candidate multi carrier lite
Treo Pro ROM: Cooked my own 21911 6.5 from raiderfan's kitchen.
Reply With Quote
This post has been thanked 3 times.
  #8567 (permalink)  
Old 10-29-2010, 12:45 PM
alohanela's Avatar
PPCGeeks Regular
Offline
Pocket PC: Long Live the TP2!
Carrier: Sprint SERO 500
Location: Too far from the beach!
 
Join Date: Feb 2009
Posts: 142
Reputation: 415
alohanela is becoming a PPCGeeks regularalohanela is becoming a PPCGeeks regularalohanela is becoming a PPCGeeks regularalohanela is becoming a PPCGeeks regularalohanela is becoming a PPCGeeks regular
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Oct 24 Plutonium-TEST ROM.SYS 28240,Sense 2019 core

Quote:
Originally Posted by briggs View Post
Is ^that^ better?

Thanks darren and vin.
(I sent a thanks your way)
__________________


If at first you don't succeed,
skydiving isn't for you.

Reply With Quote
This post has been thanked 1 times.
  #8568 (permalink)  
Old 10-29-2010, 02:43 PM
Recursion's Avatar
Rockin' the Red!!
Offline
Pocket PC: 1.31.11Neo -- FRX06
Carrier: Sero
 
Join Date: Mar 2008
Posts: 858
Reputation: 2330
Recursion is a VIPRecursion is a VIPRecursion is a VIPRecursion is a VIPRecursion is a VIPRecursion is a VIPRecursion is a VIPRecursion is a VIPRecursion is a VIPRecursion is a VIPRecursion is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Oct 24 Plutonium-TEST ROM.SYS 28240,Sense 2019 core

Quote:
Originally Posted by briggs View Post
Is ^that^ better?

Thanks darren and vin.
Yes, that's better.

Now we don't have to lie in wait for you to step out onto the ice.
__________________


Reply With Quote
This post has been thanked 1 times.
  #8569 (permalink)  
Old 10-30-2010, 02:28 AM
vin255764's Avatar
Its FLASHING time!!!
Offline
Pocket PC: Evo & TP2
Carrier: SPCS
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

sys 28242 dated sept 21 is outhere.New ROM will be ready next week
Reply With Quote
This post has been thanked 9 times.
  #8570 (permalink)  
Old 10-30-2010, 01:11 PM
swear0730's Avatar
PPCGeeks Regular
Offline
Pocket PC: HP Jornada 680,720 Treo 600,650,700P, TP2, Epic4G
Carrier: Sprint
Location: Madtown, USA
 
Join Date: Oct 2009
Posts: 208
Reputation: 570
swear0730 knows their stuffswear0730 knows their stuffswear0730 knows their stuffswear0730 knows their stuffswear0730 knows their stuffswear0730 knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Oct 24 Plutonium-TEST ROM.SYS 28240,Sense 2019 core

Quote:
Originally Posted by vin255764 View Post
sys 28242 dated sept 21 is outhere.New ROM will be ready next week
I am curious (yellow). If windows 6.5.x is dead then how come there are new releases? Or is there a device out there that currently uses is it and is still being supported.
Reply With Quote
Reply

  PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro 2 > CDMA TP2 Development

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 07:52 PM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com