[APP][WM6.5]Titanium Plugin CAccessoiries, CContact ... - Windows Mobile Apps and Games

Hi,
I propose another plugin for Titanium. It is based applications offered by chriscsh (cLaunch v0.25 / CSettings v0.1 / v0.1 CGAM ...) and has the particularity to appear: in the central part page, and on both of other pages located before and after. You then have the choice to slide left or right to select the next page to display.
My thanks to: chriscsh, looz3r,
Only for QVGA yet but I am very pleased that one of you face the changed for other sizes
WVGA files -> Here
Attention you need first install MortScript
CContact Or CMyFriends
CAccessoiries or CTools
CMyfriends and CContact is the same, it can add 5 more contacts
CTools and CAccessoiries is the same, it can add 5 more link

tryin out the accessories panel ...
it looks really nice, keep up the good work
++
EDIT: if i press the "edit" button it appears a message sayin "There is no application associated with "App4". Run the application first,then open..."

Hi,
Have you install MortScript ?

Everything is working just fine thx Rickou for your effort....

Nice!
Big thanks Rickou26....

Thank you, it's always nice to see that someone appreciates my work

how to add more page instead of 5 can i add another 5 more. i love this one

ahhl said:
how to add more page instead of 5 can i add another 5 more. i love this one
Click to expand...
Click to collapse
yes, i'm too...

looking at the script file, it seems that i have to rewrite the all the script file fron app1 to appxx if i want to add another 5 page(?) is this true, or can i just rewrite only those newly added ones app6 to appxx ?

May I request making this VGA?
I'd be willing to test it out

where the cpr file for this??, change the mscr but the image overlap inside the 5 panel. i think need to change the cpr file?

...or can i have two accessories panel on titanium? (of course with different name)..how to do it?

Nice plugin, is it possible to make it in WVGA ?

ahhl said:
looking at the script file, it seems that i have to rewrite the all the script file fron app1 to appxx if i want to add another 5 page(?) is this true, or can i just rewrite only those newly added ones app6 to appxx ?
Click to expand...
Click to collapse
Hello,
When adding an accessory, or an additional contact is somewhat difficult to do appear on the Main View. So the easiest way is to add a new plugin. I will propose another cab soon.
CelticREI said:
May I request making this VGA?
I'd be willing to test it out
Click to expand...
Click to collapse
wuub said:
Nice plugin, is it possible to make it in WVGA ?
Click to expand...
Click to collapse
Ok, I prepare a cpr for your tests.
By.

Ok to start, CMyfriends (CContact) On the first post.
By.

CTools -> CAccessoiries

wuub said:
Nice plugin, is it possible to make it in WVGA ?
Click to expand...
Click to collapse
Hello,
Can you test this version. I'll also attach the plg to potentially some adjustments.
Thanking you.
Salut,
Peux tu tester cette version. Je te joins également le plg pour faire éventuellement quelques ajustements.
En te remerciant.

yes.ss this of sort i want..

[QUOTE = rickou26; 6.356.825] Ok để bắt đầu, CMyfriends (CContact) Trên bài viết đầu tiên.
By [/QUOTE]
[QUOTE = rickou26; 6.356.962] CTools -> CAccessoiries: D [/ QUOTE]
Very Thanks Rickou26 for new nice Plugin! i'm waiting longtime! good work...
sorry for my bad Eng...

Hi,
No feedback on the WVGA version !
nobody wants to help me finalize the plugin for this resolution ...
By.

Related

WM2005 - Replacement for spb pocket plus battery meter

UPDATE: See below for cab file -- easy install, cheers mate
Hi guys,
I LOVE the spb pocket plus battery meter along the top. I feel NAKED without it.
But -- it doesn't work with WM2005
So, here is a replacement. It shows battery and memory use at the top of the screen and works well with WM2005.
Copy to your \Windows\Startup.
You can run this first to make sure it's not a virus but for better proof please visit the page I found this on, and say thanks to Intek for making this!
http://www.pocketgear.com/software_detail.asp?id=17943
source code
Source code follows (thanks Inteks!)
Code:
// powerstatus.cpp : Defines the entry point for the application.
//
#include "Windows.h"
int WINAPI WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
// TODO: Place code here.
SYSTEM_POWER_STATUS_EX pst;
int i,cx,dx,ex,top,c;
HDC hdc = ::GetDC(NULL);
HPEN pe,pb,po,pm;
pe = CreatePen(PS_SOLID,2,RGB(50,200,50));
pm = CreatePen(PS_SOLID,2,RGB(250,150,50));
pb = CreatePen(PS_SOLID,2,RGB(80,80,80));
i=30;
top = 1;
c=0;
while(1)
{
i++;
if(i>15){
i=0;
GetSystemPowerStatusEx(&pst,true);
if (pst.ACLineStatus==1)
{
pst.BatteryLifePercent=c;
c+=25;if(c>100)c=0;
}
cx = GetSystemMetrics(SM_CXSCREEN) / 2;
dx = (int)(cx * pst.BatteryLifePercent / 100.0);
STORE_INFORMATION ss;
GetStoreInformation(&ss);
MEMORYSTATUS ms;
GlobalMemoryStatus(&ms);
float mfree;
mfree = 1.0f/(ss.dwStoreSize+ms.dwTotalPhys)*(ss.dwFreeSize+ms.dwAvailPhys) ;//+ ms.dwMemoryLoad) / 2;
ex = (int)(cx * mfree);
}
MoveToEx(hdc,0,top,NULL);
po = (HPEN)SelectObject(hdc,pe);
LineTo(hdc,dx,top);
SelectObject(hdc,pb);
LineTo(hdc,cx,top);
SelectObject(hdc,pm);
LineTo(hdc,ex +cx,top);
SelectObject(hdc,pb);
LineTo(hdc,cx*2,top);
SelectObject(hdc,po);
Sleep(100);
}
DeleteObject(pe);
DeleteObject(pm);
DeleteObject(pb);
::ReleaseDC(NULL, hdc);
return 0;
}
Here is inteks Powerstatus 1.0 as cab file. It is same file above but in cab format for easy installation.sorry earlier cab file i uploaded had setup.dll from AEBPlus
Uploaded corrected cab file. please download again. Sorry for the mess.
Thankx
:lol: :lol: missed it , not anymore
THANX guys...
PERFECT!!!!!
buzz
actually, what is it about those buttons after starting it?
THANX
buzz
buzz_lightyear said:
actually, what is it about those buttons after starting it?
Sorry buzz it was my mistake. I was messing around with AEBplus and somehow the setup.dll from that cab got mixed up with that of powerststus cab file. The button dialog you were seeing was of aebplus. also when you uninstal this cab you get the dialog telling that AEBplus uninstalled
Now I have corrected the cab file. Sorry for the mess :roll:
Click to expand...
Click to collapse
It's nice and all, but unfortunatley I see some flickering on the power/memory bars when Synchronizing, WiFi, and even in some full screen games the bars keep showing (which is somewhat cool, but they flicker oddly).
Is this a modified version of the original?
What changed?
Is it possible to make the bars just one pixel tall?
What are the increase/decrease increments? It would be nice to have it decrease/increase by one or two pixels and have a dashed line instead of a solid line don't you think?
Best regards,
Rayan
that solid line is what I like the most on it...
buzz
It's not working...
Uhm,sorry, am I missing something? Just installed Powerstatus_corrected on my Magician (T-Mobile one with original ROM), but there's nothing to see (no bars... - even after soft reset... ). Do I have to activate (start) it somehow? Where is the program installed to?
Greetings,
BGK
Re: It's not working...
BGK said:
Uhm,sorry, am I missing something? Just installed Powerstatus_corrected on my Magician (T-Mobile one with original ROM), but there's nothing to see (no bars... - even after soft reset... ). Do I have to activate (start) it somehow? Where is the program installed to?
Greetings,
BGK
Click to expand...
Click to collapse
Yes, copy the executable (or make a shortcut) and place it on the Windows/Startup folder so every time you soft reset it is automatically launched...
Greetings,
Rayan
Sorry again, which exe? Guess I'm a little bit blind today... :roll:
TIA,
BGK
Okay BGK, disregard my last post... This new version installs automatically to the Startup folder, so the only thing you need to do is either use File Explorer on your PPC to navigate to Windows/Startup and click on the Powerstatus.exe file to launch it or turn off the PDA and then soft reset...
That's it...
Rayan
Okay, I've got it. Obviousely while you where typing, I realised, that the exe was installed into /Windows/startup. As the autostartup-folder is named "Autostart" on german devices, the exe wasn't run on soft reset...
When running it manually, it works like a charm...
Anyway, thanks for the hint, Rayan.
Greetings,
BGK
Is this WM2005 only or will it work on WM2003SE?
How to uninstall it?
Tekguru said:
Is this WM2005 only or will it work on WM2003SE?
Click to expand...
Click to collapse
Yes, it runs under both OSes...
negatong said:
How to uninstall it?
Click to expand...
Click to collapse
Just take the .CAB file and copy it to your Pocket PC and then execute it from there... It will install to the Windows/Startup folder (or Autorun for German devices).
Soft reset the device by turning off then soft reset or simply navigate to the installed directory and execute it from there.
Cheers for the quick reply, will be installing shortly!
It runs on my XDA IIi running 2003se!
e_status
Hi guys,
i liked this app so much, and i was so insolent, that i rewrote a bit... ))
now those bars are shown at the bottom of the screen, coz it is not so busy there as at the top. That means not so much flickering... Of course, if you run full screen apps, it will mess with it, because it is drawing directly to screen...
Now there are four bars...
green -> main battery %
yellow -> backup batery % (this is 2 B changed to BatteryDrain l8r)
orange -> Free RAM %
red -> Free Storage memory %
i also changed the it's behaviour, while the device is cradled... now it looks more alive )))
oh yeah... i named it e_status (enhanced status??) )))))
hope. U'll like it...
buzz

[UPDATED 23APR08] Charmer TouchFLO WM6 German Version 3.2 - by Ridingshark

DEVELOPMENT DISCONTINUED
VERSION Beta 3.2 is out, see end of this post
Hello to all Charmer users.
This is a another German ROM for Charmer (MDA II Compact).
Thanks to gullum and vlodeck for the base ROMs and the permission to re-cook.
see this link: http://forum.xda-developers.com/showthread.php?t=323979
Also thanks to mschmitz for the idea, the work he put into his German ROM - see this link: http://forum.xda-developers.com/showthread.php?t=331142, for providing the link to the “how-to translate” and for inspiring me to cook the “perfect” ROM (at least for my purposes).
My idea/goal is to gain as much Memory as possible by keeping ROM small as Charmer gets remarkable slower if usable MEM goes below 15MB.
Future Plans:
This ROM: I will try to get it stable and "entirely" German. Thereafter:
New ROM: I plan to cook a slim “base” ROM and let the user decide what to install (e.g. only “Tastatur” installed, rest can be de-installed by user).
This is the first stable version as I did not publish Beta 1 – 2 due to unsolved items (that are solved now in this beta 3).
Now what’s the difference to vlodecks English and mschmitz German ROM:
I implemented “real” German Inputs, so all English versions all DLLs have been removed to save space (e.g. in mschmitz ROM you will have “Keyboard” and “Tastatur” which causes selection troubles).
Input Method Selection therefore does not require “tricks” anymore and works like expected. I anyways included IM Selector (see below).
Following Programs are NOT included in my ROM compared to vlodeck and mschmitz:
- Some Themes:
Black Light.tsk
Black Satin.tsk
Wm_black2.tsk
- Ringtone: Ring-WindowsMobile .wma
- Some Freeware (download and install it if you need it)
Call Firewall
Group SMS Application
Jeodek Java
WM5torage
PHM Regedit (as Taskmanager provides the best Registry Editor I know)
- VoIP (Voice over IP)
If you need VoIP you will find a Folder “Voice over IP” in RAR File. Simply install both cab Files and you have VoIP – will take about 2MB space.
Programs that ARE INCLUDED in ROM:
- All German Inputs (removed all english DLLs)
- pBar (new Version 1.5 iso 1.4 like in Vlodecks), good Task manager with battery monitor, etc
- kbdddr.dll (Charmer kbddrv as Vlodeck uses Prophet)
- allblack.tsk: (This is a black Theme which also removes „WM6 Shiny/Glossy bars”, so this is a real flat black theme, e.g. use for iPhone Skin)
- PPCPIMBackup (new Version). Backup your Contacts, Phonelist, SMS, etc..
- IM Selector (You can choose a an input method that is Standard after Soft reboot. Standard is now “Tastatur”)
- Phonepad (Intellipad) GER/ENG only, I removed all other Languages (like Greek to save space)
- wince.nls (exchanged from Prophet Version to Charmer Version – Needed for ActiveSync over MS Exchange Server)
- MMS Templates translated to German
- Icons for Program Folders
- Filedialog changer
- Task Manger by dotfred (including a Registry Editor)
How to:
My checklist how to flash your Charmer to WM6 can be found here:
http://forum.xda-developers.com/showthread.php?t=363882
Thereafter be sure to READ vlodecks HowTo and see screenshots of (english version) WM6 for Charmer!!
http://forum.xda-developers.com/showthread.php?t=323979
You will also find a working ROM to flash back to WM5 here.
ATTENTION:
It may happen get an error (like: cannot replace file, maybe in use, or similar)after running "Upgrade_ROM.bat".
No worries, in this case copy "EnableRapi.cab" and "Cert_SPCS.cab" to your device if not allready there and install them by clicking on it in File Explorer. Then re-run "Upgrade_ROM.bat" and it should work.
On my Charmer the ROM is stable without any problems. If you crash your device, its YOUR fault and own responsibility.
Please do not ask how to flash a ROM or where to find ROMs or programs, etc in this thread, see links above. If you are not sure what you do, its better not to do it.
If you find any bugs, please report.
Have fun
Ridingshark
---------
New Version Beta 3.2 is out.
Download Version Beta 3.2 at: http://www.file-upload.net/download-1113151/Charmer_Touch_GER_Ridingshark_Beta_3.2.rar.html
Pass is: wm6
ATTENTION – UPGRADE INFORMATION GENERAL and when you flash my ROM for the first time:
(German: ACHTUNG: Bei jedem UPGRADE und wenn Du mein ROM das erste mal auf Dein Gerät spielst).
Do not forget to Flash back to WM5 before you upgrade from another WM6 Version and read the HOW-TOs!!.
Speicherkarte/Storage Card Info - Wichtig: For System Compatibility to english Versions the "Speicherkarte" is called Storage Card in my ROM (as we often switch/test from english to German versions and v.v).
If you flash from a German WM5 ROM, you might have problems after restoring your personal data as "Speicherkarte" is named "Storage Card" (e.g. Installed Programs, etc.).
To solve this you can edit this registry item:
go to Taskmanager/RegEdit [HKEY_LOCAL_MACHINE\System\StorageManager\Profiles\SDMemory] and change "Folder"="Storage Card" to: "Folder"="Speicherkarte".
But be carefull: If everything worked OK for you with "Storage Card" (e.g. you had an english version before) and you rename "Storage Card" to "Speicherkarte" later on, you also have to change all Registry References (Installed Programs, etc.) and Shortcuts to "Speicherkarte"!!
ATTENTION – UPGRADE INFORMATION FROM MY PREVIOUS BETA VERSION 3.0 (3) or 3.1:
(German: ACHTUNG: NUR wenn Du schon mein ROM 3.0 oder 3.1 auf Deinem Gerät hast).
An GERMAN upgrade Guide is enclosed with the RAR File (“Upgrade Anleitung WM6 ROM Beta 3.2.pdf”). Please read (Bitte unbedingt lesen).
There is one error in this file: When deleteing the COMM Destinations in my file you should go to "HKLM\Comm\ConnMgr\Destinations" not to "HKCU\Comm\ConnMgr\Destinations". This is important, if you have german and english COMM Info, you will have Problems setting up a Connection.
Changelog:
Changes Version 3.2
- Solved all bugs reported so far (reported until 21-04-2008)
- fixed SMS and WebMail bug (text was vertical or no body at all)
- Translated all reported to German (except 3rd party software as e.g. “Soft Key” and “Bluetooth Explorer” and “Filedialogchanger”).
- translated Pocket Office Templates to German (dotx. xmlx)
- added Filedialog changer.
- added Task Manger by "dotfred" (including a better Registry Editor)
- removed PHM Regeditor
- replaced Mobilcalculator (thanks to cyberdel)
- replaced pxl.exe (Pocket Excel) as there was an error
- replaced Batterystatus with new Version
- Windows Helpfiles will be installed after Hard Reset and can be de-installed by user (save around 1MB)
Changes Version 3.1
- Cube is working now (one wrong Registry entry detected)
- Hardware Buttons bug for Contacts and Calender (Button 1 & 2) fixed.
- All HTML Help Files translated to German now.
- All Settings reported by “Staubsauger” translated to German
- Folder “My Documents/TEMPLATES” removed, only “My Documents/VORLAGEN” will be there.
- Folder “Office Mobile” only once in “Startmenu/Programme” (Attn Staubsauger: The “Microsoft Office” Folder is from your Restore, I think – delete manually)
- Wireless Service Monitor back to ROM (as this is required for SDIO Wireless, also exists in WM5 – T-Mobile ROM)
- Links für Messenger und WLMLauncher added
- replaced German “folderview.exe” and lnk (in “\Windows” directory) - Displays the “Programme” Folder. Original HTC displayed wrong folder
- added settings.exe and lnk (in “\Windows” directory) - Displays the “Einstellungen” Panel
- removed WM5Torage. (install if you need, I dont)
wow great a new release. i am very happy, that in this release are non-usual-programs like wifi, voip, etc deleted to save memory. GREAT.
But is there also a new Build of Windows? Maybe you can cook it? Thanks anyways for the new release
Yummie, great work, ridingshark!
Excellent ROM without to much of the 'senseless' stuff in it!
Looking forward to your "base"-ROM!
@ridingshark:
Some "bugs"...
It seems that the 'Touch Cube' doesn't work! The Cube can't be activate by draging from top bar straight to the bottom but sometimes by touching one of the Softbuttons the Cube activates itself!
There are two Office-folders ('Microsoft Office' & 'Office Mobile')
There are still some non-german system-parts
[Start-Einstellungen-Persönlich-Telefon-PIN2 & More]
[Start-Einstellungen-Persönlich-Tasten-Lock]
[Start-Einstellungen-Verbindungen-Bluetooth-FTP]
[Start-Einstellungen-Verbindungen-GPRS Settings]
[Start-Einstellungen-Verbindungen-Network Wizard]
[Start-Einstellungen-Verbindungen-Wireless LAN] (Is this feature really necessary?)
[Start-Programme-Hilfe]
[Start-Programme-Kalendar] --> should better be Kalender
Anyway, great work!!!
Staubsauger said:
@ridingshark:
Some "bugs"...
It seems that the 'Touch Cube' doesn't work! The Cube can't be activate by draging from top bar straight to the bottom but sometimes by touching one of the Softbuttons the Cube activates itself!
There are two Office-folders ('Microsoft Office' & 'Office Mobile')
There are still some non-german system-parts
[Start-Einstellungen-Persönlich-Telefon-PIN2 & More]
[Start-Einstellungen-Persönlich-Tasten-Lock]
[Start-Einstellungen-Verbindungen-Bluetooth-FTP]
[Start-Einstellungen-Verbindungen-GPRS Settings]
[Start-Einstellungen-Verbindungen-Network Wizard]
[Start-Einstellungen-Verbindungen-Wireless LAN] (Is this feature really necessary?)
[Start-Programme-Hilfe]
[Start-Programme-Kalendar] --> should better be Kalender
Anyway, great work!!!
Click to expand...
Click to collapse
Hello Staubsauger *g*
Thanks for inputs. Strange, did not have any problems with Cube.
After hardreset i tested this, slided down and it started. I have it disabled in my Charmer (no need), but it should work.
Will check.
Thanks
Great work, best rom I think
But, I have the same problem with cube like staubsauger said. :/
TommyB83 said:
Great work, best rom I think
But, I have the same problem with cube like staubsauger said. :/
Click to expand...
Click to collapse
OK, think i have found the problem.
A bugfixed and extended version beta 3.1 for all above will come next week latest (hope)
Regards R
Very nice to hear this
Wish you best luck for the next version and hope it comes soon
German part:
Irgendwie verwundernd, dass man in nem Thread über ne deutsche Firmware in englisch schreibt, oder nicht?! ^^
Schön zu hören dass du an ner neuen Version arbeitest. Wünsch dir viel Glück für die nächste Beta, freu mich schon auf das ultimative Flash
*** german part included 'cause my not soo good english knownledgement
Yeah!!!
@ ridingshark: Great work!
Just a few things:
Using SKTools 4, I found one wrong link (it is a ROM-File, so no chance for me to correct it): "\Windows\Start Clean.lnk" referes to "\Program Files\Startclean\startclean.exe" instead to "\Windows\StartClean.exe". (see screenshot_1.jpg)
At the "Telefon"-screen there is "Contacts" instead of "Kontakte" (see screenshot_2.jpg) and the "Smart-Dialing-Options" are still non german (see screenshot_3.jpg)
btw: How long did it took you to cook this ROM? I would love to cook my own ROM but i haven't enough time to test, modify, test again, modify again, aso -> so i hope, that you will cook the ultimate german ROM for Charmer!
Some problems...
USB charging is not working
Time and date of text messages are not displayed correctly, the message body itself is alright
youser said:
Some problems...
USB charging is not working
[*]Time and date of text messages are not displayed correctly, the message body itself is alright
Click to expand...
Click to collapse
Yes, you're right! Haven't seen, that I've got the same problem with messages!
youser said:
Some problems...
USB charging is not working
Time and date of text messages are not displayed correctly, the message body itself is alright
Click to expand...
Click to collapse
Thats weird...
Strange.
1) USB Charging: After First use (Hard reset) please go to "\Windows" and Start "XDADev_BatFix.exe". This has to be done only once after Hardreset.
Reset and it will work
2) Will check what happened with Textmessages and try to post a bugfix until next revision.
Regards and sorry for troubles.
Hi there!
First of all: Great great work of yours!
I experience 2 kind of problems:
E-Mails (push, exchange, pop accounts) show no message body, only headers, recipients & attachments (though u can't open them)...
When retrieving data (mails, internet, active sync) the sessions don't end automatically, u always have to cancel them manually.
Does anyone struggle with the same stuff ?
Cheers, gustox
Hi gustox!
I also just found out, that email-accounts in p.outlook are not working correctly.
In fact, no message-body when opening a downloaded email (see screenshot_1 & screenshot_2).
(btw: YES, there IS a content in the mail shown at the screenshots!)
Don't see a problem with not-self-stopping-sessions! What do you mean exactly? The GPRS/EDGE connection? - IMO they never should end automatically, 'cause you're wasting data-volume (this shouldn't be really a problem) and there's no need for stopping it anyway.
Staubsauger said:
Hi gustox!
I also just found out, that email-accounts in p.outlook are not working correctly.
In fact, no message-body when opening a downloaded email (see screenshot_1 & screenshot_2).
(btw: YES, there IS a content in the mail shown at the screenshots!)
Don't see a problem with not-self-stopping-sessions! What do you mean exactly? The GPRS/EDGE connection? - IMO they never should end automatically, 'cause you're wasting data-volume (this shouldn't be really a problem) and there's no need for stopping it anyway.
Click to expand...
Click to collapse
Hello Guys, i dont know the heck what the problem is, i recooked all and no change for that. Did you use another German ROM before (e.g. mschmitz( and did you have similar problems?
Please report
thanks
Staubsauger said:
Hi gustox!
Don't see a problem with not-self-stopping-sessions! What do you mean exactly? The GPRS/EDGE connection? - IMO they never should end automatically, 'cause you're wasting data-volume (this shouldn't be really a problem) and there's no need for stopping it anyway.
Click to expand...
Click to collapse
Every 5-10 minutes it starts an internet connection just by itself.
I noticed it in the morning when the data session was like 7 hours or so!
Don't know why...active sync config is :
main time check: every 2 hrs
side time check: manually
GMX Account check: manually
Strange.
@ ridingshark:
That's my first wm6 rom.
Previous rom: TMobile Austria AKU2_0_Update AUT
cheers, gustox
@ gustox:
Have you checked the settings for HTCHOME-Weather? Maybe this is the reason for connecting every 5-10 minutes!?
@ ridingshark:
I tried several ROMS (vlodeck's & mschmitz') but never had similar problems. I think the main problem is with the "html-interface" of p.outlook.
Creating a new email, the message-body indicates a hyperlink to "Inbox:ReadBody editmsg" (screenshot_1 & screenshot_2). Following this hyperlink it creates an Error-message (screenshot_3).
Obviously this is the key!
Staubsauger said:
@ gustox:
Have you checked the settings for HTCHOME-Weather? Maybe this is the reason for connecting every 5-10 minutes!?
@ ridingshark:
I tried several ROMS (vlodeck's & mschmitz') but never had similar problems. I think the main problem is with the "html-interface" of p.outlook.
Creating a new email, the message-body indicates a hyperlink to "Inbox:ReadBody editmsg" (screenshot_1 & screenshot_2). Following this hyperlink it creates an Error-message (screenshot_3).
Obviously this is the key!
Click to expand...
Click to collapse
Yessss... You are genius!!
When i replaced the Help HTML Files i alos replaced this ones...
I will post a new ROM soon and mybe a bugfix now.
Come back in one hr!
ridingshark said:
Yessss... You are genius!!
When i replaced the Help HTML Files i alos replaced this ones...
I will post a new ROM soon and mybe a bugfix now.
Come back in one hr!
Click to expand...
Click to collapse
I'm just the kitchen help, you are the cook!
Staubsauger said:
I'm just the kitchen help, you are the cook!
Click to expand...
Click to collapse
Thanks agin for your input, that helped me saving hours.
Please install this bugfix (replaces the damaged html files and more german translations)
Please report if OK now.
Thanks

[WM6.1]ROM Prophet My Hulk Edition ROM 2(UC) 19.5.2008

ROM Prophet My Hulk Edition​Homer is the Ingestible Bulk​
This is another version from Cloudyfa's Latest Version. This ROM is similiar to My Green Edition 2, but included feature SMS Background ( Homer as Bulk is wallpaper for sms ) and a new Mac Wait Cursor.
Thanks for Cloudyfa for base ROM.
This ROM is using new Upgrade Methode.. Make sure you have HARDSPL (Important !!!) your device.
Please READ WM6 UPGRADE GUIDE from hma4.. IMPORTANT!!
Code:
[URL="http://forum.xda-developers.com/showthread.php?t=350033"]http://forum.xda-developers.com/showthread.php?t=350033[/URL]
If you do right. there should be no Problem.
(the image is linked to Windows Mobile 6 Directory For Dummies from Duato.)
Read Wiki, if needed.Most problem solution are there.
RADIO ROM is suggested with 2.19 .It seems the best one. You can find it here or here
Feature :
*OS 5.2.19701 Build 19701.1.1.0 (Thanks to Cloudyfa)
*NETCompactFramework 3.5
*SIM Manager 6.42
*ArcsoftMMS 5.0.31.16
*CommManager 2.1.4.0
*NetworkPlugin 1.0.29714.1
*NetworkWizard 1.0.29982.4
*RandomAccess Green(Thanks to rondol1)
*Mode SMS
*WPA 2 Feature Support
*Green Skin Pack (Thanks to rondol1)
*Bluetooth Print
*Bluetooth SAP
*Bluetooth FTP
*Pocket RAR
*Clear Temp
*PPC PimBackup 2.8
*WM 5torage
*Registry Editor
*Advanced Configuration Tools
*Adobe Reader LE 2.0 (Optional)
*Adobe Flash Lite (Optional)
*New design for Solitare .
*New Icon (made by me)
*New Mac Wait Cursor (made by me)
*Enable Sound on Call. ( You can hear Music, while calling some one. )
*Background Homer as Hulk for sms
*Some Surprize on Start Up
*6 Mb Page Pool
*...
Screenshot : ​
{
"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"
}
My Hulk Edition
Recommended Radio ROM 2.19
HARDRESET is as always recommended after flashing.
Free Storage around 63 MB. Free Memory 29 MB. (Adobe Feature not installed at this case)
Tested on G4 Device. G3 Device seems to have more free storage.
How to make ROM more faster without Overclock.( Actually it's already fast and too fast in my opinion).
But if you want to make it more .Then you should try this reg setting
----------------------------------------------------------------------------
Increase Font Cache
HKLM/System/GDI/GLYPHCACHE/limit: 8192 => 16384 ( if you want, you can try 32768 or 65536 )My best setting is at 32768
Increase File System Cache
HKLM\System\StorageManager\FATFS/CacheSize: 0 => 4096
Increase File System Filter Cache
HKLM/System/StorageManager/filters/fsreplxfilt\ReplStoreCacheSize: 0 => 4096
---------------------------------------------------------------------------
See second post if you want to some attachment.
---------------------------------------------------------
If you want to use BT A2DP.
See this POST
---------------------------------------------------------
Special Thanks for Cloudyfa for base ROM. You are God of Prophet
Special Thanks to Kumara ,Cloudyfa,l3v5y,rondol1,Medkid,Vetvito, and many others. And all people, which software that I used.
and hma4, Maxniper, wapvirus for solitare design, and many others who helped me.
XDA Developers Community
For anyone who want to have Windows Messenger on it ( just click the Image Download )
and Quickmenu, Cyberon Voice Speed Dial and Esmertec Java are on attachment.
Since this ROM is UC ROM.
You can add this installer on SD Card and to be run automatically. ( Dunno how? Read below guide)
there are two files that you have to copy to storage card .
SdConfig.txt and Cabs
So you need to copy this two files to SD Card to make it User Customize..
Just put cabs that you want to be auto install .
and edit the SDConfig.txt , if you add something
this is the original one for this ROM.
Code:
CAB: \Storage Card\Cabs\Adobe Reader LE.cab
CAB: \Storage Card\Cabs\Adobe_Flash_Lite.cab
LOCK: Disabled
RST: Reset
So you have to edit it to this one ( if you add abxd.cab )
Code:
CAB: \Storage Card\Cabs\Adobe Reader LE.cab
CAB: \Storage Card\Cabs\Adobe_Flash_Lite.cab
[COLOR="Red"][B]CAB: \Storage Card\Cabs\abxd.cab[/B][/COLOR]
LOCK: Disabled
RST: Reset
and save the file.
and it will auto install your cabs, each time you hardreset your device.
---------------------------------------------------------
If you want to use BT A2DP.
See this POST
---------------------------------------------------------
happy flashing
It's up now. Hope all of you like it.
Hulk is one of my Fave Hero.
You cook so many ROMs!!!
On Thursday evening, I'm gonna spend time porting a new ROM, and then I'll get to release a few more ...
I'll download and try this one now!
l3v5y said:
You cook so many ROMs!!!
On Thursday evening, I'm gonna spend time porting a new ROM, and then I'll get to release a few more ...
I'll download and try this one now!
Click to expand...
Click to collapse
I have so much free time now. So I cooked somes..
Nice ROM but for 5 year old kids. Please cook a real ROM for once. TIA and have a nice day.
Later.
cute
thanks vincent
how to make the sms background if i want to change it and also the size of pict
nice rom. but i donk like homer.
thx
wow....nice
thank's friend.......
-------------------
mas gimana caranya kalo mo ganti sms background nya? mungkin saya mo ganti dengan gambar yang lain.
terima kasih
Hi there!
I also think, there should not be a new forum thread when the only change is a picture and a cursor. Even if somebody would want it very much, he would prefer an easy way to change those things without hardresetting the device. And this could be added to the existing thread.
In my opinion, it is much more important to work on a ROM that fits for as many people as possible by beeing very customizeable. This could be done by adding lots of themes, backgrounds and applications and let the user choose which ones to install.
The UC feature is a good start, this way the user could just delete the not needed applications from the "cabs" folder before install.
But even better would be a setup wizard which then "cooks" the rom with the selected things. I have seen that once somewhere, so it exists and just has to be configured by someone with a lot of time... I wish it was me.
My personal wishes (I have the black edition currently): Include VoIP (if possible optional (btw., I have got it installed the complicated way and it looks good, but I didn't have the time to really test it)), the big clock on the today screen and the task switcher...
Thanks anyway,
-Moritz
ups.....udah ketemu mas cara ganti sms background nya,
saya coba-coba sendiri
makasih ya ROM nya.
varanusvincent said:
ROM Prophet My Hulk Edition​Homer is the Ingestible Bulk​
This is another version from Cloudyfa's Latest Version. This ROM is similiar to My Green Edition 2, but included feature SMS Background ( Homer as Bulk is wallpaper for sms ) and a new Mac Wait Cursor.
Thanks for Cloudyfa for base ROM.
This ROM is using new Upgrade Methode.. Make sure you have HARDSPL (Important !!!) your device.
Please READ WM6 UPGRADE GUIDE from hma4.. IMPORTANT!!
Code:
[URL="http://forum.xda-developers.com/showthread.php?t=350033"]http://forum.xda-developers.com/showthread.php?t=350033[/URL]
If you do right. there should be no Problem.
(the image is linked to Windows Mobile 6 Directory For Dummies from Duato.)
Read Wiki, if needed.Most problem solution are there.
RADIO ROM is suggested with 2.19 .It seems the best one. You can find it here or here
Feature :
*OS 5.2.19701 Build 19701.1.1.0 (Thanks to Cloudyfa)
*NETCompactFramework 3.5
*SIM Manager 6.42
*ArcsoftMMS 5.0.31.16
*CommManager 2.1.4.0
*NetworkPlugin 1.0.29714.1
*NetworkWizard 1.0.29982.4
*RandomAccess Green(Thanks to rondol1)
*Mode SMS
*WPA 2 Feature Support
*Green Skin Pack (Thanks to rondol1)
*Bluetooth Print
*Bluetooth SAP
*Bluetooth FTP
*Pocket RAR
*Clear Temp
*PPC PimBackup 2.8
*WM 5torage
*Registry Editor
*Advanced Configuration Tools
*Adobe Reader LE 2.0 (Optional)
*Adobe Flash Lite (Optional)
*New design for Solitare .
*New Icon (made by me)
*New Mac Wait Cursor (made by me)
*Enable Sound on Call. ( You can hear Music, while calling some one. )
*Background Homer as Hulk for sms
*Some Surprize on Start Up
*6 Mb Page Pool
*...
Screenshot : ​
My Hulk Edition
Recommended Radio ROM 2.19
HARDRESET is as always recommended after flashing.
Free Storage around 63 MB. Free Memory 29 MB. (Adobe Feature not installed at this case)
Tested on G4 Device. G3 Device seems to have more free storage.
How to make ROM more faster without Overclock.( Actually it's already fast and too fast in my opinion).
But if you want to make it more .Then you should try this reg setting
----------------------------------------------------------------------------
Increase Font Cache
HKLM/System/GDI/GLYPHCACHE/limit: 8192 => 16384 ( if you want, you can try 32768 or 65536 )My best setting is at 32768
Increase File System Cache
HKLM\System\StorageManager\FATFS/CacheSize: 0 => 4096
Increase File System Filter Cache
HKLM/System/StorageManager/filters/fsreplxfilt\ReplStoreCacheSize: 0 => 4096
---------------------------------------------------------------------------
See second post if you want to some attachment.
Special Thanks for Cloudyfa for base ROM. You are God of Prophet
Special Thanks to Kumara ,Cloudyfa,l3v5y,rondol1,Medkid,Vetvito, and many others. And all people, which software that I used.
and hma4, Maxniper, wapvirus for solitare design, and many others who helped me.
XDA Developers Community
Click to expand...
Click to collapse
Great works and like it so much......d/ling now and will flash soon...
But how to ENABLE SOUND ON CALL??? CALLING SOMEONE WITH MUSIC??
THNAKS FOR SHOWING HOW.....
QuadDamage said:
Nice ROM but for 5 year old kids. Please cook a real ROM for once. TIA and have a nice day.
Later.
Click to expand...
Click to collapse
???
Did you already look my others ROM??
If not. Please look at it.
Heince said:
how to make the sms background if i want to change it and also the size of pict
nice rom. but i donk like homer.
thx
Click to expand...
Click to collapse
aldiersa said:
wow....nice
thank's friend.......
-------------------
mas gimana caranya kalo mo ganti sms background nya? mungkin saya mo ganti dengan gambar yang lain.
terima kasih
Click to expand...
Click to collapse
How to change SMS Background
Create your own image, size photo to 240x268 and save it as a gif
Name it with smsbgrt.gif and name it with smsbgr.gif.
Copy it to windows Folder.
Restart your device after that.
maf-soft said:
Hi there!
I also think, there should not be a new forum thread when the only change is a picture and a cursor. Even if somebody would want it very much, he would prefer an easy way to change those things without hardresetting the device. And this could be added to the existing thread.
In my opinion, it is much more important to work on a ROM that fits for as many people as possible by beeing very customizeable. This could be done by adding lots of themes, backgrounds and applications and let the user choose which ones to install.
The UC feature is a good start, this way the user could just delete the not needed applications from the "cabs" folder before install.
But even better would be a setup wizard which then "cooks" the rom with the selected things. I have seen that once somewhere, so it exists and just has to be configured by someone with a lot of time... I wish it was me.
My personal wishes (I have the black edition currently): Include VoIP (if possible optional (btw., I have got it installed the complicated way and it looks good, but I didn't have the time to really test it)), the big clock on the today screen and the task switcher...
Thanks anyway,
-Moritz
Click to expand...
Click to collapse
use cloudyfa's ROM and install VOIP separately. Clouydyfa's ROM has a big CLOCK and WK Task as Task Switcher. And it is also UC.
jkutan said:
Great works and like it so much......d/ling now and will flash soon...
But how to ENABLE SOUND ON CALL??? CALLING SOMEONE WITH MUSIC??
THNAKS FOR SHOWING HOW.....
Click to expand...
Click to collapse
it is enable by default.
If you call someone, you can play WMP at that time too. Just try it. Call someone and play WMP at the same time.
Or you asking me how to change it (the registry?)?
varanusvincent said:
it is enable by default.
If you call someone, you can play WMP at that time too. Just try it. Call someone and play WMP at the same time.
Or you asking me how to change it (the registry?)?
Click to expand...
Click to collapse
Thanks you, vincent.
And is there anyway we can change it at registry??
TA
maf-soft said:
Hi there!
I also think, there should not be a new forum thread when the only change is a picture and a cursor. Even if somebody would want it very much, he would prefer an easy way to change those things without hardresetting the device. And this could be added to the existing thread.
In my opinion, it is much more important to work on a ROM that fits for as many people as possible by beeing very customizeable. This could be done by adding lots of themes, backgrounds and applications and let the user choose which ones to install.
The UC feature is a good start, this way the user could just delete the not needed applications from the "cabs" folder before install.
But even better would be a setup wizard which then "cooks" the rom with the selected things. I have seen that once somewhere, so it exists and just has to be configured by someone with a lot of time... I wish it was me.
My personal wishes (I have the black edition currently): Include VoIP (if possible optional (btw., I have got it installed the complicated way and it looks good, but I didn't have the time to really test it)), the big clock on the today screen and the task switcher...
Thanks anyway,
-Moritz
Click to expand...
Click to collapse
Sadly, that needs to be cooked into the rom. How about you tell the car companies to make one car and let us all customize it?
A new thread allows us to know there is a new one, we don't check 4.0.0.5b everyday, now do we? Plus, most of the time the old threads are moved up, it's because some noob posted.
If that's what you want, cook it yourself. I mean, your's isn't very customizable, now is it. UC CAN install your own theme/dialer/keyboard. And if you bothered learning, you know you can get regedit to auto pick your theme of your choice. That's what I do, why can't you?
First learn to customize UC. Then learn to cook your own roms. Then complain that there isn't a tool to do what you want.
P.S. Don't forget, Gullum, one of the most respected chefs, started by modifying CloudyFa's roms, if I'm not mistaken.
I think this ROM is good for chirldren. Thank
jincongz said:
Sadly, that needs to be cooked into the rom. How about you tell the car companies to make one car and let us all customize it?
Click to expand...
Click to collapse
Why not? If this car company gives out free cars in different flavours, it could ship all flavours with it and let the "customer" choose at home.
A new thread allows us to know there is a new one, we don't check 4.0.0.5b everyday
Click to expand...
Click to collapse
But it is not really a new one in this case. The cook could also have released a cab file to do the changes, they are minimal, if I see it right (I didn't check exactly).
If that's what you want, cook it yourself. I mean, your's isn't very customizable, now is it. UC CAN install your own theme/dialer/keyboard. And if you bothered learning, you know you can get regedit to auto pick your theme of your choice. That's what I do, why can't you?
First learn to customize UC. Then learn to cook your own roms. Then complain that there isn't a tool to do what you want.
Click to expand...
Click to collapse
No sir, you got me wrong. Only the very last part of my posting was about my personal wishes - meant as an example for the important part.
I can learn how to cook and customize, but I am not like many other people just complaining and requesting things they need at this moment. If I had the time, I would contribute by doing my proposal myself, but so I try to contribute by telling my ideas about what could help many people and what someone with a lot of time could do (and then become the most respected cook )
In short: an installer package that contains all the knowledge of a good cook about how to integrate and omit several features and applications. During installation you choose if you want everything or omit some things to save space (like VoIP, Office and so on). You could choose between different taskswitchers, page pool sizes and windows themes.
Such an installer already exists, I have seen it some months ago.
If a cook would work this way, he wouldn't have to release 20 different ROMs and update all of them if he finds a new bug, but just update his one package.
Anyone else who thinks it is a good idea?
I already regret that I put this to this thread where not many people see it.
-Moritz

[APP][Update 2009/04/08] SSMaHo 0.0.4.0

[size=+2][APP][Update 2009/04/08] SSMaHo 0.0.4.0 [/size]
Guys
I reimplemented the old SSMaPa. completly new technology.
There aren't many new features till now, but the new architecture allows further changes..
some new features
- differing between mail and sms now possible
- added some new replacements
- landscape mode fully supported
- should be working generic on all manila versions
I also added gsgetfile.dll as default file chooser for ssmaho
How to use:
- if you was using old ssmapa, do first a 'full restore' in ssmapa!
- Extract all 4 files and copy them to a folder on your phone (the folder has to stay on the phone.. I recommand /programs/ssmaho)
- run ssmahogui.exe
- click on the first button
- click on load configuration
- click on "Start INIT-Assistant"
- There are two modes, prefer the fast init, only if this is not working, choose the manila file from the slowinit box. Click on Fast Init (or maybe slow init)
- There should appear something like: "CreateProcessW offset found: 0x002d4240, ..." If that's not the case and "unknown exetype" appears, then use slow init.. In some cases you have to click 2 times... If this isn't working too, then sorry, ssmaho will not work on your device.
- click close
- click on "start assigner mode"
- minimize ssmaho (click right top corner, fast, or start -> today)
- Go back to manila
- click on every element you want to replace in manila
- there should pop up a window 'Assigner'. enable in minimum following checkboxes: Active, EXE Name, all News
---- Match condition commandline is useful for hooking sms inbox and mail inbox
- with the button "..." choose the new file
- click ok
- assign as many as you want.. windows are not working, but there are more than in ssmapa.. also landscape alignment should be working
- when you're done go back to ssmahoGUI and click on "Stop all".
- go to shortcuts, I recommand enabling all...
- click on "Save Configuration"
- click on About (or don't do it )
- close the program
- You have under programs new shortcuts: SSMaHo Attach / SSMaHo Detach. click on "ssmaho attach" and the new programs get called when working with manila.
--> You have to execute the attacher everytime manila crashes. If you use autostart it should automatically attaching after softreset, but not after a crash.
I don't think that this tool is able to destroy something on the phone. Never mind, I'm not responsible for any damages.
[size=+1]Upgrade instructions[/size]
1. copy all the new files to the same directory
2. Click on "Install new HookerDll"
2.1. If this fails, click on "Load Configuration" -> "Stop All"
2.2 Reclick on "Install new HookerDll"
3. ReDo the initialisation. You should use FastInit. There should appear 6 offsets
4. Ready.. You can now use ssmaho...
With version 0.0.3.0 I implemented a real inline patch (hooking a function of manila). a generic solution for smt. like this is heavy... theoretically it should work (tested on a rhodium and old manila)... but as soon as htc changes smt deep, it won't be working anymore..
[size=+1]Tricks[/size]
- Everytime the first button is available, click it... you'll then have lesser "where the hell"-messages
- if you have problems with one function / one hook, deactivate it with "manual configuration"
[size=+1]Important[/size]
- The new inlinefunction-hooking of manila can only be searched with fast init. Also, fast Init isn't as fast as before, because it has to search more data... be patient after clicking on it..
Please donate for me! I'm a apprentice and use a lot of my free time for working on the computer, to be able to create such tools.
[size=+2]Thank you [/size]
Received Donations:
15 Euro - 28wagram - 2009/05/13 - nice, thank you
10 Euro - ppc3300 - 2009/04/07 - thank you
10 Euro - lacasi - 2009/07/23 - thank you
10 Euro - Martin L. - 2010/01/02 - thank you
5 Euro - juwenio - 2009/04/03 - thank you
5 Euro - Trident - 2009/04/09 - thank you
5 Euro - mpayne - 2009/06/11 - thank you
5 Euro - 1swat - 2009/06/25 - thank you
5 Euro - aussiebum - 2009/08/02 - thank you
5 Euro - plerche - 2010/02/23 - thank you
Changelog:
Version 0.0.4.0 (2009/04/08)
- Improved slow init. ssmaho now fully working on all devices where manila.exe isn't read-accessible (file is fully readable in ram )
--> Full support for Dutty 2.6 xtreme !
- added crash handler
--> on new phones, evertime manila crashes (not restart, crash) ssmaho gets reattached automatically. This feature is like all other event-based and not polling anything..
- fixed some bugs
Version 0.0.3.2 (2009/04/06)
- Removed exe limitation.. all filetypes are now supported
Version 0.0.3.1 (2009/04/05)
- ssmapat2hook.dll doesn't get removed after install
- improved --with-wait function. probably it helps, probably not..
- filename is no more case-sensitive
- last filename will be shown in fast-init box
- change on assigner: clicking to cancel will do the original action, clicking Ok will supress it
- added architecture for an external api interface (if your're interested, contact me)
- added new patch (only for developer usage, on page change)
Version 0.0.3.0 (2009/03/28)
- After hours and many evenings of work, I am proud to present the new ssmaho-version!
- Added special-infile-patch, hooks every subview of manila.
- Rhodium calendar / Call History and much more gets triggered (altough, on old manila versions, call history isn't hookable)
- bugfixes, autosave, ...
- added manual offset changer for professionals
Version 0.0.2.0 (2009/03/19)
- Added new hook (click on sms / mails / maybe rhodium calendar)
Version 0.0.1.0 (2009/03/16)
- First official release
- Thank NLS and hanackin for their patience on beta testing
P.S. Excuse me for my english...
[email protected]
Thanks a bunch, Svenso... I am a long time SSMAPA user, and I am very happy to see this new app.
So will this prog allow me to have wmp open instead of tf3d music player when i touch the music tab in touchflo? also will this software work on the new manila?
cheers
That´s indeed nice improvments. The question is if this app supports the upcoming "XBmod Manila Rhodium port". If it is you´re my hero!!
Really cool tool. I hope that no bugs will be found.
Hmm, previous version of this tool used manila's files patches, I suppose, but now we have to check an autostart option... that means that you patch manila in the RAM, but not the file. Does your app hang in memory or it starts after a soft reset, patches and unloads?
Testing now... not sure if I am clear on what everything on the pop-up assignment screen does.
*edit* Ok, I think I've got it. I have successfully mapped the "time click" on XBMod's HD manila.
If I click on the call history button it brings up the call history instead of bringing up the assignment screen. I'm assuming this element cannot be mapped?
Yes unfortunately you assume correctly.
But SSMaHo is a better base to develop on, anyway.
NLS said:
Yes unfortunately you assume correctly.
But SSMaHo is a better base to develop on, anyway.
Click to expand...
Click to collapse
I'm already loving it. The fact that it works on the HD manila is wonderful.
*edit* How does the "differing between mail and sms" work? If I click on the "all messages" button on the sms tab will it just remap this button?
Hi,
Thanks a lot for all your effort with this tool. It's a great idea and hopefully it'll work on my device in one of the next versions. Stumbled upon your tool yesterday and read the whole thread of the previous tool, and now tried this one. But it seems there's still something going on with this manila version, your tool doesn't like.
When I press "Start Assigner Mode" I get a popup saying "thats bad. Proc not found -.-"
I'm using a new HTC Touch Cruise (09). It already features the new "Footprint Tab". In case I can send any file to you to help, please don't hesitate to ask.
Until then: good luck with your exams!
What you mean a new "HTC Touch Cruise"?
Unless I miss something Touch Cruise is an old (obsolete) model...
change music player?
Ok i searched the old thread (alpha version) as well and found no answers as to whether this software could replace the manila music player in touchflo.
Could someone please confirm or deny whether its possible to change it to say windows media player?
thanks in advance
Why don't you just try?
i tried using it on the rhodium port but it doesnt seem to work :-\
im just following the instructions and it cant initiate the manilla.exe properly
great work none the less for the HD manilla! =D
sayazs said:
i tried using it on the rhodium port but it doesnt seem to work :-\
im just following the instructions and it cant initiate the manilla.exe properly
great work none the less for the HD manilla! =D
Click to expand...
Click to collapse
The Rhodium port is probably manila2.exe. Haven't tried it yet, I'm just guessing.
NLS said:
Why don't you just try?
Click to expand...
Click to collapse
Because I'd like to hear from others who have tried it first and hear about their experiences in case theres a major problem or other.
And now with the above posts i now know that it doesnt work with the new manila and therefore i dont have to risk messing up anything on my phone.
Hoping in the future that Rhodium/Manila2 is supported as it looks like a great app!
Cheers
This application cannot mess anything with your device.
Try to manually attach first, see if it works, then choose to autostart.
I've try it in my jade ( aka touch 3g ) and works perfectly !!!
i replace time link with better g-alarm !!!!
tnku very much.
Many thanks.
I've tried in my HD with Manila-Rhodium (Dutty exreme 2.2 ROM). After Start Assigner-Mode there isn't any pop up window
Any help.
Thanks
Not working at my Touch HD... My current ROM is Touch of HD v3.4.1 and when I click at Start Assigner-Mode it gives back the error: Master failure. where the hell you put my dll in?!
I placed all the four files in a folder (named it SSMaHo) at the root of the phone!

[App][VGA,QVGA] Cat Breed Reference

Platform: Windows Mobile (Tested on 6.1 & 6.5)
Overview: Useful information about cat breeds.
Contains : 71 breeds
Breeds listed:
* By Name (Sorted by name / group)
* By Group (thumbnail view)
* Include info about Groups
* Include useful hints
* Search function
* [Optional] : Breed Standards in .PDF format!
Screen Resolution: VGA,QVGA
VGA Download (ver. 1.2)
QVGA Download (ver. 1.2)
To include the Breed Standards please download this file, extract it and place the .pdf files into the BREEDS folder
If you want to check my other programs please visit my blog!
If you like my work, any donation would be appreciated.
Dimitris (further known as DaDi)
Dadi68 said:
Platform: Windows Mobile (Tested on 6.1)
Overview: Useful information about cat breeds.
Contains : 71 breeds
Breeds listed:
* By Name (Sorted by name / group)
* By Group (thumbnail view)
* Include info about Groups
* Include useful hints
* Search function
* [Optional] : Breed Standards in .PDF format!
Screen Resolution: VGA
VGA Download (ver. 1.0)
To include the Breed Standards please download this file, extract it and place the .pdf files into the BREEDS folder
If you want to check my other programs please visit my blog!
If you like my work, any donation would be appreciated.
Dimitris (further known as DaDi)
Click to expand...
Click to collapse
Very very nice, this interests me even more than the dog breed, as cats are my passion.
I will eagerly wait for the (W)Qvga version, as i have an Omnia i900
any chance for a WVGA version...i'm a real cat lover ...owning beautiful Norwegian Forester
marasp said:
any chance for a WVGA version...i'm a real cat lover ...owning beautiful Norwegian Forester
Click to expand...
Click to collapse
No wvga version for the near future...
I will release a qvga version in 1-2 weeks
nice app , I have shared ot with my readers on 1800pocketpc
the0ne said:
nice app , I have shared ot with my readers on 1800pocketpc
Click to expand...
Click to collapse
Thank you
Hello everyone
So; QVGA won't come out...
Have patience my friend...
Dadi68 said:
No wvga version for the near future...
Click to expand...
Click to collapse
Too bad
VGA should work fine on WVGA phones correct? I imagine there would just be an empty space at the bottom ~20% of the screen.
zip plz
oh, hi
could you please upload as ZIP instead of CAB? i have a pretty dumb firewall here, and i cant download as cab...
merovigiam said:
oh, hi
could you please upload as ZIP instead of CAB? i have a pretty dumb firewall here, and i cant download as cab...
Click to expand...
Click to collapse
VGA or QVGA?
is it ok with Megaupload?
QVGA version 1.2 added
VGA version 1.2 added
Check first post
Changelog
- total records in table title
- Minor bugs fixed
Niiiice
I would love having this app. To bad i have HD2.
Nakazul said:
I would love having this app. To bad i have HD2.
Click to expand...
Click to collapse
Too bad?
I can help you my friend,
We can exchange devices, I will give you my Touch Pro 2
Nice! Installed it this morning. Very informative.
IDK
Dadi68 said:
VGA or QVGA?
is it ok with Megaupload?
Click to expand...
Click to collapse
i dont know... i have an touch pro
upload anywhere you want, but as zip or rar instead of cab pls?
merovigiam said:
i dont know... i have an touch pro
upload anywhere you want, but as zip or rar instead of cab pls?
Click to expand...
Click to collapse
Ok, you need the VGA version
Here is the zip file in Megaupload
http://www.megaupload.com/?d=5OJ3YOUV
Extract the file and place the folder Cat Breed Reference into the program files on your storage card
enjoy!
dadi68 said:
ok, you need the vga version
here is the zip file in megaupload
http://www.megaupload.com/?d=5oj3youv
extract the file and place the folder cat breed reference into the program files on your storage card
enjoy!
Click to expand...
Click to collapse
thank you very much!
Will there be a WVGA version? Nevermind, I think I missed the post above.

Categories

Resources