question regarding visual basic 2008(need help) - Windows Mobile Software Development

my problem is that i cant get image loaded in picturebox transparent.
i create picturebox, select image(png with transparent background) , in properties of picturebox i set background to transparent but it just shows white background where it shoud be transparent.
here are 2 imgs. first from designer where everything is ok and other from emulator wich showes that white background. please help!!!!

Search in the settings you need to PictureBox in the Program in which you create applications.
There is no such thing as setting the background ... at least in VS

so there is no way to have rounded buttons in vb or there is??

standard controls dont support transparency, so you're left with 2 options:
- set form backcolor = image backcolor
- create your own controls that support transparency. Here's a starting point: http://msdn.microsoft.com/en-us/library/dd630622.aspx. I did that in my own app and it is horribly time-consuming, but it works great

Related

How To: Customize the Sliding Panels Homescreen

This was from the windows mobile team blog. More to follow but wanted to post it for those who don't read that.
Original link: http://blogs.msdn.com/windowsmobile/archive/2008/06/03/customizing-the-sliding-panel-homescreen.aspx
Customizing the Sliding Panel Homescreen
from Windows Mobile Team Blog by Jorge Peraza
Hi, my name is Jorge Peraza; I am a Developer on the Windows Mobile team that was responsible for the new “Sliding Panel” home screen in Windows Mobile 6.1.
When we were working on the visual style and functionality of the home screen we tried to make something that looked both professional and appealing while still showcasing all the information the user is going to need to know what’s important and requires attention. While I think the default design looks really cool, we added some customization features to enable users to make it their own.
Customizing the layout
The home screen layout can be modified using the same home.xml file from previous versions of WM, the schema of the file was extended to allow the customization of many of its elements, this includes the art assets that are used for most of the plug-ins.
When you open the SlidingPanel.home.xml file (inside \ApplicationData\Home) you will find the plug-in element that corresponds to the sliding panel home screen (its CLSID is {E9267CAB-02EE-4f37-8216-6BF6A8FF5A71}). All the child elements inside it are designed to tweak and customize the way the home screen will look.
The top level element is the plugins tag, this has one attribute called “Order” and it’s used to list the plug-ins that will be shown and the order they are going to be laid out on the screen.
The built in plug-in names are:
1)CClock – The big clock
2)CAppointments - The calendar plugin
3)CHome – The notifications plugin
4)CMyPhotos – The photos plugin
5)CMessage – The message center (this is off by default on all sliding panel built in layouts.
6)CMusic – The music plugin
7)Settings – The settings plug-in
8)Custom Plugin – Users can specify custom plug-ins with static content that can be displayed on the home screen.
For example, the XML snippet bellow moves the photos plug-in to the first position and enables the message center (which is turned off by default on both "Sliding Panel" and "Sliding Panel Media")
<plugin clsid="{E9267CAB-02EE-4f37-8216-6BF6A8FF5A71}" name="Bronze" height="266">
<Plugins Order="CMyPhotos;CClock;CMessage" />
</plugin>
There are many other ways of customizing the home screen using the plug-in settings like overriding the default images or even adding your own custom plug-ins that display static content, I'll post and updated entry latter on on how to do this in detail but for now, you can use the provided home.xml files to start experimenting with this.
The notifications plug-in and message center
In the sliding panel home screen, the notifications plug-in by default serves as a dual-purpose notifications/gateway to all you phone/message accounts where every page represents one account (so, if you have multiple notifications in one category they will be shown as one summary page).
There is however an alternative behavior where individual notifications are added as independent pages (Similar to what the T-Mobile shadow home screen does) and the plug-in only shows accounts that have new notifications in them. One cool feature of this alternate behavior is that each individual notification can be dismissed without having to leave the home screen.
You can enable this alternative behavior by setting the following registry key to a value other than 2 (The actual value indicates how many pages of each notification type will be added to the home screen before collapsing them into a summary page. We have tested 2 and 5 but feel free to experiment with other values)
[HKLM\Software\Microsoft\Chome\Chome]
PageCollapseThreshold: DWORD
Note that this prevents you from being able to access the email/phone account data if there are no notifications for it. If you still want to be able to do that you can always re-enable the message center as described in the previous section as a separate plug-in.
There is one more behavioral change you can make that allows you to “dock” the condensed view of the first plug-in to the top of the screen when it is not active, we added this for people like me that want to have the clock always visible. To enable just set the following registry key to “1”
[HKLM\Software\Microsoft\Chome]
DockOperatorBar: DWORD
Advanced layout modification
There are even more advanced things you can do to further tweak the look of the home screen but it is unsupported by Microsoft at this moment so you’ll have to experiment on your own J (Hint, look at the following files \windows\CHome_240x320.cpr and \windows\CHome_320x240.cpr).
----------------------------------------------------------------------------------------------------
Thanks to djNutz for posting this information & OrganicM for his efforts.
I wanted to create a post with info about what the different keys do in the CHome section of the registry. So, I'll start with a brand new one, that I bet nobody knows about....
[HKLM\Software\Microsoft\Chome\Chome]
PageCollapseThreshold: 2 or 5 (DWORD Value)
This will collapse your Notifications panel to only show active notifications. You can enable this alternative behavior by setting the following registry key to a value other than 2 (The actual value indicates how many pages of each notification type will be added to the home screen before collapsing them into a summary page. 2 and 5 were tested and work pretty well.
More to come of course....
should this change be made to the security section too, or does that matter? actually, do changes to the security section ever matter, cause they seem to apply even when you only edit the software section.
p.s.
i'm pretty sure people are gonna ask, so maybe i'll save some trouble instead of looking like an ass by answering preemptively. This DWORD value must be created with your registry editor, it's not already there, at least on ricky v24.
2 = default or normal (i assume cause it looks the same as before) and 5 = condensed.
But for the rest of us who don't have the time to be on every WM blog and forum at once here's my favorite:
To “dock” the condensed view of the first plug-in to the top of the screen when it is not active, set the following registry key to “1”
[HKLM\Software\Microsoft\Chome]
DockOperatorBar: DWORD
This is so you can have the clock always visible, no matter which panel you're on. You could also set it so that CHome Weather's compact view is always on top. Whatever plugin is first on the list.
More info from MS coming down the pipe:
We can get the day of the week on the clock plugin at the top of CHome by doing this:
Replace this portion...
<!-- Date --> <Text ID="Date" Left="180" Top="83" Width="110" Height="19" FontFamily="Segoe Condensed" FontSize="9" FontStyle="Bold" Wrap="False" HorizontalAlignment="Left" Trimming="EllipsisCharacter"></Text>
With this!
<!-- Date -->
<Text ID="Date" Left="180" Top="83" Width="110" Height="19" FontFamily="Segoe Condensed" FontSize="9" FontStyle="Bold" Wrap="False" HorizontalAlignment="Left" Trimming="EllipsisCharacter"></Text>
<Text ID="Day of Week" Left="65" Top="83" Width="110" Height="19" FontFamily="Segoe Condensed" FontSize="9" FontStyle="Bold" Wrap="False" HorizontalAlignment="Right" Trimming="EllipsisCharacter"></Text>
I will incorporate this in Chome Weather fore sure!
Here you go, the first is my Home
2nd is Scroll Down once
3rd is Scroll Down twice
4th is Scroll Down Thrice
heh
Edit: Tried Month in cpr, no luck.
will keep trying
I'm glad people are finally getting this information out. It makes customization that much easier. I'm adding the tips to the wiki as well, as they come out.
How to Reload the Homescreen
I have two questions:
1. After editing my CHome cpr file, how do I reload the homescreen without having to reboot the device?
2. How can I show any text on the clock panel? Regular text is defined by Text ID = "xxxxx", where xxxxx is something like Time, Network Name, etc. However, suppose I want to have the text "Knowledge Rules", how do I set it up in XML?
I have very little programming and Excalibur experience. So, I apologize if these questions are too naive or have been answered before.
Thanks a lot in advance.
you can use this if you dont use OrganicM Chome Weather
I don't think Microsoft has put out much documentation on the sliding panels plugin yet. Most of the CHome configurations use
Code:
TextID="text 1"
as the delimiter for static text. But that's not to say that the clock plugin will recognize that as a valid section. Could work. Could make your phone useless.
beartard said:
I don't think Microsoft has put out much documentation on the sliding panels plugin yet. Most of the CHome configurations use
Code:
TextID="text 1"
as the delimiter for static text. But that's not to say that the clock plugin will recognize that as a valid section. Could work. Could make your phone useless.
Click to expand...
Click to collapse
I do not understand. How do I make the phone know that:
text 1 = Knowledge Rules?
Typical syntax seems to be Text ID = "xxxx", where xxxx is a variable name, which is recognized by the device. If Text 1 is a valid variable for the device, how do I assign it a value? Am I rambling here?
No, you're not rambling. As far as the information coming from Microsoft and disseminated here on this site goes, it's a best guess right now.
someone at msdn blog asked the same question.
Someone at msdn blog asked the same question. Let's wait to see if we get an answer from there...
From http://blogs.msdn.com/windowsmobile...ustomizing-the-sliding-panel-homescreen.aspx:
"Jorgeba, thanks for taking the time to educate your user. I have some questions.
How do you change the text in the condense clock? The .cpr file has Text ID="Text 1". How is "Text 1" define? I would love to add the date to the condense layout.
The ActionURL and Softkey2 URL in the Appointments plug-in always open calendar in the today view. Is there a way to make one of the button opens calendar in the month view? Setting the default view for calendar does not help."
Easy as pie......
If you know what you are doing.
If you have any xml experience,then you'll know how to adjust x and y values to position things in different places. Yes, you can do that. Just change x=whatever and y=whatever to where you would like them to be. Just know this means that it will start on the left and move x pixels over and y pixels down. If you put in negative values, it will shift them in the opposite direction.
Eg. x=-whatever will move it to the left vs a + value which will move it to the right. Same for y=
Also, you can adjust the valignment and halignment to center, left, or right.
Have fun with these. They apply to everything in your cpr (That's the layout for your homescreen.It's in your \Windows directory on your phone).I mean everything, from where your network displays, right down to your pictures.
That's it. Have fun!
jaymit said:
Hi,
Sorry Im kind of a newbie :s, is it possible to edit home screen panels? I wanted to change the layout and look of the clock plugin.
Thanks!
Click to expand...
Click to collapse
Does anybody know how to change font color for certain panels or certain lines of text in the panel? Is it only possible for the whole homescreen?
As far as I know even as far as old xml coding works, you can only change a font color for a selected word or unselected word. Meaning, if you have the old 6.0 your plugins that are selected could have a different color, but unselected could be another color. This applied to the entire homescreen. I have not seen different colors for different plugins, since each panel style is basically its own plugin (each has its own unique GUID), then I doubt you can change font color for each plugin. You can more than likely only change the active selected panel and inactive panel fonts. I am not sure what their titles are in the cpr, but I know that in the old 6.0, the homecolor was one of the fonts colors and the other was called something else.
Eventhough this is 6.1, it doesn't look like much has changed as far as the fonts color goes. You could, however, always try adding a "fontcolor=" command in the cpr and a hex code and try it, to see if it works.
Hope this helps.
Edit your registry or get CHome Config
Both do the same thing. You want to change the plugin order for CHome. It's located in HKLM\Security\CHome\Default Settings and in HKLM\SOFTWARE\Microsoft\CHome. Edit the order you want your plugins to go. Reboot your phone and the new edits should be reflected in your homescreen layout. If you are having trouble cause this is new. Just search this thread for CHome Configurator. It's stickied at the top of this forum. Download it and it will let you select the order in a much easier way. Make sure you reboot, though, or else your changes won't show. Hope this fixes your problem. Later.
tae-xda said:
How to change the default location for where the CMyPhotos plugin
Click to expand...
Click to collapse
rollingondubs1 said:
I have that already, All my games are under a folder which i cant make it as a action url
Click to expand...
Click to collapse
try this
"ACTIONURL" = "\Windows\Start Menu\Games\xxxxx xxxx.lnk
or this
"ACTIONURL" = "\windows\fexplore.exe; \windows\start menu\games"
Yes you can
One last time, I think I've figured out how to help you.
1. Open Chome Config.
2. Scroll to MyApplication and select it with your center button.
3. Scroll to any page you want to edit. Then scroll down to where it says ActionURL. Press menu.
4. Once in the menu select the "1 Change URL" item.
5. Once you have selected that it will take you to a file explorer. Go to \Windows\Start Menu\Games. This is where your games should be. If not, then wherever you store, your games, navigate yourself to that folder and select the file you want.
I think this should cover it. Hope this solved your problem. HOLLA!!!!
rollingondubs1 said:
I have that already, All my games are under a folder which i cant make it as a action url
Click to expand...
Click to collapse
How to change the location of CMyPhoto to \Storage Card\My Documents\My Picturs

Text color

I ran into this "problem". I changed my background to a picture and used the bg 4 all utility to have the same background on all manila tabs, but now my backgrounds are also changed in the SMS reading panel 'threaded sms), the contacts screen and maybe some others screens too. Because this text is in black, my changed background makes the text very hard to read and it should be changed to white if possible. Does anyone know if and how you can change the text color?
I searched the forum, but didn't find answers.
same problem
i have also this problem.
i deleted this app.but i love it
help help help
is there anyway to make this problem
Would also like to know if there is any update on this, the other alternative I have posted a thread for is how to have a little more customization over where the background goes, e.g. select to leave default background on contact edit window etc etc.
Hopefully someone can help?
Jody
Update on this, found http://forum.xda-developers.com/showthread.php?t=479112&highlight=curtain
The stocklite CAB allows what we were after, only the manilla tabs get the background, the ones with the white background remain.
I am running it successfully on Dutty V3
I haven't personally tried the background for ALL tabs and apps yet, but this does sound intriguing. I have spent ages playing around with an APP that changes ALL the text, pop-up, bars, scrollbars, title, background etc etc colours, in an attempt to have a completely black background and crisp white text (ie. like TF3D). However... there are limitations to this, and it is VERY hard to achieve a consistant and fuinctional look (since many colours are shared, and quite often you come across a pop-up or menu items that are the same colour).
But... if the APP you mention underlays a black background image in PocketOutlook without actually changing the preset windows colour... this may actually work.
Here's the freeware to tweak colours (UI Tweaker): -
http://mobile-sg.com/software/?p=UITweaker&platform=ppc
I'm definitely interested to see if anyone else gets somewhere with this?

[THEME] (07Feb) Max Manila 2.5 - Ultimate v3.0 for 2.5.2011 (LScape + Album Rotation)

Max Manila 2.5 Ultimate is an all in one layout for TF3D. What you get from this is a fully customizable layout that suits your taste for the home screen and more. All settings can be made on the manila itself.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
FEATURES
8 clock arrays + 1 large analog
Call History and Calendar wt possible up to 3 appointments
Weather on demand
4 notification icons (Call History, Calendar, SMS, Email)
12 / 16 / 20 shortcuts
Panoramic / BG4all / Default wallpapers
Retractable tab icons
Full screen mode
AutoLock and AutoMute function (orientation activated)
Transparent slider effect (front tab icon removed)
Support landscape mode for 19222xxx
Rotation animation
And many more.......
REQUIREMENT :
v3.0 for Manila 2.5.2011xxx
v2.7 Special Edition for Manila 2.5 (v2.5.1921xxx and v2.5.19223xx). Supports VGA for 1921 as well
v2.9 for Manila 2.5 (v2.5.19222xx) Lanscape version. More information HERE and HERE
v2.82 for Manila 2.5 (v2.5.19222xx) Landscape version. More information HERE
v2.8 for Manila 2.5 (v2.5.19222xx) Landscape version. More information HERE and HERE
v2.7 and below for Manila 2.5 (v2.5.1921xxx)
RESOLUTION :
VGA and WVGA phones
OPTIONAL :
For those having a slow phone, you can try Neos Driver pack ( do a search in the forum ). It can improve the graphic performance ( reported does not work on all phones ). To install, remember to first turn OFF HTC Sense and Soft Reset afterwards and switch HTC Sense back on.
SCREENSHOTS :
If you are using v2.9, pls also download the patch and overwrite in \windows of your phone after you had installed v2.9 cab.
v3.0 cab for Manila2.5 (v2.5.2011xxx) + added album rotation support
v2.7 SE cab for Manila 2.5 (v2.5.1921xxx and v2.5.19223xx)
v2.9 and above cabs for Manila 2.5 (v2.5.19222xx) Landscape version
v2.7 cabs and below for Manila 2.5 (v2.5.1921xxx)
PLS ENSURE THAT YOU ONLY INSTALL THE CORRECT VERSION FOR THE CORRECT MANILA VERSION
PLS NOTE THAT THE WVGA FULLSCREEN PATCH CAB IS ONLY FOR WVGA USERS. VGA USERS DO NOT INSTALL!!
Please continue to motivate me......
v2.7 and 2.9 Functions
BEFORE USING v2.8, PLS SET ENSURE THE REGISTRY HKCU\Software\HTC\Manila\EnableLandscape = true
v2.7 - only for manila 1921xxx
v2.9 - only for manila 19222xxx (Landscape version)
There is a minor change to the previous versions (v2.6 and below). You can now access the Setting screen by swiping top to bottom. Horizontal swiping is removed and goes back to default where you can access other tabs with the exception when you select Panoramic wallpaper which will pan the wallpaper left/right instead.
Firstly, let me point out the functions of the corners of the screen for different modes.
Max Manila Setting Screen can be accessed by swiping from top to bottom
Menu/Skin Customization (v2.9) - this is the additional selection option appearing on the MENU (accessed from homepage right softkey). What it does is to allow you to skin your notification icons by selecting jpg/png files from your album. Here's how it works.
v2.9 cab will come wt a folder called "MyFolder" in \windows. There are 8 icons 64x64 png files in there which basically is the previous and current version icons.
You can move this folder later to storage card and rename the registry path \HKCU\Software\HTC\Manila\Max_Folder. You can leave this blank and the album will open to the default path. I find this much more user friendly especially when you have tons of folders to search.
You can create your own icon in any square size; for eg, 128x128; 100x100 whatever. It should re-size back to 64x64. File can be jpg or png if you want to have transparency. Later, just dump it into the folder on #2.
Normal (Full) mode - this is your default screen with taskbar at the top and softkeys at the bottom.
Top Left - Navigates to People screen
Top Center - **REMOVED on v2.82** (previous version Cycles Clock Array)
Top Right - Show Battery Info (v2.82 - you can now edit the registry to link to your app.
\HKCU\Software\HTC\Manila\Max_SKTPath = your app path
\HKCU\Software\HTC\Manila\Max_SKTArg = your app argument
Bottom Left - Navigates to Home screen
Bottom Right - Navigates to manila Settings tab ( not Max Manila settings )
FullScreen mode - this can be enabled through your Settings screen. Your taskbar and softkeys will disappear and a fullscreen is displayed. The first time after you activated the screen. Press the HOME button to ensure that the screen fully covers up the task and softkey bars.
Top Left - activates StartMenu
Top Center - **REMOVED on v2.82** (previous version Cycles Clock Array)
Top Right - on v2.82 display taskbar information ( previously display battery info )
: Battery - Press to open up battery info
: Sound Profile - Press to navigate to sound profile setting
: Data connection/signal - Press to go to communication manager
Bottom Right - Lock screen (v2.8 onwards). This can now be changed to link to your app. Tweak the registry below.
\HKCU\Software\HTC\Manila\Max_SKPath = your app path
\HKCU\Software\HTC\Manila\Max_SKArg = your app argument
Bottom Left - Activates the softkeys panel ( when activated, your softkeys will appear for 2secs before it closes itself ) (v2.8 onwards)
Lite mode - removed on v2.81. You can anyway set your manila back to default by using the settings from the setting page below.
Here are the new screen for the Settings page. Most functions retain for now (I'll add more to it later) but I have shifted it around a bit. Arrows basically scroll more settings.
SETTINGS
Wallpaper - there are 3 types of wallpaper here.
a. BG4all - this is the wallpaper which will automatically load up when you select through MENU/Home Wallpaper/Weather Wallpaper. Wallpaper will show on all tabs and is fullscreen on v2.8 onwards. If you leave it, it will not display anything. Setting is "B".
On v2.9, there will be 2 seperate wallpapers. Portrait wallpaper and Landscape Wallpaper which you can select from MENU/Home Wallpaper. This will be HQ wallpaper. So, make sure you pre-format your wallpaper to 480x800 or it will not come out correct.
Portrait Wallpaper - selects your portrait wallpaper.
Landscape Wallpaper - selects your landscape wallpaper. The wallpaper will be rotated 90deg. So, make sure that you rotate your landscape wallpaper -90deg before loading.
Animated Wallpaper - this has now been tweaked to activate the animated components on your Portrait wallpaper. It has been disabled for landscape.
Remove Wallpaper - removes both portrait and landscape wallpapers.
b. Full - the file is a 1024x768 size jpg called "MaxBackground.jpg". This wallpaper will fill up fullscreen and all tabs. It is used in 3 different functions.
"P" - stands for panoramic. When this is activated, you can swipe left/right to pan the wallpaper.
"F" - stands for full. It will remain still at where you have previously panned.
"H" - stands for home only. This wallpaper will only show in home and the other tabs will have the default wallpaper (read below)
c. Default - this is the manila wallpaper that requires app like HDWall to create. Rather than using the latest file of 512x1024, I have reworked a fullscreen default wallpaper using the old filenames. If you are using HDWall, go to config and select profile "TouchFLO v2.5 BETA - No Compression - All Tabs".
4bfcbbee_manila
54612042_manila
In landscape mode, this will be replaced wt another wallpaper. The construct of these files are as such
0509ab83_manila : Left
- 512x512 manila qtc
- actual wallpaper dimension 480x480 (from top left)
47fb5656_manila : Right
- 512x512 manila qtc
- actual wallpaper dimension 320x480 (from top left)
Assuming you have a landscape wallpaper of 800x480. Below are some instructions how you can make your own.
- for the RIGHT wallpaper, crop from the right to 512 and expand your bottom to 512
- for the LEFT wallpaper, crop from the left to 480 and expand right to 32 ( your total width should be 512 ). Do the same for the bottom.
*******on v2.9, this has been removed due to it's redundancy*******
Call History (Call H) - toggle the call history on/off. This will now reside on top of the calendar. Voicemail alert has been added for v2.8 onwards.
Calendar - you can now select option 0, 1, 2 or 3. 0 will not show the calendar bar on the screen. Pls make your own adjustment to avoid any overlaps as I have removed this feature due to the inclusion of VGA which complicates the matter.
Slider - for those who does not have this feature build into the ROM, you can toggle the icon off. What this does is that it removes the first layer of the tab icon which makes your transparent slider looks much nicer when sliding through all the tabs. "ON" means slider effect is switched on.
Mute - you can now activate a silent "S" or vibrate "V" mode when you put your phone face down ( that means front screen facing the floor )
AutoLock - when turn on, your phone will goes into LOCK mode when you turn your phone upside down ( that means rotating your front screen 180deg )
Alert - here you can select whether to display the shortcuts or notification icons on screen. Also note that on v2.8, the notification icons will only display in fullscreen landscape mode only with the exception in normal mode, when your tab icon is retracted.
NS - both shortcuts and notification icons will display
S - only shortcuts will display
N - only notification icons will display
OFF - both will not display
Hide Tab (previously called Tab Icons) - in v2.8, this has been renamed to Hide Tab to avoid confusion. This only works in normal screen mode. When "ON", it will activate the retractable tab icons. In fullscreen mode, this will disabled for the sake of accessing softkeys.
Weather - this is where you toggle your weather animation. It is best to toggle it off to gain speed especially when you are loading wallpaper for BG4all.
Shortcuts - you can select 12/16/20 shortcuts for WVGA and 9/12/15 for VGA.
If you have problem accessing your shortcuts, go to the registry HKLM/Software/HTC/Manila/Home and look at the numbered folders. Chk out the "IsSet" and set it back to 0. Remember to do a SOFTRESET afterwards.
In lanscape mode, shortcuts will change to 3 columns for WVGA and 2 columns for VGA. (not tested on VGA device yet bcos 1922xx not ready)
Fullscreen - this will activate the fullscreen mode. Fm v2.8 onwards, the fullscreen softkeys can be accessed by pressing the bottom left while in fullscreen mode. The softkey panel will appear for 2secs.
Titanium - this will deactivate TF3D and goes to WM6.5 Window Default UI. To get back to TF3D, just go to StartMenu/Settings/Home/Items and select HTC Sense.
Goldfish - my own hobby app which will create an animated fish swimming around your screen. To close the app, just double tap the goldfish.
LTab - when "OFF", this will retain the original tab during landscape. Your other settings must be Hide Tab = OFF and Fullscreen = OFF. This is normally to be used when you want to set back to default settings.
Resolution - select "W" for WVGA and "V" for VGA phones.
Clock - this now replace the big analog clock button and incorporate all clocks into one including a full blank screen. As for the big analog clock, you can move the clock around by press+hold and move. This clock also has 3 functions to it.
Left - will toggle the inner face of the clock
Top Right - goes to world clock page
Top Left - cycles the size of the clock
The text on the setting button is labelled as below :
FA - Flip and Analog Clock
SA - Spring and Analog Clock
D - Digital Clock
AA - Dual Analog Clock
MF - Medium size Flip Clock
LF - Large size Flip Clock
S - Large size Sprint Clock
LA - Large size Analog Clock
AC - Huge size Analog Clock
OFF - Blank Screen ( removed Notification and Shortcuts )
********The text "My HTC" on sprint clock can now be edited from the registry************
\HKCU\Software\HTC\Manila\Max_TextName = text displayed on the sprint clock
\HKCU\Software\HTC\Manila\Max_TextSize = font size
Rotation - to use this, pls ensure that you do not have any external program activating the rotation of the manila or you may encounter conflicts. Below are the 3 functions :
OFF - deactivate all rotation but maintain the album/music rotation
R - rotates your screen clockwise when your turn your phone right. In this mode, your album/music turn landscape in the normal direction but can also be rotated when turn the other direction.
L - rotates your screen anti-clockwise when you turn your phone left. In this mode, album/music rotation will be disabled and replaced wt the landscape mode.
B (only on v2.9) - rotates both ways. Album/music rotation will be disabled and replaced wt the landscape mode.
When phone is facing up ( screen on top and flag ), it will not activate any rotation event.
3D - this basically toggles the look of your shortcuts between normal and 3D like when you scroll it up.
TBar - this basically toggles the display of fullscreen taskbar indicators. Can only be activated when not in fullscreen mode.
PAnim - cycles through the type of rotation animation for portrait wallpaper. Here's the description of the text.
OFF - no animation
SD - slide down
SU - slide up
SL - slide left
SR - slide right
RA - rotate anticlockwise
RC - rotate clockwise
O - increasing opacity
FU - flip up
FD - flip down
? - random
LAnim - cycles through the type of rotation animation for landscape wallpaper. Here's the description of the text.
OFF - no animation
SD - slide down
SU - slide up
SL - slide left
SR - slide right
RA - rotate anticlockwise
RC - rotate clockwise
O - increasing opacity
FL - flip left
FR - flip right
? - random
Notif - adjust the notification size, position and effects.
N - normal size (standard position)
NT - normal size; hidden when no alerts (standard position)
S - scaled down (lower position)
ST - scaled down; hidden when no alerts (lower position)
v2.7 WVGA Fullscreen Softkeys
Here's the status of the WVGA Fullscreen Softkeys. It is not finished yet but I thought it will be good that you all can help to beta test it. You practically have now a pretty smooth operation in fullscreen mode as I have tweaked the script to remain in fullscreen mode especially after exiting from album and music.
Home - ok
People - ok
Messages - ok
Mail - ok
Internet - softkeys showing but disabled due to some issues for now
Calendar - intermittent hang problem when switching calendar. To release, press HOME and you can get back to calendar again
Stocks - ok
Album - ok ( when changing to landscape, the screen just momentary disable fullscreen in order to trigger certain events )
Music - ok ( Left bottom button in landscape fixed )
Weather - ok
Twitter - ok
Footprints - ok
Settings - slight modifications. Pressing settings will go straight to the settings page instead of opening up another menu for All Settings and I've added a left softkey to go back to HOME screen
There's a new tab, not sure what it's called "Documents"?? which I will work on when I get a chance to flash the new ROM.
As for the VGA version, this will come shortly as I have to work on the original VGA files instead bcos the WVGA version will mis-align some stuff for VGA.
BTW, it is ok to install/uninstall on top of the the main cab as both of them do not share any files in common.
Components / Skins / Misc
29Aug - All components are updated with manila files. Download again if you are not having the correct files.
Analog Clock Components ( for MaxTTM )
Sprint Clock Components ( for MaxTTM )
There is a HUGE list of components under my signature Milski 2.5 Components. Pls go there to find whatever that suits you.
My Goldfish app.....finally found a place
(Cab download below. If you are using MaxTTM to deploy the layouts and components, install this cab)
How does it work???
- Single tap and fish will swim faster ( works better in screens with less resources like calculator )
- Press + Hold to move fish
- Double tap to exit
Panoramic Wallpaper ( Click and save full image fm imageshack. Copy file to \Windows )
-----------------------------------------------------------------------
Pls read HERE for details on Max Manila 2.5 - v2.6 beta before you download.
Max Manila 2.5 Ultimate Layout
Max Manila 2.519202525 Ultimate - v2.5 ( for latest manila 2.5) - 16/20 shortcuts (Read Here)
Moving pictures paints a thousand words...... HERE
Thks to Millski for capturing this.
1. Controls
2. CLOCKS
3. SETTINGS
4. NOTIFICATION ICONS
Call History - press to go to call history page
Calendar - shows number of appointments available within 48hrs. Pressing the button will go straight to calendar page
SMS/MMS - press to go to SMS page
Mail - press to go to mail page
Thks to Grzegorz for the icons and transparent sliders.....
For Manila 2.1919xxx Users
It is very similar to the original 2.5 theme except that the fullscreen and rotation do not work. In place of the rotation button, you can now toggle your retractable tab icons to stay permanently. Pls also note that the manila components for manila 2.1 is different. The only components which you can download and replace is the panoramic background on post#4.
Looks simply amazing. Waiting anxiously to see this one.
wow... pretty cool
great work u did here m8!!!
Could you maybe pls share manila name of new "clock-wheater-area"?
/e: or how did you do all that at all?
oh my dear god!this is amazing!!
Thanks a lot man for your great job!!I love this very much!!plase release the .cab as soon as possible!Thanks again!!
Bugs, Problems and Fixes:
Problems with fullscreen mode using MaxManila 2.7SE:
Download and install the fix files from this post. Thanks to ceesheim.
Problems with 'Portrait Wallpaper', 'Landscape Wallpaper' and 'Remove Wallpaper' options not showing under Home tab menu (instead getting standard 'Weather Wallpaper' option):
::Update:: I haven't been able to gather enough information from people with this bug. Please take a look at my post here and download the Home_Pages.xml file. Copy it to your Windows dir using Total Commander and soft reset. If this works please report it in the thread or pm me. The ManilaFull.xml attached to the post may or may not be compatible with your Sense 2.5 build; try it at your own risk!
MaxManila installs an edited 'Home_Pages.xml' file to enable these options. If your rom is not WWE it will use a different file called 'ManilaFull.xml'. A fix is described here. Thanks to Intruder73. I hope to get a ready made 'ManilaFull.xml' file posted here as a patch some time in the future. In the meantime yome has detailed the edit here.
Rotation/landscape problems:
Different manila builds have different levels of support for landscape. Individual rom cooks also enable or disable registry values and the GSensor as well as installing third party rotation apps. This will all affect the way landscape is supposed to work in MaxManila. Check the following (these are all suggestions that may help; I have found no definitive solutions):
Registry: HKCU\Software\HTC\Manila\EnableLandscape = false (This is the correct setting)
Apps: GSensor '(Diamond 2 GSensor.cab') is installed, no third party apps installed (i.e. ChangeScreen etc.)
GSensor whitelist: Download and install BsB GConfig and make sure 'Manila.exe' is removed from the whitelist
"It won't work on rom xxxx" problems:
Simple answer: Try another rom then. Complicated answer: Does the rom use CFC compression? twopumpchump has made a patched mode9.dll file to get it working Download and instructions here.
Some Quicklinks not working:
Neither Max nor I have been able to replicate this problem so Max can't fix it. A workaround is to go to the MaxManila settings page and cycle the number of shortcuts. When you return to the Home tab the Quicklinks will all work again.
Great Max.
Think it is good with a new tread. The first tread is very big and a little impossible to find the answer becaurse of the constantly new manilla files.
Looking forward to see the new program from you and the components.
ClydeB1 said:
Looks very interesting. Waiting anxiously to see this one.
Click to expand...
Click to collapse
Let me know if there's any bug....
Buembel said:
wow... pretty cool
great work u did here m8!!!
Could you maybe pls share manila name of new "clock-wheater-area"?
/e: or how did you do all that at all?
Click to expand...
Click to collapse
It's complicated. Involves a lot of Lua scripting.
delight_11 said:
Thanks a lot man for your great job!!I love this very much!!plase release the .cab as soon as possible!Thanks again!!
Click to expand...
Click to collapse
It's available for download now.
millski said:
Superb work Max. Been fiddling with the prerelease I used for the video and I should have a few components up in the next couple of days. This layout is ace
Click to expand...
Click to collapse
Thks buddy.... can't get this up without your help.
The Boss said:
Great Max.
Think it is good with a new tread. The first tread is very big and a little impossible to find the answer becaurse of the constantly new manilla files.
Looking forward to see the new program from you and the components.
Click to expand...
Click to collapse
I agree. Enjoy.
super
can you explaun how you make transparent taskabar
and bottom bars?
vidojajce said:
super
can you explaun how you make transparent taskabar
and bottom bars?
Click to expand...
Click to collapse
You have to use MaxTTM to convert that. I've written a tutorial on this but without the images ( run out of bandwidth )
http://forum.xda-developers.com/showpost.php?p=4075682&postcount=907
downloading first!
its only working on cooked roms?
or we can try it on the stock one 6.1?
Hmm.. I'm not into lua scripting.. - but could you maybe tell me the manila file name of the black background layer behind the clock?
At the moment I'm trying to get these things more transparent..
Cobrav said:
its only working on cooked roms?
or we can try it on the stock one 6.1?
Click to expand...
Click to collapse
So you have a stock wm6.1 running manila 2.5
This is only for manila 2.5 AFAIK.
Maxycy, this is phenomenal. Thank you so much, at last I've gotten rid of that bug/feature of the clock scrolling 1 hour and 2 minutes every time I change to the Home tab.
Buembel said:
Hmm.. I'm not into lua scripting.. - but could you maybe tell me the manila file name of the black background layer behind the clock?
At the moment I'm trying to get these things more transparent..
Click to expand...
Click to collapse
0b6f5c5e_manila is the white highlight when you touch the black background, the background itself is 31794a12_manila.
Installed CAB on Miri Rev7 (not 7.1), doesnt work.
Any idea?

Changing AT&T background in TF3D

Is there any way to change the background in TF3D from AT&Ts logo to anything else? I can change the home page, and the lock screen without TF3D enabled, but as soon as I enable it again and go to any tab in TF3D the AT&T logo is there. What can I do about this, without changing ROMs?
Search for TF3D or manila 3D themes, download the one you like and install it on your T2
Cjaiceman said:
Is there any way to change the background in TF3D from AT&Ts logo to anything else? I can change the home page, and the lock screen without TF3D enabled, but as soon as I enable it again and go to any tab in TF3D the AT&T logo is there. What can I do about this, without changing ROMs?
Click to expand...
Click to collapse
The following files in \Windows are the TF3D background images (Top/Buttom Portrait & Left/Right landscape).
Code:
29cff4fe_manila
058acf31_manila
77feee1d_manila
70083a29_manila
These are 3D Polygon Textures. You need a program such as CFC GUI to edit those images. Under the "TF3dv2" menu select "Create background". Choice either Portrait or Landscape WVGA from the drop down & click "Load". Choose the image you want (Must be a PNG, It helps to create the Image you want & crop it to the correct size ahead of time, WVGA Portrait = 480 Wide x 696 Tall in Pixels/Landscape = 804 Wide x 377 Tall). Uncheck the "CFC" Check Box & Click Save. It'll save the files in the folder you choose during the initial setup. It'll create 2 _manila files for each Portrait or Landscape. Copy these to your SD Card & then use Total Commander or Rosco Explorer to copy them into \Windows overwriting the originals. Restart TF3D to see the change.
EDIT: There's a scrollbar on the right side of the BG creation window. Use this to adjust brightness. You'll notice the images are a lot brighter then the BG's I made. I darkened it so the text would show better. In my first attempt, the BG was too bright & the white text became hard to read in certain places.
Search for HDWall, it works good and does what you want I think. I also had to run one of the Manila cabs (HQWallpaper patch or something) that was included in one of the folders with HDWall.
Thanks for all the ideas and suggestions.

An app idea...about accent colors (utopic right now...) :(

I was thinking that at the time where developers will have access to Mango accent colours, it could be a lovely idea to make an app like this:
http://colorschemedesigner.com/
Imagine a "light version" of this app for WP7 with:
1. The same access to color data (viewing of hex/rgb values)
2. A big "randomizer button" to randomly produce combinations (like the one inside the online app menu...)
3. Presets with load save
4. ..an "apply as theme colors" function (the app would map the generated colors to each of the available parts (registry keys) of the OS.
..someone could tap the randomizer button if he doesn't know about color combinations, until he finds one he likes. Then, he could manually or automatically (randomly) map colors to the appropriate areas of the OS. (I think this is about 3-4 color mappings), save the combination into a preset and apply it by adding it as an accent color in phone's theme menu.
I could definitely buy such an app, even if it was an expensive one.
i think what you are looking for is called Advanced Config
Cristi93 said:
i think what you are looking for is called Advanced Config
Click to expand...
Click to collapse
Advanced Config:
1. Doesn't work properly (It closes right after I open it in Mango and I also get an error message at the start. I had it before some months and it worked...I don't know what happened)
2. It doesn't have a color scheme generator (we can just choose one color for the tiles and active fonts and that's all). So we can't change background / tile / tile font colors according to an already tested combination of colors.
3. It doesn't have a randomizer (which, if all the above existed, could modify all of the OS colors with a minimum amount of aesthetic errors. Not all combinations are suitable for every use, but at least many of them could be quickly accessible with just the press of a button and they could be even modified if the user wanted.
...for those who say that WP7 has already great colors and doesn't need apps/functionality like this I can say that the system doesn't get bloated with an advanced color customizer. It gets bloated when someone tries to radically change the style of the UI, like making the 2d icons look like "iphone 3d icons" etc...that could be bad...but having the ability to properly change tile/background/font colors, is like MS making us part of their design team.
Moved to WP7 Software development
This is not the place for a discussion about a non existent app. Please post in the correct section.
Take it easy
O_G
Sorry for the wrong thread. I hadn't noticed that section..

Categories

Resources