[MOD][XPOSED][4.0+] Smiley Replacer 1.3 (17.02.2013) - Xposed Framework Modules

This isn't compatible with most KitKat ROMs!
Not sure how many of you are using the MMS/SMS app that comes with AOSP, CM and most other ROMs. It's good enough for my usage (don't text much), but I never liked those smileys. I do love the ones I use in Miranda though (from Kolobok).
So here is a solution to that problem, at least if you have root access. I developed a module for my Xposed framework. For those who haven't seen it yet, it can do many modifications to the system and apps in memory, without modifying any APKs. This makes it easy to try out and many modules can work for a broad range of ROMs.
I you want to try it, follow these steps:
1. Install the Xposed framework as described in this thread (REQUIRES ROOT!)
2. Install the attached APK and activate the module in the Xposed installer (this is also described in the framework thread)
3. Reboot
Then, download at least one smiley pack to your phone (see second post) and follow these steps to use it:
4. Import the smiley pack into the app
4a. Start the Smiley Replacer app
4b. Click "Choose a smiley pack"
4c. Click the "add" button (you might need to press the menu key if there is no such button)
4d. Use your favorite file browser to select the smiley pack
4e. Click "Start import"
5. Choose the smiley pack you just imported from the list
6. Restart the MMS/SMS app (there is a button for that which makes sure that the app is properly killed before)
This will only work for 4.0+ ROMs and only for the standard MMS/SMS app, assuming it's based on AOSP and the smiley renderer is not drastically modified. For example, I'm using CM10.1 (Android 4.2.1), but it also worked for Tungstwenty on a Samsung stock ROM with Android 4.0.3. Even though we both have a Galaxy S2, this module will also work on other devices. It only depends on a small subset of the MMS/SMS app code. So I hope this is the correct subforum (if not, feel free to move it).
Some things to note:
- This module doesn't include any smileys itself. You will need a smiley pack, which is easy to create (see second post)
- Smileys can be animated gif files. :victory: This makes it different from simply replacing the images. Please note that this requires many refreshes of the UI. On my phone, the CPU load is still ok, but maybe for some devices with less performance will have problems.
- Source code: https://github.com/rovo89/Smiley-Replacer
Changelog:
1.0: Initial version [116 downloads]
1.1: Fix cut-off smileys and MMS/SMS restart, add size selector [21 downloads]
1.2: Added an option to disable auto-resizing [10 downloads]
1.3: Fixed: Static smileys were still resized even when this was disabled

Example smiley packs / Format description
Smiley packs
AOSP: Default smileys from AOSP 4.2. That's not a big effect as your phone probably uses them already, but might be a good starting point for smiley packs. Especially if you have replaced the smiley graphics in the MMS.apk previously as you just need to replace the images.
Kolobok (attached): I use this one for myself. It contains the animated Kolobok smileys, which are simply lovely.
HTC Sense by noooooo
Emoji by noooooo
Facebook by Suprash
Facebook Messenger by Suprash/saywhatt
ICQ by noooooo
Yolks by saywhatt/bad-blood
IconTexto by saywhatt/IconTexto
Sony Xperia by m1l4droid
Hangouts by noooooo
tuzki animated transparent by justnoone
Skype smiley (Animated) by sasadara
Samsung ChatOn Emoticons by justnoone
Full Yahoo Emoticons Pack by MFaust
Galaxy Note Stock Emojis by justnoone
Cut the Rope by AlkaDragos
Facebook stickers by noooooo
BlackBerry Messenger by marsigliah
Huawei by MFaust
Kik Smileys by marsigliah
HeyWire Emoticons by marsigliah
LINE Stickers by marsigliah
Xperia Z1 by beatrat
Square by daniel_m
And a bit special, for those who don't want to have any smileys at all:
No smileys by m477m
File format
General
A smiley pack is a zip file consisting of a few text files for the metadata and of course the images, all directly in the zip (no subfolders).
I recommend to use "xyz.smileys.zip". Files ending with ".smileys.zip" can be opened and imported directly (unless your file browser insists on opending zip files itself).
In case you want to use characters like umlauts, you need to use UTF-8 character encoding without Byte Order Mark (BOM). I'm using Notepad++, where you can easily select this from the menu.
There is no limit of smileys, however keep in mind that quantity is not everything and that the smileys are local to the phone where the smiley pack is installed. Limit yourself to smileys you and your conversation partners actually send.
Images
I recommend to use png for static smileys and gif for animated smileys. In theory, other file formats like bmp should be supported, but it's untested and probably doesn't add any value. Transparency has to be included in the file itself, i.e. you should see it in the Windows image preview or whatever you are using.
The image size should be something between 20-30px, close to what they are normally display. The images are scaled automatically to match the text height.
info.txt
The first line of this file is the title of the smiley pack. All following lines are the summary.
codes.txt
This file contains a mapping between the images and the codes they replace. There is one line per smiley, empty lines and lines starting with a hash (#) are ignored. Each line has to start with the filename, then one or more blanks, then the main code (which is displayed in the "insert smiley" dialog), then optionally further codes, separated by one or more blanks. For example:
Code:
smile.gif :) :) =)
This would define a smiley with the (animated) image smile.gif, the main code "" as well as further codes "" and "=)". Any occurences of these codes will be replaced with the smiley image.
Only smileys defined in this file will be considered, any other images will be ignored. This file also defines the order of the smileys in various lists. The first smiley in this file will be used for the preview in the "choose smiley pack" screen.
descriptions.txt
Here, the texts displayed next to the smileys are defined. The format is similar to the one of codes.txt. The first field is again the filename, which is followed by one or more blanks. Everything after that is the smiley text. If no description is given for a smiley, the filename without extension will be used.
I recommend to re-use the texts of the builtin smileys if possible. You can do that with the dummy description "DEFAULT:XYZ", where XYZ stands for default smiley. Have a look at the AOSP smileys for a list of all supported smileys and the corresponding texts. As the texts will be taken from the installed MMS/SMS app, the text might vary slightly. But the good thing is: Translations are applied as well, so you profit from a wide range of supported languages.
Examples:
Code:
smile.gif I'm so happy
sad.gif DEFAULT:SAD
Translations
As mentioned in the previous section, the easiest way to get translations is using "DEFAULT:XYZ" whenever possible. However, you might want to add completely new smileys. If you just add the text to descriptions.txt, it will be used for all languages.
To add translations for selected smileys, you can create files like "descriptions-de.txt" (language) and "descriptions-pt-rBR" (language and region). This is the same naming convention as used for Android resources. In these files, you use the same format as in descriptions.txt, however you should only include those smileys which you want to translate. Other texts are inherited from more general files, which means that everything not translated in e.g. descriptions-pt-rBR.txt will be taken from descriptions-pt.txt. If it doesn't exist there either, it's taken from descriptions.txt. The last fallback is the filename without extension as mentioned before. So you don't need to repeat the text from those general files, especially not the "DEFAULT:XYZ" texts.
That's it, I think that should cover it all. For examples, look at existing smiley packs. If you have created a new smiley pack, ping me and I will add a link in this post.

Re: [MOD][XPOSED][4.0+] Smiley Replacer
Working perfectly on stock based 4.1.2 Samsung ROM, on my Note 2. Amazing work, thanks
sent from somewhere

Re: [MOD][XPOSED][4.0+] Smiley Replacer
Great job man

Re: [MOD][XPOSED][4.0+] Smiley Replacer
what about iPhone emoji which is basically what the droidified ones represent ?
Sent from my HTC Sensation using xda app-developers app

Emoji are left untouched by this mod. I haven't looked into them for a couple of reasons:
- Both sender and receiver need a phone that supports emoji
- For you to see an icon, the sender needs to actually insert an emoji, so you don't have the control yourself
- I have never sent or received an emoji
- I think emoji are a bit more standardized than smileys, so I'm not sure if they should be changed too much

I just added the file format descriptions to the second post for anyone who would like to create their own smiley pack.

Confirmed working on 4.2! Great work man! I had been looking for something similar for ages! 2proposal if i can say them:
1 maybe add a facebook and sense 4.5 static pack
2 maybe make them quite bigger
however, fantastic work!

I love the Kolobok smileys, so I'm not gonna use any others. But opinions differ, that's why I chose not to hardcode my preferred smileys but created a file format that is open and it doesn't require any programming skills. Create whatever you like and please share the results.
About smiley sizes: I thought it would be good that they are just as high as the text around them, so that the line height and the space between the lines is unchanged. I have just tried and applied a hardcoded scaling factor - it works, but to me it doesn't look nice because the line spacing is uneven.

rovo89 said:
I love the Kolobok smileys, so I'm not gonna use any others. But opinions differ, that's why I chose not to hardcode my preferred smileys but created a file format that is open and it doesn't require any programming skills. Create whatever you like and please share the results.
About smiley sizes: I thought it would be good that they are just as high as the text around them, so that the line height and the space between the lines is unchanged. I have just tried and applied a hardcoded scaling factor - it works, but to me it doesn't look nice because the line spacing is uneven.
Click to expand...
Click to collapse
I've tried to make an xperia mod pack but it recognises only the smileys i haven't changed, can you help me?

You are using many png files, but all of the smileys in codes.txt are .gif. You have changed descriptions.txt, but most important is codes.txt: "Only smileys defined in this file will be considered, any other images will be ignored."

So, here's the one X pack and, if possible tell me what to modify if i want them quite bigger!, thanks!

In the class MovieSpan, add one line:
Code:
public int getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) {
if (fm == null)
fm = new FontMetricsInt();
paint.getFontMetricsInt(fm);
[B][COLOR="DarkGreen"]fm.ascent = fm.top = (int)(fm.ascent * 1.2);[/COLOR][/B]
if (mVerticalAlignment == ALIGN_BASELINE)
fm.descent = fm.bottom = 0;
mScale = (float)(fm.descent - fm.ascent) / mMovieHeight;
return (int)(mMovieWidth * mScale + 0.5f);
}
Same in AutoHeightImageSpan (well, actually you need to copy the whole method as I forget to make it similar to the one in MovieSpan):
Code:
public int getSize(Paint paint, CharSequence text, int start, int end, FontMetricsInt fm) {
if (fm == null)
fm = new FontMetricsInt();
paint.getFontMetricsInt(fm);
[B][COLOR="DarkGreen"]fm.ascent = fm.top = (int)(fm.ascent * 1.2);[/COLOR][/B]
if (mVerticalAlignment == ALIGN_BASELINE)
fm.descent = fm.bottom = 0;
int height = fm.descent - fm.ascent;
float scale = (float)height / mDrawableHeight;
int width = (int)(mDrawableWidth * scale + 0.5f);
mDrawable.setBounds(0, 0, width, height);
return width;
}
Note that this will not scale the smiley by exactly 120%, but something close to it. This is because the top of the drawing area is moved up, whereas the bottom stays the same. With this, at least only the space before the line increases, not the space after the line. That said, I can only repeat that I don't think it looks nice with uneven spacing, but if there is a high demand for this, I might make this an option.

Thanks but i thinks it's too complicate for me i'll keep the small one

Well, as I said: Maybe that will be an option one day. However, maybe you can say anyway what you think about the downside of the larger smileys: the uneven spacing. This makes it a no-go for me, but maybe other think it's fine.

yeah i noticed too that some smileys are cut

What do you mean with "cut"? I had a short look at our smileys and they were fine. If you mean the conversation list, then it's normal that the text (including smileys) is cut off at the right-hand side.
One more question: You describe your smileys as "Sense" smileys. So that means they are the default ones from HTC Sense?

R: [MOD][XPOSED][4.0+] Smiley Replacer
And yes,the default ones
Inviato dal mio HTC Sensation con Tapatalk 2

great job man!!
great job

noooooo said:
And yes,the default ones
Click to expand...
Click to collapse
Ah yes, this is what I had fixed for the animated smileys, but forgot for the normal ones. Happens when there are only smileys in one line, no text. I have a fix for this (I think), but not enough time today to release it.

Related

[APP] \\\\\\\ FingerKeyboard v2.1 /////// best WinMo typing experience!

{
"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"
}
For VGA and QVGA we recommend that you install Giannis86 versions, since they contain all language layouts. New Giannis QVGA fixed cabs are now available, as well as official WVGA / WQVGA with small updates in layouts for: Greek, Spanish and Hebrew languages.
>>> HOT! Giannis86 VGA with arrows cab / all languages included and some extra features!
>>> HOT! Giannis86 QVGA with arrows cab / all languages included and some extra features!
>>> HOT! Giannis86 QVGA without arrows cab / all languages included and some extra features!
>>> Available for download: Giannis86 VGA without arrows cab / all languages included and some extra features! You can read more about Giannis86 VGA version in a dedicated thread.
>>> Available for download: WVGA & WQVGA (all languages)
>>> Available for download: VGA & QVGA - utak3r editions
(not all languages included)
Check out FingerKeyboard video demonstration:
​
Please note that the speed of typing in
this video is intentionally slightly slowed
down - this was done so that it is easier
to see what buttons are being typed
during the demonstration.​
BEFORE INSTALLATION:
Before installing FingerKeyboard2, please make sure you find out what is the correct installation version for your device. You will see that we have attached several different versions - they're designed to work on specific device resolutions.
Do not download before you know exactly what you need for your specific device! Explanation of how to discover what resolution your device has is described in HELP AND FAQ document listed few posts below!
Speaking of which - READ the whole HELP AND FAQ text; it will help you understand how to configure and use this keyboard!
INSTALLATION:
- IF YOU HAVE OLDER VERSIONS OF FINGERKEYBOARD, PLEASE UNINSTALL THEM BEFORE INSTALLING V2.1! After removing old version, please restart the device and remove FingerKeyb folder before proceeding!
- Run the attached .cab file (recommend you install to device memory).
- The keyboard will install into /Program files/FingerKeyb. There is also a link to Configuration tool in the Start > Programs.
- After installation, a Configuration utility will open. Here you can customize the layouts, choose color schemes and configure various options of FingerKeyboard2.
- Click on OK and softreset the device.
- Open up your standard keyboard (in SMS for example), click on the small arrow next to the middle keyboard icon and go to "Other input options".
- FingerKeyb should be listed there, select it and you're good to go!
- If you wish to set FingerKeyb as default keyboard, even after restart of your device, use SIP change application. Remember to set the time-delay to 40-50 seconds!
HOW TO UNINSTALL?
Go into Settings > System > Remove programs. It is listed as "Exidler's FingerKeyboard".
CREDITS:
Created and programmed by Exidler
Designed by Rozenthal
Main tester ChrisCross
Big thanks to people who helped us in creating this application (in no special order): Berkut_G, utak3r, GoldCoin, Cerato, Schreda, Panosha, JBouRas, SBS, BadCluster, Taiseer999, Borchert, Hanackin, Iligcons, Allbercik, Ombre.px, Nvidia32, derfler, ilovepunani, elite-fusion, RoozbehDream, Giannis86, parasite81, bugsykoosh, Reefhunter49, Chompy18 (if I forgot someone, please PM me!)
PROGRESS:
v2.1 - new and improved FKBD2 with unique features (5. april, 2009)
v2.0 - official release of updated FingerKeyboard
v1.4 to v2.0 beta - closed beta testing (link to 1.4 thread)
v1.4 - alternate language layout for landscape mode. New vertical num pad.
v1.3 - updated landscape graphics and layout, fixed bugs.
v1.2 - updated vertical layout, now supports limited landscape mode, new .dll and register files.
v1.1 - vertical support for 2 languages + numeric keypad, new graphics, new layout
v1.0 - exidler's original version
DISCLAIMER / LICENSE / EULA
Please read carefully the terms and conditions of this End User License Agreement ("EULA") before installing FingerKeyboard software ("Software").
This EULA provides a license agreement between authors of FinkerKeyboard ("Licensors") and you (person) ("Licensee") to use the Software and contains warranty information and liability disclaimers.
By installing and using the Software you accept and agree to the terms of this EULA. If you do not agree with these terms and conditions, you must cancel the installation or, if the Software is already installed on your device, promptly uninstall it.
OWNERSHIP
The Licensee acknowledges and agrees that the Software is a product of the Licencors. It is protected under international copyright law. All copyrights are exclusively owned by Exidler and Rozenthal.
LICENSE GRANT
The Software is freeware. However, the Licensee may use it only and exclusively for private personal and non-commercial usage, and only under conditions which do not contradict the restrictions noted below. If you want to use Software for anything else, you must contact the Licencors. Software may not be bundled or distributed with any other package without written permission of the Licensors.
NO WARRANTIES
The Software is distributed "as is" WITHOUT WARRANTY OF ANY KIND. The Licensee uses the Software at his own risk. The Licencors shall not be liable to the Licensee for any kind of consequences, which occur or not occur while installing, using or uninstalling the Software.
RESTRICTIONS
In accepting the EULA granted by Licensor, Licensee agrees that he shall not
1. Sublicense, sell, lease, rent, permit use of, give, or lend the Software
or any copy or portion thereof;
2. Decompile, disassemble, reverse engineer, analyze, or otherwise attempt to
discover the source code of the Software;
3. Use or incorporate the Software or any portion thereof in any other product
without the prior written permission of the Licensor;
4. Remove, alter, or obscure the copyright, trademark, proprietary, or other
notices from the Software or any of its components.
Licensee is allowed to edit existing or create new language layouts, and share them with other users. Licensee is allowed to edit existing or create new graphic elements, but only with respect to copyright and trademark notices.
DISTRIBUTION
The Licensee may NOT redistribute the Software by any mean (CD, DVD, Web site...) without permission from Licencors.
TERMINATION
The Licensee may terminate the EULA at any time. Also, the EULA will terminate automatically if Licensee fails to comply with the restrictions described above. Upon termination of the EULA, the Licensee shall remove all copies of the Software from his (her, its) device and all storage media.
​Here you can say "Thank you" to us
​
Help and faq
HELP / FAQ / TROUBLESHOOTING
Read this whole text before using the FingerKeyboard or asking for help! If your question is already answered in FAQ it will be ignored. Don't be lazy!
What version should I install on my XYZ device? / What is WVGA, WQVGA, VGA and QVGA?
To successfully install Fingerkeyboard on your device, you need to pick the correct version for your phone. For example, let's say you want to find out what resolution Samsung Omnia has. Type "Samsung Omnia review" into Google, and among the first few results usually you'll get the most popular review sites listed. Reviews always contain resolution information, so we easily find out that Samsung Omnia has a 400x240 pixels resolution. That means you should install FingerKeyboard WQVGA cab.
Here's the list of supported resolutions for FingerKeyboard, with their standard abbreviations:
WVGA - 800x480
WQVGA - 400x240
VGA - 640x480
QVGA - 320x240
Why does FingerKeyboard look differently on my device then on the screenshots?
There can be some small differences between the screenshots and what you see on your screen. The reason for this is that different layouts can have different features, graphic elements or button layouts. We consider English layout to be the "standard" layout, with best combination of button size and positions.
How can I type those special characters that appear above normal characters?
Press and hold a key.
How to switch to full CAPS?
Press and hold the shift button.
Spacebar
If you press and hold spacebar button it will write a dot followed by a space.
How to use text selection?
Switch to full CAPS mode and then use arrow buttons to select text.
How to use cut / copy / paste / undo?
Switch to full CAPS mode, select the text you want to cut or copy, and press and hold ^c or ^x characters. Then press and hold ^v to paste. On some layouts these are named "cut", "copy" and "pst". Same thing with "undo" option - you can use "undo" at any moment, and it will take you back for unlimited number of steps.
Where is that Config tool you mention?
After you install FingerKeyboard, go to Start > Programs > Finger Keyboard.
How can I switch to numeric keyboard?
Press 123 button. If your layout does not have dedicated 123 button, press Shift and 123 will appear on your Language toggle button. Behavior of Language toggle button can be customized in Configuration tool.
How can I change a color scheme of the keyboard?
Config tool > Main > Color scheme: select which ever you like and press OK or Apply.
How can I select language layouts?
Config tool > Main: you will see a list of all language layouts you have in your FingerKeyboard folder. Put a tick next to the layouts you want to use and press OK or Apply. We also advise you to physically delete layouts you don't want to use from oyur device (Program files / FingerKeyb / Skins). This will make Config tool start up a little bit faster and use less memory.
What are all those Backspace options in Config tool?
Behavior of Backspace key can be customized to suit your needs. You can separately control what will Backspace do on short click and long press, as well as how it will behave in small caps or caps lock mode.
How to minimize or turn off the keyboard?
Short press the keyboard toggle button (the one with small keyboard or switch sign on it). Long press on this button will turn off FingerKeyboard and switch to default HTC keyboard.
How to disable click sound?
Run FingerKeyboard Config tool. Under "Options" tab you will find a "Press sound" box. Here you can select from several different click sounds, all of which have "quiet" and "loud" versions. This is useful if you want a subtle click sound, but don't want to lower the volume for the whole System. There is also a "no sound option".
How can I get vibration feedback?
Config tool > Options tab > Press vibrate. Here you can select how long you want the vibration feedback to last. Minimum of 20ms will get you a barely noticeable vibration effect, while 80ms will be very strong.
Vibration feedback don't work on my device. Why is this?
If you're having problems with vibration feedback, it's most likely that our autodetect LED vibration feature don't work well on your device. However, you can play around with "VibrateLed 1" string in skin-01-global.txt (Program Files\FingerKeyb\Skins) and see if perhaps changing to another LED number will work for you.
How can I control the key-press delay? / What is "Hold time" / Can I make the keys repeat on press+hold?
"Hold time" option in Config tool is a cool option you can use to control how long it will be needed for a key to be continuously pressed before it writes a letter or performs an action. This part of the "Hold time" function is controlled with numbers in the first box. The second box controls how long will it take for a key to be continuously pressed before it starts repeating itself. So, if you put 500ms in the first box, and 200ms in the second box, that means you will have to press a key for 500ms before it performs it's "long press" action, and 200ms more before it starts repeating that function. If you hold the key even longer, it will then gradually accelerate.
Can I hide / show Windows menu bars?
Yes, go to Config tool and under "Options" tab select how you want the keyboard to display in Portrait and Landscape mode. We suggest selecting "Show bar" for portrait, and "Hide bar" for landscape.
I want the pop-up images to stay longer on screen. How can I do this?
In Config tool, Options tab, there is a "Popup time" box. Here you can select how long will the pop-up image stay on screen after a key has been pressed. If you set pop-up time to 1500ms, this means the pop-up image will stay on screen for 1.5 seconds, or until next key is pressed. Pop-up image delay affects ONLY the normal character keys (A,B,C,D etc). Special action keys, such as Shift, Space, Backspace etc. have default short time and will not stay on your screen. This is done to avoid action keys images covering large areas of the screen with their larger pop-up images.
What are Smiles / Shortcuts?
This is a feature that no other keyboard has. It allows you to control what any of the several predefined actions keys will do when you press and hold them. Almost all layouts have these special actions included (between 7 and 11 actions on most of the layouts). You can control what will show up on a key when you open the keyboard, as well as what that key will write when you press+hold it. For example, you can type into "Key text" box "info" and into "Action text" you could type "John Smith, gsm:00123456789, e-mail: [email protected]". Or maybe your favorite web address. Or your signature. Or your wife's name. Or your lover's name for all we care The possibilities are endless! You can do the same thing for smiles - if you don't like the default ones, use your own, or something else!
A special key I need is missing / Can I customize smiles / Can I change shortcuts?
If there's a key missing in your language layout, you can easily add it yourself by using either Smiles or Shortcuts tab in Config tool. Simply type the missing key into two of the horizontal boxes and the key will appear when you long press a button that has that Smiles / Shortcut action.
Why does XYZ language layout have only a few smiles / shortcuts buttons?
Some language layouts have very high demands regarding the number of characters they need to occupy. Because of this there are a few language layouts that may have a smaller number of smiles / shortcuts spaces reserved. We have tried to include as many as possible, believe us!
How can I make FingerKeyboard a default keyboard? / How can I keep FingerKeyboard as default keyboard even after reset?
You can use a small program called SIP Change. Look it up on XDA-developers.com forum, and remember to set delay to 40-50 seconds.
"Where is XYZ language layout? Why is it not included!?"
If you want a certain language layout, first check FingerKeyboard2.1 thread on XDA-developers.com forum if someone maybe already made an additional layout and posted it there. If not, the best thing you can do is to make your own layout and share it with other people. If your layout is good, we'll probably include it in next version. Please do not spam us with "I WANT THIS LANGUAGE!!!" messages. All language layouts depend exclusively on the community to produce them. If no one can't be bothered to make your language layout, we can't really help you.
Editing instructions:
You can use the existing layouts to make it custom layouts! The easiest way is to open one of the layout skin txt files and replace the existing characters with your own. Experiment a bit, and you will soon get the hang of it. Same applies if you want to make your own skin - edit the included bitmaps, and change the appropriate lines in txt files. Everything you want to know about FingerKeyboard actions, layouts, colors and resolutions is explained in "doc-about-skin.txt" that is located in the root of the FingerKeyb folder. Read it first before asking for help!
​
XT9 and Word suggestion
XT9 & TEXT SUGGESTION:
This keyboard does not support T9. However, there is an option to enable standard Windows Mobile word suggestion, as well as SMS contact name suggestion. There are two ways to do this.
First way is to use the FingerKeyboard Config tool and select what you want to use (Word / SMS suggestion, or both). SMS suggestions will work normally, but for WinMo word suggestion to function, you will need to switch to HTC default keyboard and manually turn on XT9 on the little T9 switch. After that, you can reload FingerKeyboard and everything will work normally. This can be a good way for people who like to use T9 on other keyboards, but also want to use FingerKeyboard without T9. This approach also makes it possible to use new HTC style suggestion windows (the ones with small arrows on each side, where you can flip between names / words).
To avoid messing around with XT9 switch on HTC keyboard you can simply globally disable XT9 across the whole system. That means that T9 will not work even on system keyboards that have T9 support, but SMS / Word suggestions will both work. This will disable the HTC style suggestion windows, and use the default WinMo style (opens a simple white window with list of suggested words or names). The patch file which disables XT9 globally is attached in this post. This patch can be uninstalled. If you already have it installed, you do not have to remove it or reinstall it. Also, please note that when you install this patch, you will not be able to select SMS /Word options in FingerKeyb config tool - they will always be grayed out.
It might be best to install the FingerKeyb cab and test it first. You can always globally disable XT9 later on if you decide so.
There is a known bug with Word suggestion, that has been almost fully fixed in this version of FingerKeyboard. The bug manifests itself like this:
- if you have "Text word suggestion" turned on, and you type an SMS message, the "home" and "end" buttons will not work while the word suggestion window is open on the screen. If you select a word, those keys will work normally. Unfortunately, this isn't our fault - it's actually a bug in Word suggestion app.​
Bug tracker
BUG TRACKER for v2.1
This space is reserved for bug tracking.
Even though the latest version of FingerKeyboard2 has been tested on multiple devices with different ROM-s for more then 20 days, it's very likely that we missed some bugs.
When reporting bugs, please try to be as detailed as possible. The more information you supply, the easier it will be to find the bug and squash it. And we like squashing bugs! Some bugs with previous versions of FingerKeyboard were caused by 3rd party software. The usual suspects are other 3rd party keyboards.
DEBUG LOGGER! PLEASE USE IT IF YOU HAVE PROBLEMS!
Attached below, you will find Fingerkeyb_debug.dll file. This file will create a debug log which you can then send to us, so we can detect problems and try to fix them in the next release. It is mostly aimed at solving the problem that some people have with landscape mode, but it can be used to track any other problems as well. Debug logger is not that painless to use, but if you really want our help, this is the best way for us to detect what the problem is.
To start using this, you will need Resco Explorer or Total Commander CE.
Go into FingerKeyb folder (Program Files).
1. rename Fingerkeyb.dll to something else (example: Fingerkeyb_.dll)
2. Copy FingerKeybd_debug.dll to Program Files/FingerKeyb directory.
3. Rename FingerKeyb_debug.dll to FingerKeyb.dll
4. Softreset the phone
5. Open the FingerKeyboard, press 1-10 random keys on keyboard.
6. Minimize the keyboard, rotate the phone and open the keyboard again, after the phone is in landscape mode. Try to press 1-10 random keys again.
7. If you encounter the landscape bug, switch to HTC keyboard, making sure that it shows in landscape correctly.
8. Copy the FingerKeyb.log in working directory to a different folder on your device or PC and after that select FingerKeyboard again.
9. You will now have 2 log files. Rename them so they don't have the same file name and send them to Rozenthal or Exidler.
If you do not have Resco File Explorer or Total Commander CE, you can try this procedure:
0. Unregister keyboard using the old Fingerkeyb_register.exe (found in v1.4 thread) and then softreset
1. same as above
2. same as above
3. same as above
4. Register keyboard with the Fingerkeyb_register.exe
5. same as above
6. same as above
7. same as above
8. same as above
9. same as above
The logging tool will seem very slow, that's normal - it needs to write a bunch of info on every keypress, so take it easy. After you're done, you can simply reverse the procedure: remove the debug.dll, rename back the original Fingerkeyb.dll, and continue using the keyboard normally.
The log files can be sent to us via private messages here on XDA. Also, please do not expect to instantly receive a magical solution for your problem. If a simple solution exists, we will message you on how to apply it. If it's an issue that requires changing FingerKeyboard core files, it's more likely that the issue will be fixed in future versions of the software.
__________________________________
>>> B U G L I S T <<<
[06. april, 2009]
- Some color schemes in WQVGA have problems (FIXED)
- Some layouts in WQVGA version are causing problems / stuck in numerical keypad (FIXED)
- Samsung Omnia problems with Contact name suggestion (FIXED by installing T9 disable patch)
- Contact name SMS suggestion not working for some people on Touch HD with Dutty 2.6 ROM (FIXED by installing T9 disable patch)
[07. april, 2009]
- Switching from landscape back to portrait can sometimes result in a few pixels big square in top left corner of the device screen. This square looks like a piece of keyboard and can be pressed. The square goes away if you run Config tool or reload keyboard. (unresolved)
​
Using FKBD2.1 in ROMs
If you are a ROM cooker and wish to use FingerKeyboard2 bundled in your ROM, please notify us first. All ROM-usage requests will be granted, but we wish to know where the keyboard is being used. ROM chefs may find the following info useful:
Registering keyboard in system.
- register dll as com object
or
- add to registry this values:
=====================================
[HKEY_CLASSES_ROOT\CLSID\{C03755DF-3EE7-41DF-AE5E-3FBBCA603F1A}]
@="FingerKeyb"
[HKEY_CLASSES_ROOT\CLSID\{C03755DF-3EE7-41DF-AE5E-3FBBCA603F1A}\DefaultIcon]
@="\\Program Files\\FingerKeyb\\FingerKeyb.dll,0"
[HKEY_CLASSES_ROOT\CLSID\{C03755DF-3EE7-41DF-AE5E-3FBBCA603F1A}\IsSIPInputMethod]
@="1"
[HKEY_CLASSES_ROOT\CLSID\{C03755DF-3EE7-41DF-AE5E-3FBBCA603F1A}\InprocServer32]
@="\\Program Files\\FingerKeyb\\FingerKeyb.dll"
=====================================
Path to .dll can be different.
In registry is saved only which skin files need to load and
which layout was last for each process.
[HKEY_CURRENT_USER\Software\FingerKeyb]
list of exe names and which layout must be restored for this process.
[HKEY_CURRENT_USER\Software\FingerKeyb\SkinFiles]
list of skin files names in _lowercase_
skin-00-scheme-blackblue.txt = DWORD:0 -this means "don't load this skin file"
skin-00-scheme-blackred.txt = DWORD:1 -this means "load this skin file"
Skin files that do not exists in this key will be loaded by keyboard automatically.
Skins directory is relative to place of keyboard DLL.
=====================================
All other settings are saved in skin files (mostly in skin-01-global.txt)
Exception is HTC T9 settings:
[HKEY_LOCAL_MACHINE\Software\Tegic\eT9]
IsSupportMSSIPContact = DWORD:1 - sms name suggestion
XT9SupportMSSip = DWORD:1 - word
But this settings is applied only if:
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Contro l\Layouts\e0010409]
"Ime File" = "et9ime.dll"​
Media kit
Media kit for media / press / bloggers
If you are a representative of the media, and wish to cover FingerKeyboard2 in your magazine, portal or blog, below you will find a ZIP-ed media kit.
Inside it is a short text about FingerKeyboard v2.1, several full size screenshots, high-quality FingerKeyboard logo as well as some other graphics that can be used in publications of any kind.
If you have any additional questions, you will find the needed contacts within the info-text.
We would also kindly ask you to inform us when you publish your cover on FingerKeyboard.
​
Very nice, is there a skins thread/section yet though? O_O
Hi, thanks.
I dunno if it's because everyone likes the default color schemes (there is a lot of them included), but very few people actually played with graphics for FKBD so far.
And those that did were mostly making small changes here and there, no big overhauls.
Your thumbs are appearing as blocked images...
http://www.imagesforme.com/skin/default/sys_icons/HotLink.gif
downloading now to test this out! Thanks!
very very nice!!!!!!
One question only, where are the settings stored so we can edit them (language selected, vibration enabled, sond type etc) and cook it into our ROM's
Need The ARABIC Language For QVGA
Any One Can Make it
i have already asked the authors in the main thread, Sorry Guys For double posts, but i need it
GREAT KEYBOARD, You have done the Best!!!
jtreminio said:
Your thumbs are appearing as blocked images...
http://www.imagesforme.com/skin/default/sys_icons/HotLink.gif
downloading now to test this out! Thanks!
Click to expand...
Click to collapse
You sure? Works perfectly fine for me :/
dody said:
Need The ARABIC Language For QVGA
Any One Can Make it
i have already asked the authors in the main thread, Sorry Guys For double posts, but i need it
GREAT KEYBOARD, You have done the Best!!!
Click to expand...
Click to collapse
It is available for VGA Giannis edition, but not for the utak3r QVGA.
However, we will make a QVGA version that will be just the same as WVGA / VGA with all language layouts included. Hang on for a day or so, and it will be posted!
p.s. Thank you!
Warmax88 said:
very very nice!!!!!!
One question only, where are the settings stored so we can edit them (language selected, vibration enabled, sond type etc) and cook it into our ROM's
Click to expand...
Click to collapse
Check Program Files\FingerKeyb\Skins - everything is in simple TXT files.
If you want to cook this into your ROM, we would kindly request that you first contact us and tell us what are you working on.
We will grant all requests for ROM inclusion, we just want to know where and how is the keyboard being used.
Whoa, i didn't notice that you have a thread in dev&hacking - i was about to suggest creating it instead of staying hidden in the blackstone section
Maybe it would be a good idea to lock the old one to keep the discussion in one place?
I am having trouble with the Giannis86 VGA cab. It wont install on my touch pro. I get an unsuccessful installation message.
rozenthal said:
it is available for vga giannis edition, but not for the utak3r qvga.
However, we will make a qvga version that will be just the same as wvga / vga with all language layouts included. Hang on for a day or so, and it will be posted!
P.s. Thank you!
Click to expand...
Click to collapse
thanks alot!!!!!!!!!!!
Waiting......
Thank you for this very customizable and user-friendly sip
Great work guys! This app has just hit Maturity 2.0 . It had some things needed to be fixed, but I had not expected this. Thanks
im confused.. this keyboard isnt correcting what i type
have i done somtn wrong? i evn checkd both boxes in htcxt9 options in fingerkeyboard settings
using qvga
any help would be much apprecaited
htctoucher

[APP] NotepadWS - Tabbed text editor with online Search feature - updated (2.7)

NotepadWS ver 2.7
NotepadWS is a notepad-like application with TABS feature and some interesting tools such as the WEB SEARCH.
The Web Search (context menu) allows you to get google, wiki or dictionary contents about the word or text selected from NotepadWS,
it could be a good way to perform your search quickly and easily!
FEATURES
- Edit up to four different text files in the same session.
- Switch from one tab to another with just one click.
- Ability to add or remove tool bars at any time.
- Configure each tab separately.
- Online search of selected word or text; google search, wiki search, dictionary.
ver 2.0
- Open and Save dialogs totally redesigned to be more useful and finger-friendly
- Settings page added
ver 2.55
- File association works propely
- Max file size supported increased
- Word-wrap options added
- Copy and paste between different tabs added
- Cmd ExitAll added
- File and Folder Shortcuts feature added
- Start folder option added (if left blank, the folder of last file used is taken)
- Single click option added
- Font and color customization tool added
- Ability to have tabs with different properties (font, colors, start folder, etc)
- Tab character enabled (by pressing tab button you get column alignment)
ver 2.57
- Overwrite related bug fixed
- Read-only related bug fixed
ver 2.7
- External clipboard functions added
tabs improved
Now NotepadWS allows to configure and save the properties of each tab,
so you can have 4 tabs completely different one from another;
each tab has its own font type, size, style and color, background color,
start folder and other properties you can configure through the settings page.
Instead, if you prefer to configure all the tabs in the same way, you don't need
the repeat the setup more times, just setup one and check "apply to all tabs"
in the settings page.
Requirements
- Windows Mobile 5.0 or later
- Touchscreen device
- VGA or higher resolution screen
- .NET Compact Framework 3.5
Hope you enjoy!
Message for the generous people: If you like this app you can
eur, or
usd, the amount you prefer. Thank you!
xdaid said:
NotepadWS ver 2.0
NotepadWS is a notepad-like application with TABS feature and some interesting tools such as the WEB SEARCH.
The Web Search (context menu) allows you to get google, wiki or dictionary contents about the word or text selected from NotepadWS,
it could be a good way to perform your search quickly and easily!
FEATURES
- Edit up to four different text files in the same session.
- Switch from one tab to another with just one click.
- Ability to add or remove tool bars at any time.
- Configure each tab separately.
- Online search of selected word or text; google search, wiki search, dictionary.
ver 2.0
- Open file and Save file dialogs completely redesigned to be more useful and finger-friendly
- Settings page added
Requirements
- Windows Mobile 5.0 or later
- Touchscreen device
- VGA or higher resolution screen
- .NET Compact Framework 3.5
Hope you enjoy!
Message for the generous people: If you like this app you can
eur, or
usd, the amount you prefer. Thank you!
Click to expand...
Click to collapse
Hello,
Your program is very interesting, but I can not use just one problem you encounter, and it is important: only lets you open documents in the folder "my documents" in the main memory device. You should modify the program to allow open and save files in any folder on the device memory and the external memory card.
I have not tested whether extensions can also be associated with your program to automatically open when clicking those files from the file explorer program.
If I could use it widely, as I need, I would donate a sum of money for it, in that there is a problem.
Sincerely,
jcmm said:
Hello,
Your program is very interesting, but I can not use just one problem you encounter, and it is important: only lets you open documents in the folder "my documents" in the main memory device. You should modify the program to allow open and save files in any folder on the device memory and the external memory card.
Click to expand...
Click to collapse
Very good software
Only thing i could ask extra is word wrap "hope i haven't missed the option"
stylez said:
Very good software
Only thing i could ask extra is word wrap "hope i haven't missed the option"
Click to expand...
Click to collapse
Hello,
True, I had not noticed having to click twice (or press "enter") to run this option to access all folders on the device.
What if I notice that you can not open large files, not size, but more than 100 KB can not be with them.
Nor could I see if you can associate text files "txt" to open this program directly from file explorer.
Sincerely,
Hello,
I've been testing the program further NotepadWS, which I consider a good application, but there are two problems with it:
I have seen two important issues that prevent me from replacing AgileNotesTouch, which is what I use now, for NotepadWS:
1 .- NotepadWS not allow it to associate with files by extension, to boot automatically with this application. For example, if you associate files "txt" with NotepadWS ... file does not start with "txt" open.
2 .- I do not know NotepadWS maximum size allowed, but a file of 100 KB or more does not open properly. AgileNotesTouch allows very large files sizes, without problems.
It is important that NotepadWS could solve these two problems.
Sincerely,
short video for your app
NotepadWS new version - 2.5
What's new and cab installer at first post (updated)
xdaid said:
NotepadWS ver 2.5
NotepadWS is a notepad-like application with TABS feature and some interesting tools such as the WEB SEARCH.
The Web Search (context menu) allows you to get google, wiki or dictionary contents about the word or text selected from NotepadWS,
it could be a good way to perform your search quickly and easily!
FEATURES
- Edit up to four different text files in the same session.
- Switch from one tab to another with just one click.
- Ability to add or remove tool bars at any time.
- Configure each tab separately.
- Online search of selected word or text; google search, wiki search, dictionary.
ver 2.0
- Open file and Save file dialogs completely redesigned to be more useful and finger-friendly
- Settings page added
ver 2.5
- File association works propely
- Supported max file size extended
- Word-wrap options added
- Copy and paste between different tabs added
- Cmd exit added
- Editor and menus improved
- Bug on launching online dictionary fixed
Requirements
- Windows Mobile 5.0 or later
- Touchscreen device
- VGA or higher resolution screen
- .NET Compact Framework 3.5
Hope you enjoy!
Message for the generous people: If you like this app you can
eur, or
usd, the amount you prefer. Thank you!
Click to expand...
Click to collapse
Hello Xdait,
Now he has been magnificent NotepadWS v2.5 program. Only one small detail I see in my device (VGA) and is the icon of your program in the file explorer leaves very large, so you see only a quarter of the icon ... only that detail.
I just made a donation through PayPal by using the program, as I indicated. I hope you get well.
Sincerely,
Looks interesting, just what i was looking for. Any chance for WQVGA in future?
Thank you a lot JCM!
2.5 -> 2.51
- Now app memorizes the folder of last file used for the next launch
- File shortcuts list added, to open registered files with just one click
QVGA version, probably i will do it, but don't know exactly about the time i need
2.51 cab installer at first post
regards
xdaid said:
Thank you a lot JCM!
2.5 -> 2.51
- Now app memorizes the folder of last file used for the next launch
- File shortcuts list added, to open registered files with just one click
Click to expand...
Click to collapse
@xdaid, appreciate the effort you've put in to this app so far. It has a lot of promise.
I've been playing with it off and on since the 2.0 release. It has not replaced me using AgileNotes (which has its own set of issues for me) on a regular basis, but I look forward to the possibility.
Here are my suggestions and please note I understand you have a life and your own set of requirements when you code, so I know maybe none of these comments might be used...
1. if you can support PWI files
2. if you can handle files with carriage return + linefeed end of line terminator (eg, DOS, windows based text files). Right now, files with CR+LF show up as unprintable characters
3. if you can allow for a default file folder on startup. Use the file shortcut UI you just implemented and apply it to select default, and/or favorite folders. I see you've just implemented it to memorize the last used folder, that is a good start and should be retained unless a default folder is specified.
4. allow for a default file type (eg, TEXT, LOG, etc). Currently always defaults to TEXT when you restart the app.
5. suggest adding or putting an EXIT APP type selection/option in your "cmd" CLOSE action list. Right now it has "X" to only close the active tab, but you have to go to the MAIN MENU to exit the app. Just does not seem intuitive in my opinion.
6. allow the user to select a default background color, font size, and font color if possible (to override system defaults). I realize this suggestion may be difficult or out of scope.
Future wish list, knowing it would likely require extra effort as you may not have the development environment to test on:
a. support the newer WM 6.5.x layout with the STARTMENU and "X" button on the bottom of the screen, or at least detect you are running on the newer versions and keep that bottom bar accessible.
b. use a better file selection UI. Right now, at least on my device, you have to tap on the actual scroll bar to scroll. It should be smooth and fluid like some of the default file selection interfaces in AgileNotes or even Resco File Explorer.
c. allow similar option like Resco or Total Commander for double or single tap to open a directory or file in your selection UI.
Again, thank you for the time and effort you have invested in to this application thus far.
A new version --> 2.55
cab installer and info at first post
It's a quite-big update for NotepadWS, sure not all the stuff listed by powinmo but.. something has been done.
Hope you enjoy
xdaid said:
A new version --> 2.55
cab installer and info at first post
It's a quite-big update for NotepadWS, sure not all the stuff listed by powinmo but.. something has been done.
Hope you enjoy
Click to expand...
Click to collapse
Hello Stefano,
Congratulations !!!... you've made a great program, you've passed this new version. Thanks for your program remains my sole editor in my HTC Touch Pro, I do not need anything else to work.
Sincerely,
xdaid said:
A new version --> 2.55
cab installer and info at first post
It's a quite-big update for NotepadWS, sure not all the stuff listed by powinmo but.. something has been done.
Hope you enjoy
Click to expand...
Click to collapse
@xdaid. Sweet! Did a quick test run, and seems you incorporated many of my suggestions. Nice work so far.
Only major concern right now is:
- allowing up/down scroll gestures in the file selection UI without actually having to tap directly on the scroll bars. Trying to do a scroll gesture typically selects the item your finger first lands on - basically seems the filename/directory listing of that UI reacts to single tap picking only.
Other than that, my left overs from my prior wish list post are still items:
(1) pwi support and (a) winmo 6.5.x UI support
Again those are not critical, just something for down the road - if even possible.
It's pretty close to being my daily editor and that's saying a lot. Keep up the great work.
Please re-download 2.55 cab installer
i forgot to include a small bug fix, now the cab is updated.
@ powinmo: scroll gesture in file selection UI should not be a problem, i will implement it soon.
Instead, pwi support could be quite hard to realize, i have some ideas about how
extract text from / save text to pwi files. Just ideas so far, but i can try..
regards
Thx for update works a treat
xdaid said:
Please re-download 2.55 cab installer
i forgot to include a small bug fix, now the cab is updated.
@ powinmo: scroll gesture in file selection UI should not be a problem, i will implement it soon.
Instead, pwi support could be quite hard to realize, i have some ideas about how
extract text from / save text to pwi files. Just ideas so far, but i can try..
regards
Click to expand...
Click to collapse
@xdaid - appreciate your continued work on the app! Looking forward to seeing that file selection UI more usable and closer to how others UIs act.
As for pwi support, I would put that priority at the very bottom and address any other items you feel are more important.
I do have one additional request after using your app a bit more now:
- add the ability to recognize a scroll up/down gesture versus highlighting text when editing. Right now, when you try to do that the editor strictly acts as if you want to mark text for an action (eg, copy, looking, etc). To scroll through a long document, you have to literally tap on the scroll bar versus the natural inclination of using a gesture.
Other than that, I'm almost sold on trying to the app as my regular editor. Thank you for being so receptive to user comments and suggestions!
For those who like to use the tab character to get fixed spaces / column alignment:
I added a 2.56 version, it's the same as 2.55 but tab character is enabled.
xdaid said:
For those who like to use the tab character to get fixed spaces / column alignment:
I added a 2.56 version, it's the same as 2.55 but tab character is enabled.
Click to expand...
Click to collapse
Hello Stefano,
I think your application becomes an application program is essential to our Windows Mobile devices. You've got an editor and text file reader very versatile and practical, ingenious solutions. Thanks for your good program.
Sincerely,
I've been looking for a nice notepad app for a while now, this looks pretty nice . Thanks for sharing!
I have a bit of a request: would you consider adding file 'scheme' functionality. Say you are looking a reg file, the 'scheme' would highlight certain predefined key words or phrases making it more readable. The same could then be true for .xml, .mscr or any other file that can be read by notepad. You think that would be doable?

How to create and/or edit slider icons

Hey guys,
I have the HD2, 172 WWE ROM.
I tried using HDWall app to create new slider icons. Nothing worked.
Does nayone have an app that can create slider?
If not, who wants to make one for me? I can give you all the icons, you create a cab?
I am pretty desperate as I have a couple I want to make that I love.
Thanks to any volunteers or helpers.
You can use a program called CFC_GUI to view and edit any manila graphic.
Thanks for responding.
I downloaded this but couldn't get it to work.
I selected the slider icon I wanted to change (to test) and selected replace with, the click on the icon I want. It runs through (stops sense) and just says 'fail'.
Also, I thought the slider icons were 64x64, and the larger icons 128 x 128.
This app shows them as 256 x 256.
Do you know what the correct size is for the sliders and the larger ones?
Well you will first want to make a folder some where. Connect your phone and put it into sync. From there open CFC_GUI >Device>Import from device. This will import your manila graphic files. Now you will want to go through these files and find all the files that pertain to the slider icons, quick hint there are a lot of them. Depending on the ROM there can be anything from 3 to 4 of them for each tab. Most will range in 64 while one will be 256. The 64's are for the actual tabs and also the customization setup pictures(for selecting the order of the tabs) in settings for the phone. While the 256 is for the big main graphic that is centered in the phones screen when it's slide over or selected. You will have to do more then just replace the files. When you select each file you want "save as" this while save it to the folder you open CFC_GUI for the first time. Once you have the actual images saved as a pngs you can then bring these files into a photo editing program. You will find that the size of the picture is not the actual size of the graphic.....sure it might be 64x64 but the actual graphic will be a bit smaller and is usually a bit off center and to the top left. So you take the picture you want (hint use pngs since most don't have backgrounds) to replace it with and paste it over the other picture as a layer. Adjust the picture until it's perfectly over the original layer under it. Once you get it right you can delete the original layer leaving your new graphic. Save the image ,possibly to a new folder but with the same original name. The next time you open CFC_GUI it will open the original files you don't have to plug the phone in yet, the program creates it's own folder and saves the files from when you imported them. Go through and replace the files you want , won't be hard if you keep the original file name when you saved your edited version. Once you replace them all you can close the program. Turn on the phone go to settings and turn off Sense. This option can be skipped because the program should turn off Sense when you go to export but some times it doesn't and messes up. Once synced open CFC_GUI recheck your work then go to
Device>export to device.
Unplug the phone turn Sense back on and they should be there.
Man I don't think I have ever had to write this much directions for this so be thankful I felt like being long winded tonight hope it helps.
Donation to you if you create slider icons set.
Wil,
I sincerely appreciate your reply. I have given it a go and read through your instructions many, many times.
Honestly, this is too hard for a novice like. I don't even know how to use photoshop properly.
I am willing to offer a donation to anyone who is willing to create a slider icon set for me.
I have all the icons, just need someone with the experience.
Anyone? Wil, can you?
Photoshop is not that hard. Just save the graphics like I said earlier. Bring the image into photoshop. Bring the image you want into photoshop. Go Select>all. Edit>copy. Go back to the original file. Edit>paste. It should paste it to a new layer all by itself. If the picture is a bit big or small you should be able to drag it to fit. You can also adjust the ocupancy down a bit to be able to see through it while you adjust. If your confused about the whole layer thing do a video search for Working with Photoshop Layers. There are plenty of them out there. It's a basic if you want to use photoshop the right way.
This should be in the Theme part but try to find the some threats of Dinik. He's a great designer and made even some easy walk throughs about how to make icons and how to replace them on your HD2
*edit*
Dinik Creations
When you look in the threats posted you find easy replacing tools
Stuck on final step.
Hi Wil,
Firstly, sorry for the very late reply. I have been working away collecting the icons I like, and trying to use Photoshop. I have finally figured it out.
I am stuck on the final step I think.
I have created all the icons correcty (to the top and right) based on the layering method you mentioned. Should be fine.
I have then used CFC to 'import' the png's. No problem.
I use CFC to browse the files and I can see the new icons I have imported.
What do I do now?
The files do show up in CFC, but not as slider icons in manila. Whats the final step?
Thank you in advance.
These are the manila fiels names from what I have researched. Please let me know if this is wrong.
Home
299c5eF5_manila (slide)
75499aa8_manila (big icon)
People
4f1d31ce_manila (slide)
1d7b29c4_manila (big icon)
Messages
76c3b921_manila (slide)
278db717_manila (big icon)
Mail
33afebf1_manila (slide)
2577a407_manila (big icon)
Internet
04abcd12_manila (slide)
4fca8b48_manila (big icon)
Calendar
4b721343_manila (slide)
613b21b9_manila (big icon)
Stocks
17ef70ed_manila (slide)
17ac5803_manila (big icon)
Photos
5631ec52_manila (slide)
3ca89548_manila (big icon)
Music
609e396a_manila (slide)
472f33c0_manila (big icon)
Weather
056fac59_manila (slide)
042e5baf_manila (big icon)
Twitter
2077631c_manila (slide)
7ffecf32_manila (big icon)
Footprints
28601361_manila (slide)
6f24d697_manila (big icon)
Settings
7aeB367a_manila (slide)
5389eeb0_manila (big icon)
http://forum.xda-developers.com/showthread.php?t=503511
i dont know it works for HD2 but i think it will
Thanks Veldmuus. I tried that previously, didn't work. It has completely different file names.
I tried 'export to device. Sense did stop (I saw it stop on my phone) did the export, then restarted sense.
For each fil that it was supposed to export, I just got the error 'fail'. No other info.
Any help?

[APP]CHT Tweaks [BETA][SENSE 2.5]

CHT Tweaks BETA
Only for Co0kie Home Tab 2.0.0
CHANGE FONT TEXT DIRECTLY TO CHT.2.0.0
USE PNG FILES DIRECTLY TO CHT.2.0.0
new! PIE CONTROL FOR SENSE
new!ONE CLICK TO HIDE THE TASKBAR
{
"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"
}
pie control here & into v100beta​
I continue experimenting with Co0kie Home Tab 2.0.0. Mainly CHTtweaks allow to change textures in .png format using the file explorer and give the option to easily change the text font for all CHT elements independently. Aditionally CHTtweaks uses great tool JMLMenuSense to make a setting menu.
CHTtweaks brings major changes as the original files of CHT.2.0.0 lua & mode9 are modified. I am also providing the open source where the changes are marked (--CHTtweaks) in the files as explanation. Feel free to use, modify, edit, mirror, sale, delete or whatever you want to do with this, but always with fun
For security also I am providing the original CHT files to restore if necessary. Just copy all files from insode the zip to windows folder, acept overwrite & restart Sense.
The files with changes are the followings:
5950B2CD_manila -- Co0kieNotifyBar.lua ==> added a 3rd layout for text missed calls - sms - emails - voicemail notification, Configurable: text font, size, color, alignment, language, displayed text
5fa4d4b7_manila -- homedigitalclock.lua ==> chose png texture for numbers, colon & background; switch for transparent flipclock-tabs; switch for get out of the midle flipclock line.
4B558519_manila -- CHT_Widgets.lua ==> selectable opacity for home clock background; added 4th layout to textclock: alarm icon only; added 3rd layout text notifications
1EC5924B_manila -- homeAnalogClock.lua ==> chose png texture for analog clock face, hourhand, minutehand & secondshand
new!2AFAFEFA_manila -- CHT_Softkeys.lua ==> chose png texture for the softkeys background; switch for transparent softkeys & softkeys background; switch to dissable the enlargement softkey icon when pressed, work done by devil-strike based on the script of rat_2665 (all credits for them please). Extended CHT menu. Hide taskbar new!
29C5E347_manila -- Co0kieEmail.lua ==> chose png texture for CHT email background independently of Email Sense Tab; change text font
7ECB5997_manila -- Co0kieMessages.lua ==> chose png texture for CHT SMS background; change text font
4956014B_manila -- CHT_Lockscreen.lua ==> chose png texture for the slider unlocker of each CHT lockscreen (Manila, Windows, Mini HD)
6A5D6A2D_manila -- Co0kieMusicPlayer.lua ==> switch transparent CHT music player background; change text font; change background
45E83959_manila -- CHT_Titlebar.lua ==> switch transparent home title bar; set color for other Sense Tab titles (excepting Music Sense Tab & Internet Sense Tab); change text font; switch page indicators to botton screen
5146EC01_manila -- Co0kieAppointments.lua, 45D3F17C_manila -- Co0kieListControl.lua & 094C0231_manila -- Co0kieAppointments.mode9==> switch transparent background for CHT appointment, horizontal alignment & change text font
3ACCF880_manila -- CHT_QuickLinks.lua==> change text font for quicklinks labels; change quiklinks frames
58B6C4C5_manila -- CHT_FreeLinks.lua==> change text font for freelinks labels; change freelinks frames
346BA8F0_manila -- Co0kieTextClock.lua==> change text font for the clock, date & alarm bar widget
6639bcc4_manila -- weatherforhome.lua==> change text font for weather info for home.
6DB6511F_manila -- CHT_Constants.lua==> dock size up to 120px
new! 285d005a_manila -- manila.lua & 3a8e04af_manila -- manila.mode9==> pie control in all sense tabs
CHTtweaks does also add some settings that use to be done in CHTEditor, now you can also do it in CHTtweaks, like disable double flip or minute flip; show seconds hand; set softkey height & menu height; set color for CHT Email text & CHT SMS text; select lockscreen style (0= Manila; 1= Windows; 2= HD Mini)
To restore default manila texture just leave the texture path in blank and restart Sense. CHTtweaks is provided without png textures because it was making so big. I have uploaded a pack CHTtweaks_PNGtextures.rar with some examples, just unpack it in the SD\CHTtweaks folder and select your favorite, delete, add new textures ... and share them with us! I havent done any of this nice graphics. I am taking graphics from NordPolCamper, MrBeO, LNando84, Santod040, [email protected], _leciel_, S-Droid, Sternas & ericv99. Thank you so much for them! Special thanks to LNando84 for all the good work and help with the setting menu.
Installation:
CHT2.0.0 needs to be installed previously.
Switch Off Sense.
uninstall any previous version, acept soft-resset.
Install CHTtweaks.v0.97.cab in device, accept soft-resset.
Install JMLMenuSense 1.60 or higher in device, only in case you allready have not installed for other widgets (v1.75 not working)
Extract CHTtweaks_PNGtextures.rar in device or SD, I use to do it in \Storage Card\CHTtweaks
Switch Sense On
Find CHTtweaks in Start Menu\Programs & CHT menu.
You can uninstall CHTtweaks.v0.97.beta.cab. If you have any problem after deinstallation use restore.CHT.original.zip, just copy the original files from inside the rar to windows folder, acept overwrite and do restart Sense.
Also you can restore independently any modified file of CHT and the rest will continue working. I mean if you like the way of changing the CHT Email background but nothing else, just restore all the files excepting 29C5E347_manila. CHTtweaks will continue working only with this feature.
NEW! ONE CLICK TO HIDE TASKBAR NEW!
Just copy the file into the zip to windows folder and accept overwrite and restart Sense
LOCKSCREEN
​
CHTtweaks.097.beta contains ICS lockscreen for CHT2.0. This lockscreen substitute CHT Windows lockscreen. It is made by 3 .png files: ICSlockscreen.png (256x256) for the slider; ICSlockscreen2.png (256x256) for the slider pressed; ICSlockscreenBG.png (512x512) for the lockscreen background. Of course you can change this graphics as usual in CHTtweaks, just go to lockscreen menu and select textures from internal memory or SD (to get default graphic just leave it blank. You can also select the application to launch by unlocking in left slide. As most of the CHTtweaks you can use this ICS lockscreen independently of CHTtweaks.
The others lockscreens (manila & HDmini style) can also be customized with CHttweaks.
MIUI LOCKSCREEN
***download***
SENSE 3.0 LOCKSCREEN
***download***
TEXT NOTIFICATIONS
Configurable: text font, size, color, alignment, language, displayed text
TEXT FONTS
APPOINTMENTS
Tip: Go to HKCU\Software\HTC\Manila\CHT.Tweaks.TransparentHomeAgenda and set the opacity value for the agenda from 1 to 100 (50, 33, etc)
SOFTKEYS
Just a few clicks and you can change easily the softkeys. Also I added the option to disable the softkeys icon enlarge when pressed, accordingly to the work done here by devil-strike based on the script of rat_2665
CHTtweaks includes the option to have transparent softkeys background in one click. All this changes in softkeys needs re-start Sense. Also includes the file restore.CHT.original.rar in case you want to uninstall this cab, just copy the files inside the rar into \windows and restart sense.
Special thanks to lnando84 for the tests and the work in the setting menu and all Dream Team for the nice graphics.
Tip: I am uploading a few transparent softkeys icons very useful to play a bit with this softkeys backgrounds textures. Enjoy!
Tons of Softkey bars (Docks) uploaded in this post and followings. Thankyou very much ezzie (& Nando)
EMAIL & SMS
in this post and followings ezzie has uploaded a lot of graphics for SMS & Email ready to use wth CHTtweaks. Thanks a lot!
HOMECLOCK
Thanks to the amazing work of Dunc001 in SimClock a lot of new possibilties are comming to the world of CHTwidgets. CHTtweaks add the feature to easily change the texture of some elements of the homeclock using png files.
Just open CHTtweaks menu setting (CHTquicklink / CHTfreelink >> miscellaneous) go to home clock setting and use the file explorer to find your favourite texture for the home analog clock, the numbers of the home flipclock and the colon (two dots). Also select the font text for the weather info & text clock. You can always restore the defeult textures just deleting the texture path and restarting sense
EDIT: With so many changes of home analog clock may be useful this set of clock hands good for any light-dark clockface
Thanks to Lnando84 you can find here (and followings posts) lots of clocks in png format, ready to use with CHTtweaks!
A few clocks, softkeys, Lockscreens, etc to enjoy with CHTtweaks. Unzip in SD card and select it with CHTtweaks:
CHTtweaksPNG
STILL BETA STAGE, FEEDBACK AND SUGESTIONS IS MUCH APRECIATED
Some adapted themes: (here more adapted themes by cocopuf)
https://plus.google.com/u/1/photos/106797872708479667834/albums/5947715799326302689?sort=1
Here is the kitchen. In the folder \workspace\lua there are all the files decompiled and commented, the modified code is marked with --CHTtweaks where is changed from the original. It also has been modified the mode9 file 094C0231_manila, it was necessary for the appointments transparency. You can run it without devMode (_Deploy_to_device_normal_mode.bat). All credits & thanks to Co0kie Monster.
Also uploaded the source and kitchen of most of my widgets including CHTtweaks:
Poy_fullKitchen.zip - 49.19 MB
HOW IT WORKS?
Uploaded with ImageShack.us
CHTtweaks 0.93.beta introduces small modifications in the lua files of Co0kie Home Tab 2.0.0 which makes that some properties of a few elements (homeclock, lockscreen unlocker, email background, etc) can be set in the registry HKCU\Software\HTC\Manila\CHT.Tweaks.XXXX. This changes are compatible with any other widget or standar CHT skin: if there is no CHTtweak registry setting the default texture will be used.
Attaching the source of all modified files in which has been included the marks --CHTtweak for easy indentification. As example the code below say to CHT to use the png file for the home analog clock -defined previously by CHTtweaks setting menu, but if it does not exist it will use the default manila file
--#####Set texture for home analog clock by CHT Tweaks
SetTextureHomeAnalogClock= function ()
poyTweaks_HomeAnalogClock_texture_path = GetCHTSettingString("Tweaks.HomeAnalogTexture", "\\windows\\htc\\Home\\Assets\\Images\\Home\\VGA\\AnalogClock_bg.qtc")
analogclock:SetTexture(poyTweaks_HomeAnalogClock_texture_path)
end
SetTextureHomeAnalogClock ()
_application.Store:GetValueChangedEvent(Lifetime_Permanent, "CHT.Tweaks.HomeAnalogTexture"):connect(SetTextureHomeAnalogClock)
--#################################
Click to expand...
Click to collapse
CHTtweaks Setting Menu configure the registry, then this configuration is applied to CHT
And never forget Co0kie's words specially where is said " ... The source code is freely available. You may modify it as you wish, but I do have a request:
If you're going to post a CHT modification publicly, post only the modified files and not the whole thing, so that the installation procedure is:
1) Install the main CHT cab first.
2) Install your modification.
Alternatively, if you want to use any part of this source code in your own independent manila project, you are free to do so, but please do post a mention that you're using this code and what parts.
That's the only thing I ask. I hope everyone will honour it. Thanks, here's the source, have fun with it."
Thanks again Co0kieMonster
CHTtweaks 1.8.5
(available beta 2)​
At first BIG THANKS TO CO0KIE MASTER its amazing how he has converted a static home tab into a flexible and very customizable home tab. Every time I look a bit into the source files I get impressed what Co0kie has done. Not only the CHT itself, but also the source is free and available for use and enjoyment.
With this development I try to bring some of the advantages of CHTweaks to CHT1.8.5's friends. So I have started with the analog and flip clock (basic CHTwidget) and CHTtweaks can change the elements of the analog clock -face & hands- using textures in PNG format stored in any folder of device or SD. In the standard flip clock can be changed the numbers (always in PNG format) and add 2 dots between hours and minutes. Also clock background can be changed using textures in PNG format and set opacity from 1=transparent to 100. Aditionaly has been added some work i the Home Title Bar (transparency). Further development depends on comments and sugestions.
Installation
1. Install CHT 1.8.5 (& rest of the components)
2. Install CHTtweaks 1.8.5.betaXX.cab, softresset
3. Aditionally I recommend to install JMLMenuSense v1.60 (or higher) for access to setting menu
4. Access to configuration menu in \start menu\programs
5. Get lots of textures in PNG format here and everywhere in XDA
**DOWNLOAD HERE**
Attaching the kitchen. The source with the modified files are in folder \workspace\_lua\. Everybody is free to add features, correct bugs, edit files, delete them, change, sale, mirror, or whatever want to do with them. Use is not compulsory. CHTtweaks1.8.5 works fine in my HD2(WM6.5.x) with CHT1.8.5 installed, but if it does not work in your device I will help as much as I can.
If you want to try the kitchen*, do the changes in the lua files with notepad2 (inlcuded in tools folder) then run _Deploy_to_device_normal_mode.bat and the files will be recompiled and deployed to your device fro test. Once the changes are done, just run _Generate_files_for_cab.bat and will get the files ready for the cab in folder \cab\_files_final\
* at first the device must be synchronized with PC and run z_init.bat only once at the beginning.
CHTtweaks 1.8.5 includes Typoclock​
A reduced version of Typoclock has been added as layout in standard textclock. This reduced typoclock has time, date and alarm icon, and can be configured in CHTtweaks 1.8.5 setting menu (or directly in registry HKLM\Software\HTC\Manila\CHT.Tweaks.XXX). It can be changed: text font for time and date; color; text sizes; vertical position; horizontal alignment (left, center, right); hide alarm icon; alarm icon position.
To activate Typoclcok on CHT 1.8.5 install CHTtweaks, go to menu > edit home layout > select level > Advanced > show text clock > typoclock; for configuration just go to CHTtweaks setting menu (start menu\programs) > typoclock > set your favorite parameters.
Click to expand...
Click to collapse
[beta2] includes new layout in classic CHT clock for stand alone weather; control over the text font in weather info for home; and lockscreen textures in PNG format
Click to expand...
Click to collapse
Addon for CHT
Hola, looks and works very good
Great job and lot´s of work and thinking behind it. Congratulations amigo.
It works on both of my devices HD2 & HD Mini, much better than expected
For beeing a beta, I´d say it´s rather a "release candidate"
Hi Poy,
WOW !!!
What a great job amigo mio, this is really another huge step to a higher level in WM and CHT Widgets.
If all this great things continue growing at this pace we will soon see a massive immigration coming from the dark OS sides
Once again amigo, Big Thanks for sharing your amazing work
OMG OMG OMG......
I may have to leave "sick" to get home and apply this.....does tweakideation sound like a legit diesese?
Hi again Maestro,
I wondering if you have installed the Dunc"s CHT Fix40 Slots-Widgets you posted here and could you please check in your registry to see if it is shown 40 or 20, I just installed this fix but in my registry it still show 20 slot, is this right?
Thanks in advance, amigo
[email protected] said:
Hi again Maestro,
I wondering if you have installed the Dunc"s CHT Fix40 Slots-Widgets you posted here and could you please check in your registry to see if it is shown 40 or 20, I just installed this fix but in my registry it still show 20 slot, is this right?
Thanks in advance, amigo
Click to expand...
Click to collapse
I really do not know what cab i have installed so many test ... but for sure is Dunc's CHT fix 40 widgets. Dunc's mod of mike2nl's CHT fix 40 widgets is not included in CHT Tweaks v0.90. Its linked to this post: http://forum.xda-developers.com/showpost.php?p=12016868&postcount=24
I thinks that Dunc's mod of mike2nl's CHT fix 40 widgets should be standar nowdays, it should be added to CHT2.0.1 (or eventually to CHT Service Pack 1). This fix allows 40 widgets and reserve 8 slots for BG widgets. If you don't have 40 slots in the registry just add it: HKCU\Software\HTC\Manila\CHTI.AddonWidgets.Count = 40
CHT Tweaks its just a protection to avoid overwrite the file home.mode9 when themers are working on home flip clock to convert it to digital clock with 2 dots & no flip line. Now you can get this mod without touching this fixed file. Something similar happends with CHT_rat_weather_library, with CHT Tweaks I am trying to protect this valious file to be overwritten.
Thanks for your fast reply Maestro.
I understood perfectly amigo, so I going to change the value 20 to 40 in the registry and I hope when I get my 21' widget everything goes ok
I just installed the 40 fix now because I know that amazing widgets are coming soon
Thanks again Amigo.
please give me stick note (hola) widget! Thanks
you'll find it here: http://forum.xda-developers.com/showthread.php?t=965868&page=3
in cab folder into the .rar
CHT Fundamental Questions
poyensa said:
....
I thinks that Dunc's CHT fix 40 widgets should be standar nowdays, it should be added to CHT2.0.1 (or eventually to CHT Service Pack 1). This fix allows 40 widgets and reserve 8 slots for BG widgets. If you don't have 40 slots in the registry just add it: HKCU\Software\HTC\Manila\CHTI.AddonWidgets.Count = 40
CHT Tweaks its just a protection to avoid overwrite the file home.mode9 when themers are working on home flip clock to convert it to digital clock with 2 dots & no flip line. Now you can get this mod without touching this fixed file. Something similar happends with CHT_rat_weather_library, with CHT Tweaks I am trying to protect this valious file to be overwritten.
Click to expand...
Click to collapse
Now we´re getting to one of the main questions or issues since so many addon widgets and Cookie´s kitchen have been released. We are indeed loosing our "base2 or let´s say, "common ground"....
Guess we need a "Base Definition" in order to avoid future probs with "crucial" files in order to keep ONE basic CHT version & vision. I also think it is IMPERATIVE and every mod of this kind should always post a detailled list of the included and modded files, and maybe even provide the o files in case of probs. See notes and issues when uninstalling one of these files or widgets.
I´m not sure about a Service Pack... I would rather say this requires a new release, so all that´s been done up to now should be compatible with CHT 2.0 and all that´s beeing done in the future, based on your findings and Dunc´s SK-i Theme (and the evolutions for CHT within it) as well as from other CHT Members and users. Call it maybe CHT 2.5, or CHT 3.0 because it´s not a "minor update" like a bug fix or some addons. We´re talking about fundamental changes in CHT
Maybe this could be discussed with users and devs in actual CHT thread, or even a new thread? I´m asking this, because like with the update and new release of CHT 2.0, there are quite still a lot of CHT users that prefer older version (CHT 1.8.5.1) and have decided not to change. I guess there will be also enough that might want to stick to "unchanged" 2.0 instead of having to worry that new widgets need new mods on crucial files like home.mode9, etc...
Skinning mods of image files is one thing, as well as tweaking or partially modding mode9 files for fontsize, color, etc..., but mayor changes affecting luas, or other items in mode9 should be done very carefully, especially considering the fact, that this files and changes call upon a lot of other files, and this can really screw your Sense
Interesting and unique mod to CHT. I will try this, and post comments later! Thanks for sharing...
poyensa said:
...
CHT Tweaks its just a protection to avoid overwrite the file home.mode9 when themers are working on home flip clock to convert it to digital clock with 2 dots & no flip line. Now you can get this mod without touching this fixed file. Something similar happends with CHT_rat_weather_library, with CHT Tweaks I am trying to protect this valious file to be overwritten.
Click to expand...
Click to collapse
BHS Interceptor said:
... I also think it is IMPERATIVE and every mod of this kind should always post a detailled list of the included and modded files, and maybe even provide the o files in case of probs. See notes and issues when uninstalling one of these files or widgets.
.... I guess there will be also enough that might want to stick to "unchanged" 2.0 instead of having to worry that new widgets need new mods on crucial files like home.mode9, etc...
Skinning mods of image files is one thing, as well as tweaking or partially modding mode9 files for fontsize, color, etc..., but mayor changes affecting luas, or other items in mode9 should be done very carefully, especially considering the fact, that this files and changes call upon a lot of other files, and this can really screw your Sense
Click to expand...
Click to collapse
Yes, it´s me again After a few extensive tests, I do insist that a "File List" is imperative for not having to BAN overwriting or modding files that are crucial to the system and Sense. I´ve been switching mode9´s and Luas with CHTS now, and if you do it right, there will be no issues, but you need to know the files that are changed BEFORE installing the widgets or mods, so you can back them up before damage is done. The xmls included in all widgets, AND HERE IN THE PAST THERE HAVE BEEN A LOT THAT WHERE NOT WRITTEN PROPERLY AND THUS UNUSEFULL AND DANGEROUS, have to be checked and approved, otherwise they will be no good. CHTS can help overcome these problems if used properly. CHTS can save those crucial files before install to a save profile, and then you can use any file in another profile and so switch safely back and forth. But CHTS needs to know these files before install in order to back up / save the original ones
I have been able to switch from a Profile configured with rat´s changed home.mode9 file (his weather library needed for his last widgets) to another profile using the original (well, not original since CoOkie also modified the same file for CHT - so there is an Original file, then the CHT file and now the modded CHT files for that) CHT home.mode9 file and everything went fine. But still the manila/sense versions need to bee watched, since not all mode9 are version independent
Very nice useage of JMLMenuSense!
Sadly I cannot use Manila on my phone (too slow for normal use) - But indeed very useful!
Congratulations!
GreeZ!
Freezy1982
Guys, i have read that Dunc has made a 40 widget fix for CHT. So far i can remember about that issue... i have done this fix and others, in team work of BHS and me before x-mas and i have published this in the CHT Artworkgroup as a beta testing issue.
Dunc please tell me why you have realeased this fix before we have done our intesive tests of this release is ok.
Hi again Mike, I dont see any controversy there. We are recommending to use Dunc`s verssion for the the CHT fix 40 slots -widgets, because it also has been altered to allow the use of 7 backgrounds widgets, as impleted in Blue Sk-i theme or CHT Walls. We all recognise your work and credits have been properly granted. Dont waste your time and energy on that, we have still a lot of work to do
mike2nl said:
Guys, i have read that Dunc has made a 40 widget fix for CHT. So far i can remember about that issue... i have done this fix and others, in team work of BHS and me before x-mas and i have published this in the CHT Artworkgroup as a beta testing issue.
Dunc please tell me why you have realeased this fix before we have done our intesive tests of this release is ok.
Click to expand...
Click to collapse
poyensa said:
Hi again Mike, I dont see any controversy there. We are recommending to use Dunc`s verssion for the the CHT fix 40 slots -widgets, because it also has been altered to allow the use of 7 backgrounds widgets, as impleted in Blue Sk-i theme or CHT Walls. We all recognise your work and credits have been properly granted. Dont waste your time and energy on that, we have still a lot of work to do
Click to expand...
Click to collapse
Hola again, Mike and Poy, yes it´s true that Mike worked on that widget fix and it´s not about beeing mentioned, but about possible issues and misunderstandings about this particular and specific fix for Dunc´s SK-i Theme and CHT in general...
"The attached zip folder contains seven background widget cabs which will install the backgrounds you see used in the screenshots. You can choose to install any number of these and after you have installed them you can easily edit them using the reg changes and new images. However to get them to appear behind everything else on screen you first need to update the home.mode9 file. You will find a cab to install the mode9 and make the necessary reg edit in the zip folder with the widget cabs. Poyensa has edited this one for me to make the first eight widget slots appear behind eveything else so I have his original background widget and my seven installed and working perfectly. As an added bonus, and because the backgrounds will use up to eight widget slots this mode9 is also modified to allow up to 40 CHT widgets to be installed (the original maximum was only 20) so you shouldn't run out of space!"
And actually it was only 10 in the original coded but 20 "targetet"
The original CHT mode9 file (7c60907d_manila) indeed allowed only 20 slots, but in the Sk-i theme, the one modded or used was not the original file from CHT, but the one Mike modded!!! and not tested/approved for release
So let´s wait for Mike´s reasons and motives for not releasing it yet.....
A few weeks back, it was agreed that there were still some issues pending to be resolved prior to a public release as you remember when rat informed us about the mode of 3a8e04af_manila
No dissapointments friends, I have edited my posts to give propper credits to mike2nl. I've really always thought that mike is the creator of the original fix. Sorry for the inconveniences that this may have caused.

Development Discussion: Modification of PDF Viewer

Taking notes over PDF slides with the scribe pen has really saved me a lot of hassle. I love this function of the flyer. There's really only one way it could be better: Fullscreen support, or at least "more screen" support.
Not only does the HC bar take up space, but the menu/title bar on top is even bigger. The pdf viewer has the screen real estate of a 5inch phone.
PDF editing seems like only a moderately used feature, so I don't see this getting done on it's own. I'm offering a very modest reward for a fix.
I would be willing to donate for the removal of the huge uppermost Title/menu bar in PDF viewer, so that a double-tapped fitted pdf page will fill the new space. See the attached image. You can leave the small menu button in the corner if possible, or just get rid of it if it's too difficult.
I'm hoping this is as simple as modifying a few variables in the apk. I could be very wrong.
I can live with just the HC bar at the bottom.
Note: I have tried apps like repligo and ezpdf which do offer fullscreen support. However, annotating and changing annotation options takes many more steps than the HTC pdf viewer.
Secondary goal:
Apps like honeybar and honey hide widget cause all pen written annotations to be shifted up.
I believe the solution to the first problem would also allow an easy fix of the shifting pen annotations. I would like the PDF viewer to accept pen strokes properly with a hidden HC bar.
No one's willing to give it a shot? Ah well.
This will be my only bump.
I've attached the (unmodified, I think) HTCPDFViewer.apk from /system/app from LeeDroid's 4.1.0 rom.
I was the guy who removed the obnoxiously large language bar from Sony Ericsson's keyboard back when I was still using my u20i phone... unless HTC is particularly irritating about how it structures its resources, you're right that it is a matter of decompiling the APK, adjusting numbers, and recompiling it. Merely hiding is not difficult (making the Menu button semi-transparent is probably too difficult, though, but you can pick a ROM with the hardware buttons enabled).
Unfortunately it is also incredibly tedious to decompile and recompile everything right, from my experience of the keyboard hack. I'm not really up to it at the moment. Hope you can do it.
I've poked around in the archive. I wonder if I could just delete the ti.tle bar png or layout file. There doesn't seem to be a definitive title bar png
I'm also experimenting with apk multitool.
Since it's a stock rom app, is this venture going to be a lot more complicated than editing an xml line and then recompiling?
Here's where I'm at. Everything I know about android programming I've learned tonight, so this may be confusing and stupid sounding:
The decompiled apk has several things which could refer to the title bar.
dimens.xml has lines like
<dimen name="global_title_height">35.0dip</dimen>
<dimen name="editing_panel_header_height">56.0px</dimen>
<dimen name="editing_panel_header_margin">47.0px</dimen>
<dimen name="editing_panel_no_footer_header_margin">35.0px</dimen>
However there are also thousands of header and title lines from other xmls.
Can I just use a theme line in the manifest?
It uses the ActPDFReaderTheme whose parent is the HtcActionBar.FullScreen from the com.htc.resources.apk
These link to the common_mainnav xmls and pngs in the resources.
Do I need to find an HTC theme from the com.htc.resources.apk that doesn't have a title bar? Could I edit the com.htc.resources.apk and edit the pngs or delete the referencing lines in the styles.xml?
Thanks. I'll keep digging.
And btw, the bounty's still out if anyone can do it faster. I don't have much free time.
I think I've got this. I'm real close
I figured out how to decompile, edit xmls, recompile, copy original meta-infs and androidmanifest, and adb push.
The dimens.xml in the viewer apk has no effect on the bar. It's a standard template htcactionbar.fullscreen
I could direct the apk to a new theme, but I've decided just to try deleting or shrinking the bar from the com resources apk.
Good luck! Remember the apk you push back must be a signed one, probably via hacking the modified xml files back into the original signed apk.
Now I've run into a snag.
No matter how many margin and layout dimension variables in the com resource I set to 1.0px, I still have a black bar above the pdf.
Then I tried changing the theme reference in the pdfviewer.apk. It loads the file picker without an action bar, but as soon as I click a file it crashes. It seems (I think) that the program has too many calls for the action bar. I'm not a programmer. Do you know how I can get the program to simply ignore any lines referencing the "actionbar"?
Lines such as: "invoke-virtual {v3}, Lcom/htc/pdfviewer/ActPDFReader;->getActionBarHeight()I"
I also tried <item name="android:windowNoTitle">true</item> after the theme and I have the same effect of no title bar but a forceclose after selecting a file
Could you post the entirety of the relevant xml layout file?
porcupineadvocate said:
Could you post the entirety of the relevant xml layout file?
Click to expand...
Click to collapse
Unfortunately there is no simple relevant layout file. I can't go any further with this project because I don't know programming. Here's my progress if anyone would like to give it a shot:
In the decompiled HTCPDFViewer is a \res\values\styles.xml
There is the line:
<style name="ActPDFReaderTheme" parent="@com.htc:style/HtcActionBar.FullScreen">
This tells the program to use the HTCactionbar.fullscreen template style in com.htc.resources.apk
Now there are two paths to take from here:
1) Changing the style template to @android:style/Theme.NoTitleBar.Fullscreen
or adding the requestWindowFeature(Window.FEATURE_NO_TITLE) line
Issue: This causes the file picker to load without a title fine, but as soon as a pdf loads, the program crashes.
How far I got: I simply deleted 2 lines referring to the actionbar in the PdfLoadingPage$LOADING_PAGE_Handler.smali and the pdf loads. However there is a now a black empty bar on the bottom, and any pen writing is being moved upwards.
I suspect this is because of the ActionBarMenuAdapter.smali that controls how the pen annotations are moved in relation to the actionbar. There are also 100 more lines referring the actionbar in the other smalis. You can find them all by searching the apk for "actionbar". A proper programmer could remove these lines, or more easily make every m_iActionBarHeight:I line refer to zero.
If someone can fix the programming, I suspect that this would also solve the hidden HC bar issue, allowing true fullscreen support!
2) Editing the com.htc.resources.apk
The styles.xml in this file has a NoTitleBar.Fullscreen theme that redirects to other xmls redirecting to different layout files and pngs.
I've looked through every dimens.xml and other xmls that may be even loosely linked to the actionbar. I even tried haphazardly changing every possibly connected dimension to 1.0px.
I then tried shrinking all of the related PNGs to 1x1 pixel.
The end result was just a funking looking grey and black bar at the top.
I have no idea where to find the dimensions controlling the size of the actionbar.
Thanks for any help! Warning: Recovery backup before pushing a new com.htc apk, if you don't do it correctly, things can get messy with the OS.
porcupineadvocate said:
Could you post the entirety of the relevant xml layout file?
Click to expand...
Click to collapse
Ok I may have lied. There are one or two files I wasn't sure about.
These are from the xmls in layout folders of com.htc apk.
Can you take a look and see if there are simple line(s) to change here? notepad++ is great.
I already attempted to edit all of the dimens.xml dimensions. I can't remember if I got all of the dimensions in these files too.
The bar seems to be about 56 pixels. I gathered that from reduced editing view dimensions but I could be wrong.
Not that it is a big deal for a minor issue like this in a low traffic forum like EVO View but "bounty threads" are strictly prohibited by xda.
I doubt the mods will hassle you since this isn't a heavily travelled thread but they might shut you down at any second. Good idea to get some PM's going with anyone who is helping you.
Good luck.
Sent from my PG41200 using Tapatalk
Post the decompiled HTPDFViewer, please. I particularly want to see the contents of res/layout/*.xml files.
As a tip, don't delete any elements; just resize them to zero height/width if possible. Deleting will cause crashes when the program tries to reference them.
porcupineadvocate said:
Post the decompiled HTPDFViewer, please. I particularly want to see the contents of res/layout/*.xml files.
As a tip, don't delete any elements; just resize them to zero height/width if possible. Deleting will cause crashes when the program tries to reference them.
Click to expand...
Click to collapse
Here it is.
Woops I didn't realize bounties were prohibited, especially with so many developers asking for "donations"
Delete this if you'd like. I didn't mean to break the rules.
Donations and bounties are different. Donations are thanks for work done, bounties are offer of compensation to do work. If they allowed bounty threads xda would be overrun with them.
No big deal. I doubt the mods even visit this thread. Just wanted to give you heads up to establish pm conversations in case they did
Sent from my PG41200 using Tapatalk
No progress since my last update on the programming front. However I have been playing with the lcd density changer.
Setting it to 170 from 160 and enabling the GB like bar on top has interesting results. The pdfviewer only edits properly when I use Honeyhide or Honeybar. So we know that disabling the notification bar and having a working pdfviewer is possible.
However, I found I have the best pdf editing real estate when I set the lcd density to very low, like 120. In fact, not only are the title and HC bars smaller, but the pen seems to be more accurate too!
Maybe this information will help with our goal.
EDIT: at 120 and below, the scribe color wheel pops up on the wrong side. Still works though. Other tablet functions are much slower and there's some screen corruption too. It's not a permanent solution, but works for annotating pdfs.

Categories

Resources