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 > Windows Mobile Hacks/Tweaks > Pocket PC Themes
Register Community Search

Notices


Closed Thread
 
LinkBack Thread Tools Display Modes
  #301 (permalink)  
Old 07-22-2009, 04:52 PM
Curb71's Avatar
The Playboy Boy
Offline
Pocket PC: EVO 3D
Carrier: Sprint
Location: Los Angeles, CA
 
Join Date: Sep 2008
Posts: 1,066
Reputation: 870
Curb71 knows their stuffCurb71 knows their stuffCurb71 knows their stuffCurb71 knows their stuffCurb71 knows their stuffCurb71 knows their stuffCurb71 knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: HOW TO: Customize TouchFLO3D / Manila Themes

I want to change the soft key options. Could someone please check out this thread and let me know where to start. I have all the manila's on my PC but have no idea on how to figure out which one to mess with. http://forum.ppcgeeks.com/showthread.php?t=72408
  #302 (permalink)  
Old 07-23-2009, 01:01 PM
seco10's Avatar
PPCGeeks Regular
Offline
Pocket PC: RazrHD 4.1.2
Carrier: O2 Deutschland
Location: saxony (germany)
 
Join Date: Mar 2009
Posts: 97
Reputation: 105
seco10 is keeping up the good workseco10 is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: HOW TO: Customize TouchFLO3D / Manila Themes

Quote:
Originally Posted by seco10 View Post
I like to vary the appearance of my mobile and so I changed nearly all of the icons, some text and so on - using many good ppcgeeks-tips.
Now I'm wondering if anybody knows what icon-files the developers used on the screen "call history". I talk about the red-marked signs in the attached picture. This is the call-history that appears by pressing the homescreen, not the extra call-history-tab. Got anyone an idea??
I'm happy about all answers and I'm wondering if there's anyone with experience to the files I'm looking for?
Attached Images
File Type: jpg ScreenAR.jpg (18.7 KB, 45 views) Click for barcode!
__________________
"If you can dream it, you can do it..." (W. Disney)
Motorola RazrHD
  #303 (permalink)  
Old 07-25-2009, 06:06 AM
seco10's Avatar
PPCGeeks Regular
Offline
Pocket PC: RazrHD 4.1.2
Carrier: O2 Deutschland
Location: saxony (germany)
 
Join Date: Mar 2009
Posts: 97
Reputation: 105
seco10 is keeping up the good workseco10 is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: HOW TO: Customize TouchFLO3D / Manila Themes

Problem is solved now. The pics I was looking for are "hidden" in the phcanOverbmp.dll - there's a bitmap folder and they are the pics 6,7 and 8.
But now working with extracting-tools I see that it's not easy to change a pic in this dll, because every change causes another change (taskbar and others...). I like it...
Ciao
SeCo
  #304 (permalink)  
Old 07-26-2009, 06:19 PM
sirkula's Avatar
Lurker
Offline
Pocket PC: SontEricsson Xperia X1i
Carrier: BH Mobile
Location: Bosnia and Herzegovina
 
Join Date: Feb 2009
Posts: 1
Reputation: 0
sirkula is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via MSN to sirkula Send a message via Skype™ to sirkula
Re: HOW TO: Customize TouchFLO3D / Manila Themes

Quote:
Originally Posted by GoodThings2Life View Post
OK, here's where some explanation is going to begin...

First of all, I want to link to a few XDA threads for some information and ready-made themes:
Manila Editor -- You'll need this to extract and replace many of the Manila graphics.
Diamond TouchFLO3D Config -- This is an easy way to disable some of the tabs you don't use OR to enable some of the ready-made themes.
Ready Made Themes for TF3D Config -- Pretty obvious what this is.

Now, with those important tools out of the way, let's begin...

Customizing Tab Order and Tab Names
If you edit the file called 090661f7_manila, you'll be able to edit all the "Display Names" for the tabs. For example, if you want to call it "Music" instead of "Sprint Music", this is the file to do it. You'll also need to edit this file if you want to ADD tab names as well. So if you want to add the Calendar or Communications tabs, you'll need to add their names here too. (More on that later).

Here's an example of the file:
Code:
<?xml version="1.0" encoding="utf-16"?>
<xliff version="1.0" lang="en-us">
  <file datatype="plaintext" original="icons">
    <header />
    <body>
     ........
     <trans-unit id="IDS_MUSICTITLE">
        <source>Music</source>
      </trans-unit>
     ........
    </body>
  </file>
</xliff>
As you can see, I changed the IDS_MUSICTITLE value from Sprint Music to just plain Music. But you need all three lines to add new ones, so if I want to a Calendar tab it might look something like this:

Code:
     <trans-unit id="IDS_CALENDARTITLE">
        <source>Calendar</source>
      </trans-unit>
Again, I'll post more information on that process later.

How to Disable or Re-Order Tabs:
For this part, you'll want to turn your attention to two files... one of which might not exist until you create it... 26948339_manila and
26948339_manila_disabledtabs. Let's start with the one you have to create (it's also created automatically with TF3D Config tool)...

Code:
<?xml version="1.0" encoding="utf-16"?>
<DisabledTabs>
  <Page Order="10" Name="tv.page" PackageName="HTC" Title="[[IDS_SPRINTTV]]" ExternalScriptPath="HTC\Scripts\sprinttv.luac">
    <ComponentReference Name="page" Mode9Path="HTC\sprintfavorites.mode9" Component="GizmoRoot" SmartComponent="true" />
    <ComponentReference Name="icon_normal" Mode9Path="HTC\sprinticons.mode9" Component="SprintTV_Off" />
    <ComponentReference Name="icon_selected" Mode9Path="HTC\sprinticons.mode9" Component="SprintTV_On" />
    <ComponentReference Name="icon_preview" Mode9Path="HTC\sprinticons.mode9" Component="SprintTV_Preview" />
  </Page>
</DisabledTabs>
In this case, I've disabled the SprintTV tab, so I moved the entire "Page" section of code for SprintTV to this file. I removed it from the other file (more on that in a moment).

The other file is a lot longer, but it's pretty easy to follow once you understand the layout of the PAGE code shown above.

Oh and by the way, this is where you can change the order of buttons in Landscape mode as well as the content on the Music page and various dialogs and menus. I think it's fair to say that this is definitely one of the "CORE" Manila files. While I encourage having a backup of ALL the original files in case of a mistake, if you don't make one of this file in particular, you're just begging for trouble.

Code:
<?xml version="1.0" encoding="utf-16"?>
<Manila Mode9Path="HTC\manila.mode9">
  <PreloadImage Path="HTC\Assets\Images\Common\dottedline.qtc" />
  <PreloadImage Path="HTC\Assets\Images\Common\transparent.qtc" />
  <PreloadImage Path="HTC\Assets\Images\Common\alpha-hitbox.qtc" />
  <PreloadImage Path="HTC\Assets\Images\Common\down_arrow.qtc" />
.....
  <Navigation>
    <PageGroup Name="Root">
      <!-- 'page' extension == Manila pages -->
      <Page Order="0" Name="home.page" PackageName="HTC" Default="true" Title="[[IDS_HOMETITLE]]">
        <ComponentReference Name="page" Mode9Path="HTC\FakeHome.mode9?testParam=1" Component="GizmoRoot" SmartComponent="true" />
        <ComponentReference Name="icon_normal" Mode9Path="HTC\icons.mode9" Component="Home_Off" />
        <ComponentReference Name="icon_selected" Mode9Path="HTC\icons.mode9" Component="Home_On" />
        <ComponentReference Name="icon_preview" Mode9Path="HTC\icons.mode9" Component="Home_Preview" />
      </Page>
      <Page Order="1" Name="people.page" PackageName="HTC" Title="[[IDS_FAVORITEPEOPLETITLE]]">
        <ComponentReference Name="page" Mode9Path="HTC\people.mode9" Component="GizmoRoot" SmartComponent="true" />
        <ComponentReference Name="icon_normal" Mode9Path="HTC\icons.mode9" Component="People_Off" />
        <ComponentReference Name="icon_selected" Mode9Path="HTC\icons.mode9" Component="People_On" />
        <ComponentReference Name="icon_preview" Mode9Path="HTC\icons.mode9" Component="People_Preview" />
      </Page>
.....
Like I said, there's a lot here, but here's a brief breakdown. The first section is the definition of global graphics like the sliders and icons and such that are used consistently throughout the whole interface. More on that MUCH later.

Moving down to the Navigation section, you'll see the Page sections. These define the individual tabs that appear. In the example above, I pasted the code sections for the Home and Favorite People tabs.

Notice the [[IDS_HOMETITLE]] and [[IDS_FAVORITEPEOPLETITLE]] ... this is where the variables from the first file come into play. Although you can set them statically here, I do NOT recommend it.

Now as far as reordering the tabs is concerned, in each Page section you'll see the parameter labeled Order="#" where # is the actual order it appears on the navigation menu beginning with Home at 0. But what if I want my Programs tab to be 0 and Home to be 9? Simple-- change the order for both pages, save, and soft-reset... Presto! Now you'll see the Programs tab by default.

Add a Call History Tab
Adding the Call History tab is the easiest of the custom tabs to add to your interface. You just add one section of code to your 26948339_manila file using the guidelines above and the attached 1d1ee632_manila file to your \Windows directory on the phone. Here's the code to add...

Code:
      <Page Order="10" Name="callhistory.page" PackageName="HTC" Title="[[IDS_CALLLOGTITLE]]">
        <ComponentReference Name="page" Mode9Path="HTC\CallLog.mode9" Component="GizmoRoot" SmartComponent="true" />
        <ComponentReference Name="icon_normal" Mode9Path="HTC\Icons.mode9" Component="People_CallHistory_Off" />
        <ComponentReference Name="icon_selected" Mode9Path="HTC\Icons.mode9" Component="People_CallHistory_On" />
        <ComponentReference Name="icon_preview" Mode9Path="HTC\Icons.mode9" Component="People_CallHistory_Preview" />
        <ComponentReference Name="icon_notification" Mode9Path="HTC\Icons.mode9" Component="Notification_People_CallHistory" />
      </Page>
Just be sure you change the Order="10" to use a number that's not already in use which may involve scrolling through the file to check.

Changing the Internet Globe Icon or Remove the YouTube Link
For some reason, Manila Editor has a really hard time replacing this graphic. In fact, if you even try, you'll end up with a "white out" effect where the icon belongs. The actual manila files in question are:

Globe: 7d3f1247_manila
Globe Selected: 3f00cd2f_manila

However, until Manila Editor works for this graphic, you might think you're out of luck. Not really... instead of those two files, create your own graphics based on 512x256 dimensions with 96dpi and save them as Globe.png and Globe_Selected.png. Then, edit 27c65cbd_manila instead. Change the code for the entire file to look like this:

Code:
<?xml version="1.0" encoding="utf-16"?>
<InternetPortal>  
  <IncludeUserFavorites>True</IncludeUserFavorites>
  <Banner
    DefaultImagePath="\Windows\Globe.png"
    SelectedImagePath="\Windows\Globe_Selected.png"
    Width="480"
    Height="215" />
  <OperatorLinks>
    <Link
      Text="YouTube"
      Executable="\windows\youtube.exe"
      ImagePath="\Windows\HTC\Assets\Images\InternetPortal\youtube.qtc" />
  </OperatorLinks>
</InternetPortal>
Notice the \Windows\Globe.png and \Windows\Globe_Selected.png? That's where your new files need to go along with this updated file.

The only other graphic that has this problem (for now) is the primary background graphic, which is 4a087e41_manila. I'll post more details on that later.

Oh, speaking of 27c65cbd_manila... if you remove the code between the OperatorLinks section, you'll also get rid of the YouTube Link on the Internet tab.

Replace the Email/SMS Notification Icon
If you want to change the color of the Email/SMS Notification icon, you need to use Manila Editor to replace file 36eabe92_manila. To do this, copy the manila file to your computer, use Manila Editor to open it, and click Save As... save it as a PNG on your computer, recolor it, and the use Manila Editor to Replace it. Then copy the new 36eabe92_manila file to your phone.

There's plenty more to come...

I'm using Xperia with TouchFlo 3D...and I want to remove some Tabs but Diamond TouchFLO3D Config tool is not working on xperia...so could you tell me exactly what should I do, step by step if possible. I need to REMOVE these Tabs "Mail tab", "Calendar tab", "Internet tab", "Stocks tab", "Music tab", "Settings tab" and "Programs tab"....which file must I make and what should I write in that file......thnx
  #305 (permalink)  
Old 09-05-2009, 09:47 PM
marcehredt's Avatar
Lurker
Offline
Pocket PC: htc touch pro, and hero!
Carrier: sprint
 
Join Date: Aug 2009
Posts: 22
Reputation: 5
marcehredt is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: HOW TO: Customize TouchFLO3D / Manila Themes

hey just wanted to say a big THANK YOU! im just getting started in the pocket pc world so thank you for all the hard work you and everyone else puts into making the cabs and making things easier for us newbies! you rock !!!!
  #306 (permalink)  
Old 09-08-2009, 07:17 PM
Spydr's Avatar
Lurker
Offline
Pocket PC: HTC Mogul/Touch Pro
Carrier: sprint
 
Join Date: Aug 2008
Posts: 12
Reputation: 0
Spydr is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: HOW TO: Customize TouchFLO3D / Manila Themes

Quote:
Originally Posted by drexappeal View Post
Other things that I have for my theme are
- sprint2flipclock cab
- background4allpages cab
- crystal cab
- nocurtains cab
- custom icons (I think made by darklord from xda) posted by tsowen here (http://forum.ppcgeeks.com/showthread.php?t=44293)
This looks interesting...How did drexappeal get rid of the "curtains"?
Thank you GoodThings.
Thank you in advance to drexappeal

Spydr
  #307 (permalink)  
Old 09-11-2009, 12:43 AM
The Guy 34's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC Imagio
Carrier: Verizon
Location: Southern California
 
Join Date: Nov 2008
Posts: 81
Reputation: 10
The Guy 34 is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: HOW TO: Customize TouchFLO3D / Manila Themes

Does anyone have the cab for the clear sprint slider seen here in the first post the first picture? Sorry if this is a repeat but ive searched all over and found clear sliders but not this one. http://forum.xda-developers.com/showthread.php?t=419799
  #308 (permalink)  
Old 09-21-2009, 08:32 PM
randybaby's Avatar
Lurker
Offline
Pocket PC: touch pro
Carrier: sprint
 
Join Date: Mar 2008
Posts: 11
Reputation: 0
randybaby is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: HOW TO: Customize TouchFLO3D / Manila Themes

i am trying to get your glass clock for my tp2 and when i extract the files and try to paste it in windows it keep saying error no permission and more...........please help

Last edited by randybaby; 09-21-2009 at 10:05 PM.
  #309 (permalink)  
Old 10-01-2009, 01:14 PM
Kweli's Avatar
Lurker
Offline
Pocket PC: Mogul 6800
Carrier: Sprint
 
Join Date: Aug 2008
Posts: 3
Reputation: 0
Kweli is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: HOW TO: Customize TouchFLO3D / Manila Themes

I was wondering if a slider tab could be added for Twitter (Pocetwit or any other twitter apps) used for the Touch Pro.
  #310 (permalink)  
Old 11-17-2009, 11:27 AM
pharrisworth's Avatar
Lurker
Offline
Pocket PC: Imagio
Carrier: Verizon
 
Join Date: Nov 2009
Posts: 1
Reputation: 0
pharrisworth is a n00b
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: HOW TO: Customize TouchFLO3D / Manila Themes

Hello to All ( doesn't everyone love newbies Ü ) I am desperately trying to find a method to repurpose the HTC TouchFlo 3D Icons for an upcoming switch over on our phones. We use Good Mobile messaging, and eithe a Verizon Imagio or Touch Pro 2. I would greatly appreciate help from anyone. I am an IT guy, with some programing and registry hacking experience, but phone are new to me. I would be MORE than happy to Donate for your valuable time and information
Closed Thread

  PPCGeeks > Windows Mobile > Windows Mobile Hacks/Tweaks > Pocket PC Themes


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 04:57 AM.


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