Keyboard Sound Registry (Manilla2D Idea) - Tilt, TyTN II, MDA Vario III General

Hi,
I am wondering where in the registry is the keyboard sound at and if it is possible to invoke a program rather then the sound itself (changing the file pathway)?
The reason is that Manilla2D screws up our Today screen when the keyboard is opened and I really don't think anyone has a solution for it at the moment.
I purpose that we can assign SecondToday to the keyboard when open and close, so that we have a clean Today for when the keyboard is opened and back to Manilla2D when closed.
Any Thoughts?
Rytt

actually thats a really bright idea i know where the sounds registry is on the kaiser its HKEY_LOCAL_MACHINE\SOFTWARE\HTC\SlidingSound u need a registry editor to find it obvious i know how to create new sliding sounds but not really how to make it open up a whole app or program . great idea though if uv ever used throttle launcher the landscape mode would be a nice touch to manila 2d. maybe a couple of tweaks here and there might do the job ill actually look in to this

Related

Adjusting 'finger flick' scrolling speed?

Hi all,
I was wondering if and how you would go about changing the scrolling speed when using your finger...
E.g. If I open anything with a vertical scroll bar (say SMS inbox, file explorer etc), a slight flick of the screen would scroll down (or up) far too quick.
It used to be perfect on my Hermes device as standard.
I'm using Dutty's ROM on my Diamond.
Anywhere that I can change this?
Thanks.
Yes, i would like to know this too. I keep flicking up and down, or accidentally 'clicking an item' which is a pain..
Yeah, accidentally click on an item is also an issue for me (but apparently not for many others!)
Accidental click
Hi,
I'm having the same problem too...
There are some tweaks in the following thread:
http://forum.xda-developers.com/showthread.php?t=398265
Also, try the Advanced Config tool... It has some options too.
But with all these, although there is a slight improvement in usability, still the experiance is not as good as the iphone.
More than the scroll speed, the accidental click is a real pain...
Especially in scenarios like: Programs --> Add program and Weather Application --> Add city
Is there any better fix available... pls help.
+1 for me too. This is really really annoying, and actually I don't think anything in the Advanced Config tool makes the slightest bit of difference to this setting. I set 'scrolling' to disabled under TouchFlo settings of Advanced Config too, but I can still scroll and it's still exactly the same as before.
any ideas about this? i just flashed my rom to dutty's 3.4 (originally a 3.2) and in resco explorer, the scrolling was almost as smooth as an iphone but now it's too fast and sometime non-responsive. anyone know what setting can change this?
This worked for me.
Hi guys,
I was just installing the new Manila Controller add on, which comes with FTouchFlo (SL). With the FTouchFlo enabled, scrolling is back to how it should be for me
Where did you find the Manilla Controller app?
sh500 said:
Hi guys,
I was just installing the new Manila Controller add on, which comes with FTouchFlo (SL). With the FTouchFlo enabled, scrolling is back to how it should be for me
Click to expand...
Click to collapse
Yes. Where did you get the Manila app? I was searching for a way to only allow upon double click, but could not find anything in the settings.
It's the FTouchFlo that does the deal. The mentioned Manila Controller just encorporates a version of FTouchFlo to enable the upslide activation.
axelpix said:
It's the FTouchFlo that does the deal. The mentioned Manila Controller just encorporates a version of FTouchFlo to enable the upslide activation.
Click to expand...
Click to collapse
Yep that's right, just do a search on FTouchFlo (renamed to FTouchSL?)
Been there, got the t-shirt. FTouchFlo (the old, free version) runs and doesn't do much. Scrolling in native WM windows is still messed up.
Just flashed to latest ROM from Dutty and first thing I installed was FTouchFlo (via Manilla controller). Didn't test the scrolling before, but now, again every menu (native or otherwise) seems to be 'scrollable' for me.
Any other success stories with FTouchFlo? I installed and activated it, but it didn't do much.
I have used this setting to calm this finger flicking crazyness down:
HKLM\Software\OEM\TFLOSettings:
SpeedHigh: default value (25) <-- Change to (5) / SpeedLow : default value (70) <-- Chnge to (14) save and soft reset
Many custom ROMs are including the 5 and 14 setting respectively this makes it crazy fast when flicking with the finger. I suggest using default settings here or, in my case I use 25 for SpeedHigh and 50 for SpeedLow, wich does improve scrolling over default when using the finger but keeps the finger flick toned down. BTW, I've noticed that when flicking witht the finger the first flick engages SpeedLow and a second flick switches to SpeedHigh.

Butler - Using capacitive area as stroke launcher and many more features

I really enjoy this forum since it helps me a lot to increase the productivity with my HTC Touch Pro. I found many useful applications. Unfortunately, after installing a large number of them, I run into the infamous 32 processes limit of Windows Mobile. So I decided to write my own app that combines all the features that I find useful. It is implemented as a Pocket PC service, so it does not require an own process.
Here are the features:
- Better vibration for incoming calls. I found the built-in vibration function very annoying as it vibrates permanently during an incoming call. This extensions vibrates in pulses of 300 ms with a pause of one second when a call is incoming
- SIP changer depending on stylus state. If stylus is out, another soft input panel is selected as if stylus is in. Can be changed via the registry keys StylusInSIP and StylusOutSIP.
- Stroke Launcher. If the finger is stroked from one button to another, an application is launched.Four directions are possible: From home button to accept phone call button and vice versa as well as from back button to reject phone call button and vice versa. The applications can be configured via the RightUpApp, RightDownApp, LeftUpApp and LeftDownApp registry keys. The required length of the stroke can be configured via the GestureMinLen registry key. Unfortunately, the program has to poll HTC's NAV sensor directly in order to not disturb the functionality of the wheel sensor. The sleep time between two polls can be configured with the GesturePollingDelay (in ms). If you use very fast strokes and the device does not react, try to decrease this value.
- Key lock if device is face down. The key lock is activated and the device is powered off if it is turned face down. The key locked is acknowledged by two short vibrations. Key lock can be disabled depending on the foreground window or active process list. Exclude list can be specified via the ExcludedProcesses and ExcludedWindows registry keys. The tolerance for the face down detection can be configured via the FacedownTolerance registry key.
The registry settings for Buttler are stored in HKLM\Software\Butler. Each extension described above can be switched of by setting the EnableFeature registry key to 0.
As I have not much time to react on bugs or feature requests, I have also attached the source code. Fell free to modify my Butler but please publish it here so that we all can benefit from it.
The Butler service is started with the program "StartButler.exe" located in the Windows directory. I call it from a MortScript during device boot. It is important that HTC Touch Flo 3D is already loaded. For some reason, the gsensors can not be initialized if Touch Flo 3D is not loaded. Here is the code I use:
# Wait for TouchFlo3D
While(ProcExists("manila.exe")=0)
Sleep(1000)
EndWhile
# Start the butler
Run("\Windows\StartButler.exe")
Have fun!
Siggie
Change log:
V1.0:
- Initial release
V1.1:
- Reading of the NAV sensor completely rewritten. The sensor is now directly polled. This does not interfere with other programs, so the wheel sensor and the camera is working again.
- EnableFeature registry keys added for switching off each extension individually.
linuxis said:
New thread For Keyboard Slide Out Support:
http://forum.xda-developers.com/showthread.php?p=3305730#post3305730
Updated CAB is there. Happy using.
Click to expand...
Click to collapse
sounds like an excellent program, I'll try it
man, great app. it is totally replacing hbutton, and lets me start using voice commander again. two questions....can you list the other sip layout entries? i really want to use the full qwerty when the stylus is out and in. secondly, is there a way to define a diff lock such as s2u2 and then shut down. either way, the function is fine as is and really, thanks for sharing
I'm interest in Stroke Launcher more than the other apps. is there a chance you can provide a cab for just that portion of your application> I know it's contrary to your original intent (of combining apps) but that's the only one of those apps I really would want so I have the opposite- no desire to install any extra apps even if it's a single process Thanks.
about to give it a shot, sounds great
but i second the request to have s2u2 when put face down
noticed that if you delete the entries for sip, keeping the actual keys though. butler wont start. guess it still needs to check those values i was trying to get it to do nothing to my sip's and just keep full qwerty.
edit** here is the key for full qwerty {36BC8FF6-8241-4c36-ABDE-204885471FEE} and the other keys are all listed under HKCR/CLSID and look like this:
(HTC SIPs)
{198D503A-...} = Phone Keypad
{36BC8FF6-...} = Full QWERTY
{62B00599-...} = Compact QWERTY
(MS Default SIPs)
{42429667-...} = Keyboard
{42429690-...} = Letter Recognizer
{42429691-...} = Block Recognizer
{F0034DD0-...} = Transcriber
Maybe it would be easier to be able to just input the name
Sound great, I'll give it a try as well.
can you make it so that when it face down, the light turn off?
ok i figured out how to change what sip came when
and i turned off "facedown"
only problem is that the smart scroll such as zooming in opera and pics no longer works or autofocus in camera
Great app cannot go unrecognized!
so i downloaded and installed and forgot to make shortcut. A day after i just luanch it using fileexplorer with copy on storage card. Sounds like alot but considering i only reset once a week maybe... its not so bad.
After using it for a half day. I have to admit i was waiting for a way to use shortcuts with out using manilla. I am a RLtoday fan and i dont really use all of manilla features. I LOVE IT. I am considering removing Manilla all together. This has great potential for those of use that want alternatives to manilla.
This should really be placed in essentials.
Thank you.
**BTW cant get screen lock disabled, anyone have more detailed instructions for disabling face down lock?
to disable the lock i set the sensor threshold to 0
in the registry path that was said earlier in the thread
V1.1 available
I have added a new version that fixes the wheel sensor and camera problem. There are also now registry keys available to switch off each feature individually.
ok I dont know what happend but i installed this app and after a restart the keyboard pops up on the splash screen and the phone freezes.. I need a resolution fast. I really dotn want to hard reset. I have a lot of stuff i need back up.... Please help!!!
fuk it. had to hard reset.
any chance on just releasing stroke launcher as a standalone app so we don't need to install all and then disable them? Thanks
Exclude S2U2
How can I disable stroke launcher, when s2u2 is active? I tried to add S2U2(name of DWORD value=0) to ExcludedWindows and s2u2.exe to ExcludedProcesses, but stroke launcher is still active, any ideas?
Great App siggie1970,
Thanks .. I Think The most important thing to do now is to add a User Interface for the configuration..as it kinda hard to do it through the registry
thanks
Wow amazing programs are being released and 09 just started. Great name btw How are resources being used with this program? Since your combining apps perhaps you could work with the guy to incorporate his new alternative to gyrator/ screen tilt app.
bugsykoosh said:
any chance on just releasing stroke launcher as a standalone app so we don't need to install all and then disable them? Thanks
Click to expand...
Click to collapse
that is not the purpose of the program
would it be possible to turn one of the sides into scrolling up and down?
like leave the left up and down for app launching but right side scrolling that would make it pretty much perfect for me
then of course a configurator, although i got it setup but no fun having to change on each new install
It sounds like a great program, thanks! Stroke Launcher, I like that one LOL

screen orientation switcher??

Hi all
I've had a look around the forums, and i cant seem to find a definitive answer to what im looking for, and im certain ive seen it in a rom somewhere
what im looking for is the following:
A program which allows me to change the orientation of the screen by means of a start menu shortcut (not the one which normally be in the settings -> screen -> orientation, that menu seems to be missing on my rom)
does anyone know of a program (preferably free), that is small, and lightweight that can do this?
many thanks
Search for Gsen or Gyrator in forum.
ive done the searches, ive used gsen/gyrator, those are automatic screen rotators which change the orientation of the screen using the inbuilt accelorometer
i am looking for someting which i can use to manually change the orientation of the screen, a bit like the orientation switcher which was built into the screen settings menu
nobody?
surely someone must know of a program that can do this
ScreenRotator
http://www.pocketkai.net/asp/en/index-en.html
Saerch for the freeware ScreenRotator.net at this site.
QuickMenu has that feature which will replace your Start Menu. you can do that by tapping an menu item then.
Unless I misunderstand, install AEbutton and map one of your buttons to screen orientation.
Hey Stix,
To enable the screen rotation icon from the Settings>Screen menu, edit the registry: "HKLM\System\GDI\Rotation\HideOrientationUI" and change the value to 0. Go to the Screen page and you'll see the Portrait/Landscape option.
After enabling the screen rotation option, you can map the talk button to rotate the screen with a long press. Start>Settings>Buttons; just look for the <Rotate Screen> option from the pull down menu.
You don't have to go to the Start menu, doesn't use resources (I'm guessing) and it's free!
Hope this helps.
TF3D doesn't rotate even when you select the <Rotate Screen> option (unless the keyboard is popped out, obviously). Only applications and the Windows menus will rotate if you manually rotate the screen.
thank you very much my good man!
this is perfect, i use my raphael to read a lot of pdf's and docs, and i recently discovered documents to go which does everything i want except change the orientation!
many thanks asdfjklqwerty!
I use this, AAHRotate0-90.CAB or AAHRotate0-270.CAB on my Touch Pro.
Geoffrey_Hui said:
I use this, AAHRotate0-90.CAB or AAHRotate0-270.CAB on my Touch Pro.
Click to expand...
Click to collapse
I just searched for these cabs. I can only find them on a Chinese website which I can't read. It requires login to download the files. Does anyone have these cabs and could they be posted please.
Thanks
RotateMe
Hi,
you can try this attached cab. Hope it's what you're looking for.
P.S. Cab file extracted from ROMeOS v1.95.4.
Excellent! Works like a charm on my HTC Vox. I know this forum is for Touch Pro, but since I found the software here...
Matterhorn said:
I just searched for these cabs. I can only find them on a Chinese website which I can't read. It requires login to download the files. Does anyone have these cabs and could they be posted please.
Thanks
Click to expand...
Click to collapse
AAHRotate 1.0
I do it with AE Button, but if you have SK Tools, these shortcuts will also do it (use the shortcut manager if you want; these probably work with the free version, too):
Code:
Portrait:
1#\Windows\skstart.exe #DMO_P
Landscape:
1#\Windows\skstart.exe #DMO_L

[REQ] Cab Installer to make Mailla and winmo6.5Titanium Different Panels

With the dawn of manila over 6.5, I'd like to request a cab to make these two beautiful interfaces separate panels. I purchased my Xperia because of the slick hardware and styling, as well as the cool concept of panels.
I know you can just check and uncheck some boxes, but I think it would be slick (as do many others) if we could put them as panels (preferably on the new R3 panel manager). If anyone has anything brewing, I'd be more than happy to test.
Someone knows how to make a panel could easily convert touchflo detacher into panels imo, I was gonna try working on it but school has caught up with me
Is it soo dif. 2 make the existing panel cab for the TF3d beta 2 cab work with the beta 3?
Would it be possible to clone the today screen and unlock it as a panel, with independant settings etc, then tick the different boxes for titanium and touchflo on the different main today? I'm not familiar with the xperia sdk etc and have never made a cab. I thinks fards said he was looking at it.
Could anyone familiar with the touchflo detatcher say how its done? And whether it can be adapted for winmo6.5?
Anyone any smart ideas? Still some really nice new manila/titanium roms coming out. Is anyone working on anything?
How about try to have a bounty on the person who can develop this???
try contacting the author of the original touchflo panel
i tired to enable manila v1 as panel in wm6.1. i no its not the same but here is my experience in case someone wants to try and devolp a panel for the new manillla....
1.new start menu must be on.
2. turning off manila from do and then loading touchflo panel leaves us with a white screen with loading....
3. if u press start at this point. the manila start menu loads and after u close the start menu......you will find that manilla in panel started......not much problem after that and everything runs fine
NOW:
i havnt tried this in wm6.5 coz that would probably require titanium start to be off.....which i dont want.
but the point is: manilla is loaded all we need to do is trigger it to show up....
just do it the old fashion way. flash a 6.5 rom, install tf3d beta 2, install the panel. switch back and forth. done
himuraken said:
just do it the old fashion way. flash a 6.5 rom, install tf3d beta 2, install the panel. switch back and forth. done
Click to expand...
Click to collapse
I tried but the beta2 didnt wanna show? I dont know whether it needs tweaking or whatever...? Any devs got any ideas?
Second Today.
http://www.freewarepocketpc.net/ppc-download-secondtoday.html
THESpideyWVU said:
Second Today.
http://www.freewarepocketpc.net/ppc-download-secondtoday.html
Click to expand...
Click to collapse
That's promising, but it would be better as a panel. Is there a way to have a second today panel which has separate tick boxes? Anyone know who was the author of tf3d panel?
ja thts a good Question...
coz i just cant get it tht its soo hard 2 change the panel...
\from beta2 to beta3 atleast? but looks like I"m wrong..
CowMix said:
Someone knows how to make a panel could easily convert touchflo detacher into panels imo, I was gonna try working on it but school has caught up with me
Click to expand...
Click to collapse
Tried at the weekend - it's easy to make a html switcher panel but this is no easier than just ticking what you want in today settings. And it's easy enough to make a show manila panel using Touchflo detacher, which then takes you to Manila home automatically, but the html panel is still truly a blank white screen not TFlo so it's not functional as it should be.
And I couldn't figure out a way that the standard today would always show Titanium. It would have to use the panel button using mortscript to close Manila, then load panel manager in order for it to work. It would be usable (just) but not satisfactory enough for me to spend time making it.
ya I tried using a simple html program launcher panel and found that although it loads up and closes the manilla program it doesn't redirect you back to the home screen after its done so you can view it, I've been looking through c++ panel documentation trying to understand how panels work.
Would Titanium be lighter detached...? I'm not really sure how to approach it from a programming perspective, but it would be amazing. The second today does work REALLY well, but I would LOVE to see it as a panel.
Quick update: The second today prog does not work! Anyone looking into this?
m1le5 said:
Quick update: The second today prog does not work! Anyone looking into this?
Click to expand...
Click to collapse
And neither does mToday. So have to be using TFDetacher to toggle between default Windows and TF3D.
Shame...anyone know who wrote TFDet or can write for it??? I'm desparate

Hmmm, anyone know the whereabouts of a rotate screen app

Am using windows Mobile 6.1 and all the screen rotate pannels etc I have found apparently were for a previous version of windows mobile? I have no idea just can't get them to work on install.
Am at the point now where I am just so annoyed of having to pull out my keyboard whenever I want to be playing music etc.
Anyone point me in the right direction
been an idle lurker here for months, just hate messaging. Keep up the good work guys
I can't figure out exactly what you want the phone to do..
The Xperia X1 does not have an accelerometer, so it can't 'feel' how it is oriented if that's your problem. The only way to rotate the screen is through settings - screen orientation, or sliding out the hardware keyboard.
I hope it helps...
- Sofa
you could always map a button to rotate the screen...
AE Button plus.
quickmenu also provides rotate
maybe a little less comfortable as you need to access the respective submenu manually
Why didn't I think of that... Mapped a button.
Thankya.
BUMP
nobody with ideas?
ok i guess you want to rotate screen with some software.. ?
SPB Mobile Shell (available as a panel for free) or SPB Pocket Plus (commercial) both provide such a feature.

Categories

Resources