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
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #3341 (permalink)  
Old 07-31-2010, 11:21 PM
Sharkie405's Avatar
VIP Member
Offline
Pocket PC: HTC One M9
Carrier: Verizon
Location: Waynesville, NC
 
Join Date: Feb 2009
Posts: 3,612
Reputation: 11155
Sharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation level
Mentioned: 9 Post(s)
Tagged: 0 Thread(s)
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Quote:
Originally Posted by hthomas View Post
I think its just you and me in the thread, with about 10-12 regulars poping in now n then. I remenber when...



Hey how do you create and or edit (shortcut files) files like these????
My bad for missing this post. I release my ROM today and that's all that's been on my mind.

As far as creating shortcut\.lnk files:

Right click on an exe\.application and select create shortcut. This will create a .lnk\shortcut in the same directory the exe\application was in.

As far as editing them, if you mean their position in your ROM:

You must edit the app.dat or make one from scratch if there's not one already. If there's not one already I usually will copy and paste one from another package and then just delete all the info. in it so I have a clean empty app.dat to work with.

For example, I have PIM Backup in my Start Menu Tools folder. To accomplish this I created\edit this app.dat:

Code:
Directory("\Windows\Start Menu\Programs\Tools"):-File("PIM Backup.lnk","\Windows\PIM Backup.lnk")
The first part "("\Windows\Start Menu\Programs\Tools")" tells it where to put the .lnk\shortcut. I want PIM Backup in my Start Menu Tools folder. Most things will start out in Windows obviously.

The second part ":-File("PIM Backup.lnk" tells it what you want there and what you want it to be called. If I wanted PIM Backup to be called "Clown Soup" in my Start menu then my app.dat would look like this:
Code:
Directory("\Windows\Start Menu\Programs\Tools"):-File("Clown Soup.lnk","\Windows\PIM Backup.lnk")
Just remember if you change the name of a .lnk\shortcut you will need to adjust the name accordingly anywhere else in the kitchen that you are using this .lnk\shortcut. If you have regedits that change the Start Menu icons, you would have to change that too. For an example, let's use PIM Backup again. The start Menu regedit I use to change the PIM Backup icon is this:
Code:
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Tools\PIM Backup.lnk]
"Icon"="\\Windows\\PIM Backup.png"
If I were to change the name of the Start Menu .lnk\shortcut of PIM Backup to "Clown Soup" then I would also have to edit this regedit to:
Code:
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\Tools\Clown Soup.lnk]
"Icon"="\\Windows\\PIM Backup.png"
The third part "\Windows\PIM Backup.lnk") tells it where to get the .lnk\shortcut from.

So it's:
1) Where do you want it?
2)What is it?\What do you want it to be called? (Usually this is not changed, but it can be)
3)Where is this link coming from? (Usually it's Windows\whatever the program is called.lnk

I learned this from here.

I don't think any of this info. is relevant when dealing with OEMs though. I believe only EXTs have app.dats. I thought I remember you saying something about trying to build a kitchen based mostly on OEMS. I can't help on that one, sorry.
__________________
Current Device:
Verizon HTC One M9

Last edited by Sharkie405; 08-01-2010 at 09:18 AM.
Reply With Quote
This post has been thanked 1 times.
  #3342 (permalink)  
Old 08-01-2010, 12:23 AM
william_fold's Avatar
Regular 'Geeker
Offline
Pocket PC: Touch Pro 2
Carrier: sprint
Location: NE Ohio
 
Join Date: Oct 2008
Posts: 314
Reputation: 1775
william_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on rep
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Quote:
Originally Posted by Sharkie405 View Post
Not that you need to hear once again, but YOU ARE THE MAN! That worked!
...and if you dont already know...album art update works with Audio Manager Engine 2.0.2016.1223 h, just in case
__________________
[Kitchen] WVGA Touch Pro 2 Collaboration http://forum.ppcgeeks.com/showthread.php?t=118553
My Manila Packages http://www.mediafire.com/ManilaPackages
Reply With Quote
This post has been thanked 1 times.
  #3343 (permalink)  
Old 08-01-2010, 12:25 AM
Sharkie405's Avatar
VIP Member
Offline
Pocket PC: HTC One M9
Carrier: Verizon
Location: Waynesville, NC
 
Join Date: Feb 2009
Posts: 3,612
Reputation: 11155
Sharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation level
Mentioned: 9 Post(s)
Tagged: 0 Thread(s)
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Quote:
Originally Posted by william_fold View Post
...and if you dont already know...album art update works with Audio Manager Engine 2.0.2016.1223 h, just in case
I noticed that but didn't pay much attention to it. Thanks!
Reply With Quote
  #3344 (permalink)  
Old 08-01-2010, 12:37 AM
nrfitchett4's Avatar
Dallas Mavericks #1 Fan!!
Offline
Pocket PC: HTC ThunderBolt
Carrier: Verizon
 
Join Date: Oct 2009
Posts: 1,968
Reputation: 2100
nrfitchett4 is a VIPnrfitchett4 is a VIPnrfitchett4 is a VIPnrfitchett4 is a VIPnrfitchett4 is a VIPnrfitchett4 is a VIPnrfitchett4 is a VIPnrfitchett4 is a VIPnrfitchett4 is a VIPnrfitchett4 is a VIPnrfitchett4 is a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

MAN, spend 2 weeks away from this thread playing with my new toy and beta testing some ROMs for people and it's still the same ol', same ol'. Constant chatter about sense!!!
How y'all doing? I finally found a phone that can handle sense without freezing up (much).
__________________
HTC HD7

Reply With Quote
  #3345 (permalink)  
Old 08-01-2010, 06:10 AM
Sharkie405's Avatar
VIP Member
Offline
Pocket PC: HTC One M9
Carrier: Verizon
Location: Waynesville, NC
 
Join Date: Feb 2009
Posts: 3,612
Reputation: 11155
Sharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation levelSharkie405 can't get a higher reputation level
Mentioned: 9 Post(s)
Tagged: 0 Thread(s)
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Aight, can someone teach me how to search properly for packages. I've been looking for the audio manager package that William_Fold mentioned and I can't find it. I can find talk of it and I've gone to plenty of sites where I"ve found audio manager 2.5.2016.1331, but none with the slightly older version.

Is someone could post it for the time being, that'd be great! But I'd still like to know how you guys find all the random packages. I know about the mobile underground site and a couple of XDA, but neither of them had this particular package.
Reply With Quote
  #3346 (permalink)  
Old 08-01-2010, 10:10 AM
vin255764's Avatar
Its FLASHING time!!!
Offline
Pocket PC: Evo & TP2
Carrier: SPCS
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: [Kitchen] WVGA Touch Pro 2 Collaboration

Quote:
Originally Posted by Sharkie405 View Post
Aight, can someone teach me how to search properly for packages. I've been looking for the audio manager package that William_Fold mentioned and I can't find it. I can find talk of it and I've gone to plenty of sites where I"ve found audio manager 2.5.2016.1331, but none with the slightly older version.

Is someone could post it for the time being, that'd be great! But I'd still like to know how you guys find all the random packages. I know about the mobile underground site and a couple of XDA, but neither of them had this particular package.
Mobile undergrownd/chefs corner.I think its in CaptainThrowback thread
__________________

Last edited by vin255764; 08-01-2010 at 10:12 AM.
Reply With Quote
This post has been thanked 1 times.
  #3347 (permalink)  
Old 08-01-2010, 10:20 AM
william_fold's Avatar
Regular 'Geeker
Offline
Pocket PC: Touch Pro 2
Carrier: sprint
Location: NE Ohio
 
Join Date: Oct 2008
Posts: 314
Reputation: 1775
william_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on repwilliam_fold is halfway to VIP status based on rep
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Quote:
Originally Posted by Sharkie405 View Post
Aight, can someone teach me how to search properly for packages. I've been looking for the audio manager package that William_Fold mentioned and I can't find it. I can find talk of it and I've gone to plenty of sites where I"ve found audio manager 2.5.2016.1331, but none with the slightly older version.

Is someone could post it for the time being, that'd be great! But I'd still like to know how you guys find all the random packages. I know about the mobile underground site and a couple of XDA, but neither of them had this particular package.
Here...
Attached Files
File Type: rar Audio Manager Engine 2.0.2016.1223 h.rar (355.5 KB, 17 views) Click for barcode!
Reply With Quote
This post has been thanked 1 times.
  #3348 (permalink)  
Old 08-01-2010, 10:35 AM
vin255764's Avatar
Its FLASHING time!!!
Offline
Pocket PC: Evo & TP2
Carrier: SPCS
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: [Kitchen] WVGA Touch Pro 2 Collaboration

Anybody knows how to fix this bug?
Quote:
Originally Posted by boggsie
Wow, this is really nice. Kudos ...
[*]The GPS (My Location) icon (cross-hair) in the phone canvas seems to be set to off by default. I can manually turn it on after each soft-reset (phone options - CDMA settings), but does anybody know how to make this setting stick?
Reply With Quote
  #3349 (permalink)  
Old 08-01-2010, 01:07 PM
TMartin's Avatar
Chef/Port Specialist
Offline
Pocket PC: Evo3D,Evo4G,Touch Pro2,Touch Pro & Samsung Moment
Carrier: Sprint
Location: Westerville, OH
 
Join Date: May 2008
Posts: 1,756
Reputation: 4824
TMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributionsTMartin should be added to the payroll for their contributions
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Quote:
Originally Posted by nrfitchett4 View Post
MAN, spend 2 weeks away from this thread playing with my new toy and beta testing some ROMs for people and it's still the same ol', same ol'. Constant chatter about sense!!!
How y'all doing? I finally found a phone that can handle sense without freezing up (much).
My Evo handles anything nicely!!

Sent from my HTC Evo 4G!
__________________
Check out my work:
For All Your New Leaks, Check Out:
Hit the if I help you.
Reply With Quote
  #3350 (permalink)  
Old 08-01-2010, 05:28 PM
InvincibleLiving's Avatar
Post Master General
Offline
Pocket PC: White Evo: Myn's TPT RLS5, Stock Kernel
Carrier: The "NOW" Network
Location: Leesburg, VA
 
Join Date: Jun 2007
Posts: 6,464
Reputation: 4222
InvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributionsInvincibleLiving should be added to the payroll for their contributions
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [Kitchen] WVGA Touch Pro 2 Collaboration

Quote:
Originally Posted by TMartin View Post
My Evo handles anything nicely!!

Sent from my HTC Evo 4G!
you've got your EVO to dualboot winmo?
__________________
Creator of iLife ROM Series

Best... Member... Ever...
Reply With Quote
Reply

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


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 03:02 AM.


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