[Q] custom text or IM tone (Mango update) - Windows Phone 7 Q&A, Help & Troubleshooting

so with mango update, it allows you to set up custom small 1mb files mp3 files as ringtones. i am happy that part works but what i do not understand is why why WHY? they did not allow these custom tones to be available for New text or IM ,New voicemail or New email alerts.
i find this very frustrating especially since the only way round it is to go through my contacts and edit each individual one to a custom tone, i got over a hundred contacts on my phone , is there a trick or way round this???

I doubt anybody here can tell you why MS did it this way. Even if a WP7 MS employee were on here, I doubt they'd tell... However, the setting for the various sounds is just a registry value and it's possible to point it at files other than the built-in ones, or you can use a filesystem browser to replace some of the built-in ones.
The simplest tool for doing this is Schaps "Advanced Config" app, available at TouchXperience.com. It requires Interop-Unlock if you want to use it on Mango. The steps for getting Interop-Unlocked are available on the Development and Hacking sub-forum here at XDA (specifically, http://forum.xda-developers.com/showthread.php?t=1271963).
For future questions about changing internal features, I suggest you do some searches (on that forum, or on the web in general), and if you don't find anything, ask on XDA. This is already a solved problem; I've had Advanced Config for months.

I have an Interop-unlocked Focus, with Advanced Config, and the settings to adjust the SMS/e-mail tones do not work with Mango. Perhaps they work with some other models (and they did work with NoDo), but when I search all I find are threads that point to other threads in a bit of a mobius loop, none of which provide any actual known-working steps to accomplish your goal.
I'm hoping that when MS *does* finally implement this oft-requested functionality, they'll go the extent of allowing per-account and even per-user customizations for these tones. But I'm not really holding my breath.
Brad.

i'm guessing the only way to achieve this at present is to replace the alert-1 file with your own .wma file renamed to alert-1...
Similar to the original chevron ringtone loader... Wish someone could write an app for this as now i'm on Mango with the HTC update i cant load touchexplorer

thanks guys for the response sadly due to the mango update ,unable to make any changes .
crappy 10 tones will have to do for now. smh : (

Related

How to lower the microphone gain?

I need to lower the microphone gain.
My audio codec is clipping becouse of incoming PCM samples saturated from
the mic. I don't need AGC becouse it doesn't work well with my app.
I just need to manipulate the mic gain via software.
Is there a way to do it? I'm using waveform audio api ti capture voice.
Actually the gain is too loud !!!
Thanks.
Anyone knows?
OK, I don't have the answer. But since no one is responding I'll try to give a few ideas that might help.
First, I have a hp6315 and an apache. Under settings, they both have a utility to enable/disable AGC. The ipaq's utility is labeled "ipaq audio" if you disable agc, you can then configure the microphone gain. This gain is stored in the registry. I think searching for gain or audio will find it. The apache doesn't have this. searching for audio, gain, wav, volume in the apache registry doesn't find anything that looks like microphone gain. I guess this is a "value added" thing from hp. But you could try searching anyway.
Then there's the mixer API. This is the way that user level apps are meant to control the audio. Works great on the desktop. Use mixerGetNumDevs() to find out how many devices you can control. On the h6315 mixerGetNumDevs returns 0. I haven't tried the apache, but I can remember a few years ago reading that many (most?) devices return 0. Oh well, hopefully you'll have better luck. However, there are two mixers that are implemented on the pocketPC the question is how to access them.
see this link for info on the mixers
http://blogs.msdn.com/medmedia/archive/2007/01/12/what-do-you-mean-by-mixer.aspx
Here's a link that shows the relationship between the mixer api and the other mixers, wavedev2 mixer, and software mixer.
http://msdn2.microsoft.com/en-us/library/ms923709.aspx
You'll notice that the the mixer api interacts with the mixer in the device driver not the software mixer in the WaveAPI.dll. You'll so notice that this section on audio drivers has pages for MDD/PDD drivers and Unified Audio Model (UAM) drivers. Platform Builder for WinCE 5.0 comes with a sample for each of these model drivers. Both models handle WAV_IOControl Messages. There are two types of messages, IOCTL_MIX_MESSAGE for the mixer, and IOCTL_WAV_MESSAGE for the rest of the driver. It looks like these IOCTL_MIX_MESSAGE are the way the mixer API controls the mixer. In the MDD/PPD sample they can be used to set WPDMX_MIC_VOL and WPDMX_LINEIN_VOL. In the UAM driver it's AC97_MIC_VOL and AC97_LINEIN_VOL. Perhaps sending the right IOCTL will solve the problem.
This blog entry
http://blogs.msdn.com/medmedia/archive/2007/01/03/windows-ce-audio-driver-samples.aspx
seems to say that a wavedev2 sample is available now. Also, while the WinCE 5.0 page above only metions two models the corresponding wince 6.0 also talks about wavedev2. I suspect if you got the current version of platform builder for WinCE 6.0 (trial version is free) you would have get the sample code for wavedev2, which is likely to be the best documentation of how this works. Amazingly, the drivers aren't that hard to read.
Both of the functions waveInMessage() and waveInSetProperty() are available to user apps. Hopefully both should be able to change the microphone gain if you can set the parameters properly. While most of these things are about windows CE, I think most (or all) apply to windows mobile 5.
Windows mobile 5, likely uses wavedev2 devices not MDD/PDD or UAM drivers.
Another interesting page about wavedev2 audio is here:
http://blogs.msdn.com/medmedia/archive/2007/01/04/the-wavedev2-gainclass-implementation.aspx
If your able to succeed or even learn more, be sure to post it back here.
I said a lot so I probably got something wrong. Anyone, please feel free to correct anything.
mixerGetNumDevs() returns 0 on my device
I can't find any registry entry which suggests microphone gain manipulation.
Perhaps i just need to send a waveInMessage properly.
I'm getting confused, should i implement a driver for this?
How do i know what kind of driver is running on my device and what messages
does it accept?
Thanks.
i think this may be what you need(?)
use a registry editor, (phm do a good free one)
hkey_local_machine/software/htc/audiogain (and audiogain 0 and 1 and 2)
try playing with the settings in there, soft reset to take effect
I don't have that keys on my HTC, should i create it?
Do you mean audiogain0 audiogain1 audiogain2?
Thanks.
see the attached screenshot, if you don't have those settings to adjust, a similar/same question was asked last night in a other thread, with different answers here
http://forum.xda-developers.com/showthread.php?t=306655
Looks like the cab file from the link provided by bbobeckyj just sets those audiogain registry settings. I don't have those settings on my apache. I don't think adding will help, but "you never know".
If you want to use waveInMessage() or waveInSetProperty() search for them at microsoft. You'll find there are a few parameters that you don't know. Read though the sample drivers that you can get with platform builder. See what values they expect, and which one cause them to change the microphone level. Try calling the function with values from the sample driver. While there is no guarantee that they use the same values, it's like that they do. I would start with the wavedev sample.
I don't know why microsoft doesn't seem to allow access to the source without agreeing to download all of platform builder, but it looks like that's the only way to get it. You can download the trial version for free. The source often helps if your trying to fingure out how something really works.
Uhmmm, i havn't found any download link about platform builder for windows CE 6.0. I've only found the 5.0.
Should't the trial be free?
Thanks.
I need to fix audio gain in my Itel Experience Phone (Windows Mobile 6.0 Pro)?
Please help.
I need to mute mic while on a call. Anyone has a idea of how may i do it?
Thanks
moved to the right forum, please post in the correct forums.

[Updated 12/08/2009]:Web Based CAB Creator for Common Registry Settings

Hi Everyone,
I, like many of you, spend way to much time setting phones up over and over again. Since a big part of this is registry edits, I have built a web site that allows you to check off the registry options you want, which it then uses to create a downloadable CAB file to install that will contain all of those registry tweaks. This makes things completely reversible by uninstalling the CAB file.
Notes:
This is Beta. While I have used it, and it's a very basic process, it isn't commercial software by any means.
If you would like to add a new feature, post in this thread.
You may install more than one cab file created with this tool. Just use different names at the bottom of the form.
Without further delay, here's the site:
<edit> The tool has now moved to nowsci.com. If you have any issues, please let me know. </edit>
http://nowsci.com/registry-changer/
Thanks,
Ben
* hold for updates *
Update 1: HTML now renders mobile friendly, so you can use this straight from your device.
Update 2: Edit feature added.
Update 3: Can now manually specify string or integer.
Update 4 [11/17/2008]: Can now specify the app name for install, allowing the user to have more than one Registry Changer cab installed at any point in time.
Update 5 [03/27/2009]: Fixed some character flaws for input. Preparations for move to a new host.
Update 6 [04/22/2009]: Added a filter option.
The site now has the ability for the end user to add registry entries to the database.
Thank you very much. I believe the "Camera Enhancements" entry is mis-titled. Shouldn't it be Rotate Picture 90 degrees, not 180 degress?
Doh! I will fix that.
Also, just added all the registry entries from the Diamond Tweaks post.
What about the Bluetooth DUN profile adding to the list? - Mike
What's the registry entries for that? Happy to add them, or you can add them yourself now through the site.
What happens if you tweak a registry entry that does not exist on your specific device or rom?
Good question. For the most part, I would guess nothing. If there is nothing on your system looking for the registry entry, then it won't effect anything. That being said, that doesn't mean WM doesn't look for registry entries that aren't there. For instance, the following tweak:
Enable Vision Duration/Disconnect Popup
HKLM\ControlPanel\Phone\Flags2=16
Flags2 doesn't exist by default on most any WM6 phone. Adding it in, enables the disconnect.
Who added the "Mighty" tweaks? Is that a phone? Many of those seem like they should go in Misc. I might clean that up if those aren't specific to a phone.
Would it be possible to have a wiki of descriptions for each of these options? I know I could Google them one by one but I'm sure users would appreciate a single source.
Hmm, not a bad idea. I wonder if there was a spot on the xda wiki I could use for it since I don't have my own. I may end up integrating a detailed description field for each item with a question mark next to it. Unfortunatly I won't be able to define them all since people have added one's I've never used.
OK I have a request. I don't' so much mind tweaking the settings when I flash. However what does drive me nuts and keeps me from flashing is knowing I will have to reconfigure all my email accounts. I just use the default mail program, but what a pain going through and adding my 7 yes Seven email accounts every time I flash my phone. Is there a way to make a cab that would auto input all my account settings? The reason for so many accounts, is I have personal accounts, business accounts, email list accounts, car club accounts, and forum subscription accounts.
It would be awesome to be able to go to a site, or run an app where I could plunk in all my account settings, then create a cab store it to my SD card and whenever I flash, just run the cab and POOF all my accounts are setup.
Unfortunately, probably wouldn't be easy to make a cab. However, programs like Sprite Backup will do this for you. You can selectively restore your mail using SB, however I generally back up my phone once I get things the way I like it, then if anything goes sour, I hard reset, then restore.
any1 made an ultimate tweak.cab? maybe make your diamond seem as fast as a custom rom?????????????
then any hardreset.......
dewey1973 said:
Would it be possible to have a wiki of descriptions for each of these options? I know I could Google them one by one but I'm sure users would appreciate a single source.
Click to expand...
Click to collapse
+1 on descriptions of each cab
Wow very nice! Thanks!
I suggest a field to make a *.cab regarding to any registry path/setting the user wishes (if the user is more technical).
without having to actually add to the public entry list.
This will allow the ability to:
1. not have to wait for the admin to add the specific entry
2. allows the author of the new *.cab to distribute their new edit on the fly.
3. give the admin to log & analyze the entries in the custom field to and determine more of the common *custom* entries the ppl may want. Thus not having to depend on explicit user input and emails all the time.
First - thanks for putting this together!
Quick question - I had it "enable" GPS coded photos...but I don't think it did? Shouldn't I have an option somewhere in my camera menu to activate this once I've installed the .cab? Additionally, I don't believe "enable landscape pictures" and "sport mode" worked - how do I know?
Many thanks!
Oh, and I forgot to mention (not that it matters???) that I'm on an HTC Touch Pro with Sprint - stock ROM. I'm new to all this, so I apologize if this is basic stuff.

*Generic* Dream ROM

All,
I currently own a stock RC30 UK T-Mobile Dream phone. I have come to terms with the fact that I dont have root access (yet) and have purchased a new ADP1, which hopefully will arrive next year.
When it does finally arrive I plan to make a generic build of RC30/RC8 firmware without all the T-Mobile junk in the ROM (web'n'walk etc) and no default APN's/MMS/etc. I have read through the re-packing sections etc and it seems possible to do without a lot of effort.
My question is; would this be something that other users would be interested in using? If so would you like to see it posted on these forums? Also, please post any comments with any functionality you would like to see added (default apps etc).
i think if you can incorporate new features into the rom such as auto rotate browser or any other tweaks to improve the G1, I'd think it'll be extremely popular. Case in point custom cooked Windows Mobile roms on this forum.
default apps is probably a hit or miss situation. I would stick to the only essentials (ie: Klaxon for alarm clock).
Good idea. We need to start building custom ROM's like all the other WM phones... Here's how I would go about building an Android ROM:
1. Start off with a generic build of android from source. Obviously include all the drivers for the dream.
2. Make a nice, clean skin. If you have knowledge of C/Java, don't be afraid to mess with visual structure of the platform,.
3. Add all the proprietary Google APK's (GMail, Calender, Amazon MP3 etc).
4. Add some 3rd party APK's based on user popularity. (Steel, Power Manager, Locale etc)
5. Add some hacks that require root (auto-rotate, improved tethering functionality)
Yes this will be very interested. All i need is to get bloody root!!! Soon though. Theres alot of smart cookies here
And rework the basic features such as sms's mms's picture viewer. contacts section ( add more input data points. like WM offers )
i guess as any rom you will never please everybody but i agree with "Datruesurfer" steel is a great app.
Onscreen keyboard like in steel or such its not to big and small. but a system wide onscreen keyboard. working in a very dirty industry the onscreen keyboard comes in.
Some other programs i find invaluable and should be an option in the default Android or i at least i really thinks so. are Smspopup, Missed call, Dgaway,Dgprefs, Rings Extender.
Power Manager as well is a good program to help better manage the battery and default network settings.
if there is a way to rework those and remove the default browser and add such options into the android rom itself i would be very pleased.

Updated 12-26: Making progress, calling all DEV for help

Hey devs, still working on making it so that HTC Messaging will handle incoming SMSs from Google Voice. At first I was starting with trying to change HTCMessaging to connect via web instead of SMSC, but that has proven to be a big circular pain, so now I'm trying a different route. I'm tweaking some code that is very similar functionally to OneDialer that will accept the incoming SMS and also send out via packet data, but what I'm trying to do is have it insert the contents of that message directly into whereever HTCMessaging stores SMS(and also activate Notification even), but I can't find it. Any help getting pointed in the right direction would be greatly appreciated, It'd be nice to have free SMS from Google Voice show up in the gorgeous Messaging tab.
Bump...and small update: 1.) I have found and analyzed the dll that handles all the SMS commands with IDA Pro, but past that I'm basically looking at a massive amount of code I could definitely use help sorting through, and 2.) I know that SMS are stored in cemail.vol which obviously is edb format, and I don't know if I can find the code in right applications, like Microsoft My Phone, in order to write to that file.
So right now I'm at a crossroads, with two routes I think I could take:
- I could tweak HTC Messaging to pull from a file of my own making
- I could create a program that is able to write to cemail.vol, while this method would simplify everything after that part of the process, and create the most desirable results, it would be very difficult to unlock the file in the first place because it is locked by the very messaging client I want to read from it.
I would GREATLY appreciate the help of any devs out there who are smarter than me, because I'm sure a lot of people are going to want this app once it is finished.

Want app to auto set forwarding...

I honestly didn't know if this should be in Developing Forum, or Apps forum. I presume apps forum is for existing apps.
I want to be able to have my phone (Captivate) forward automatically based on where I am at. I had accomplished that on my old WinMo phone two different ways:
1.) Originally I got Mort Script (scripting tool for WinMO), and wrote a script based on time to auto forward the phone. I needed to find the correct app to call to do the forwarding (I'm on AT&T, and it is done in their network, as opposed to just dialing a number and enter the forwarding number). Found that with the help of another great forum on XDA.
2.) Then I learned of Phone Alarm which could do that based on cell tower, wifi, GPS, etc. Loved it.
I am told by the authors of Locale that it cannot be done becaue of inbuilt security on Android. This leaves me thinking the only way I may accomplish this is with a script.
Anybody know of a way to accomplish this? Or may be writing an app to do it?
I am installing Setting Profiles now, but I'm sure it doesn't have that capability build in either. (Well, pretty sure. I'll explore).
Check here: this might be to your needs.
http://lifehacker.com/5599116/how-to-turn-your-android-phone-into-a-fully+automated-superphone
Thanks. I'll check it out, and post back what I find.
TASKER... http://tasker.dinglisch.net/index.html
I have been using it a few days now and the possibilities are limitless. There is a wiki that has recently started growing with tutorials and profiles.
I have used to to perform several actions that items from the market require a purchase to do.
We're referencing the same thing
I have downloaded it, and it looks great. I"m not sure it will do the forwarding I want, but a nice tool anyway. I had downloaded Setting Profiles just before starting this thread, but it isn't near as strong as Tasker.
I'll have to search for the Wiki.

Categories

Resources