Switch on/off WLAN by script? - Touch Diamond, MDA Compact IV Themes and Apps

Hi everybody!
Is there a way to switch the WLAN adapter on or off inside a mortscript? Either with mortscript itself or with an external tool?
The only thing I found so far was a reference to an app called WirelessSwitcher.exe, but that does only work on iPaq.
Background: I'd like to write a script that automatically turns on WiFi if it is currently off, waits until WiFi is ok, and then starts Opera.

http://forum.xda-developers.com/showpost.php?p=2581729&postcount=2
and some functions more

I don't know about waiting for WLAN to be okay, I just wait 5 seconds. This is my script to automatically start WLAN and refresh my mails, rss and the weather:
Code:
# Toggle WiFi
Run("\Interner Speicher\Install\Wifi_ON-OFF.exe")
Vibrate(20)
Sleep(5000)
# Aktualisieren Mails
Run("\windows\tmail.exe", "-service ""Hotmail"" -open ""inbox""")
WaitForActive("Hotmail", 10)
Sleep(1000)
SendRightSoft
Sleep(1000)
MouseClick(240,520)
Vibrate(10)
Sleep(2000)
# Aktualisieren RSS
Run("\Interner Speicher\Program Files\RSS Hub\RSSHub.exe")
WaitForActive("RSS Hub", 10)
Sleep(1000)
SendLeftSoft
Vibrate(10)
Sleep(2000)
# Aktualisieren Wetter
Show("Start")
Run("\windows\manila.exe", "--switchtopage weather.page")
Sleep(2500)
SendRightSoft
Sleep(2500)
MouseClick(240,320)
Vibrate(10)
The Wifi_ON-OFF.exe comes with the Action Screen that matt_jackson recommended, which is great by the way. You can find it here.

Try the wifi shortcut in this thread:
http://forum.xda-developers.com/showthread.php?t=398050
I've been using this for quite a while now!
EDIT: I mean the WLAN Button! (Not the Wifi Shortcut!)

Obsidian72 said:
The Wifi_ON-OFF.exe comes with the Action Screen that matt_jackson recommended, which is great by the way. You can find it here.
Click to expand...
Click to collapse
Thanks, Obsidian72 and matt_jackson, that is very helpful.
Strange though, after installing ActionScreen5.1 (I installed it to the "internal storage"), I get a new folder \Interner speicher\Windows\ActionScreen which has 3 executables in there: MMSLauncher.exe, ToggleBTh.exe and Wifi_ON-OFF.exe (and some other files). So I have the Wifi_ON-OFF.exe thatI needed, thanks. But the ActionScreen itself? I wanted to give it a try, but I don't know how to start it... Strange.

left soft button (named Action) in TF3D home screen

matt_jackson said:
left soft button (named Action) in TF3D home screen
Click to expand...
Click to collapse
Oh, then I had no chance to find it I disabled TF3D, didn't like it...
Any other way to start it?

Make u own link 2 \Windows\HTCActionScreen.exe

THANKS!
matt_jackson said:
Make u own link 2 \Windows\HTCActionScreen.exe
Click to expand...
Click to collapse
Oh yeah, that was the missing part: The exe is in the \Windows folder, even if I install to \Internal storage. And I searched for something like ActionScreen.exe, so I did not find HTCActionScreen.exe
Thanks, it's working fine now. I created a link in my cLaunch area, pretty useful app. Thanks for all your suggestions and help.
Problem solved!

u welcome
little bonus - if u like blue buttons I make a Zip file http://forum.xda-developers.com/showpost.php?p=2904483&postcount=77
Have fun!
MaTT

found a better way
# Aktualisieren Mails
Run("\windows\tmail.exe", "-service ""Hotmail"" -open ""inbox""")
WaitForActive("Hotmail", 10)
Sleep(1000)
SendRightSoft
Sleep(1000)
MouseClick(240,520)
<=>
Run("\windows\tmail.exe", "-Service """Hotmail""" -Sync")

Thanks, great find! I'll try it right away!

Related

Lower task bar

I want to remove the battery8 icon and connection manager from the lower taskbar so did a search and came up with this thread
http://forum.xda-developers.com/viewtopic.php?t=46713&highlight=remove+system+tray
which pointed me to this wiki
http://wiki.xda-developers.com/index.php?pagename=Universal_Registry
"Remove Icons from the Taskbar
To Remove Battery:
HKLM\services\power\?ShowIcon === change from 1 to 0 (zero).
To Remove Screen Rotation:
HKLM\services\screenrotate\?ShowIcon === change from 1 to 0 (zero)
To Remove the Wireless connection manager
HKEY_LOCAL_MACHINE\Services\?WirelessMgr\keep and change the DWORD Keep to 0, soft-reset
If you remove all three icons, taskbar will be removed and more space on today screen."
So I use my trusty total commander, go to HKLM, go to the services directory but then don't see anything resembling ShowIcon or WirelessMgr. What am I missing here?
BTW, I have a Cing 8125 with Summitters 2.3 test2.
dcdivenut said:
I want to remove the battery8 icon and connection manager from the lower taskbar so did a search and came up with this thread
http://forum.xda-developers.com/viewtopic.php?t=46713&highlight=remove+system+tray
which pointed me to this wiki
http://wiki.xda-developers.com/index.php?pagename=Universal_Registry
"Remove Icons from the Taskbar
To Remove Battery:
HKLM\services\power\?ShowIcon === change from 1 to 0 (zero).
To Remove Screen Rotation:
HKLM\services\screenrotate\?ShowIcon === change from 1 to 0 (zero)
To Remove the Wireless connection manager
HKEY_LOCAL_MACHINE\Services\?WirelessMgr\keep and change the DWORD Keep to 0, soft-reset
If you remove all three icons, taskbar will be removed and more space on today screen."
So I use my trusty total commander, go to HKLM, go to the services directory but then don't see anything resembling ShowIcon or WirelessMgr. What am I missing here?
BTW, I have a Cing 8125 with Summitters 2.3 test2.
Click to expand...
Click to collapse
Those tweaks are for the universal not the wizard thats why you can't find the keys you want.
To remove the system tray just delete the init_tray.lnk from the windows\startup folder on your device and soft reset.
Mark, if I delete init_tray.lnk, will that let me use the space for the today screen instead, or is it still "reserved"?
Thanks
fuel925 said:
Mark, if I delete init_tray.lnk, will that let me use the space for the today screen instead, or is it still "reserved"?
Thanks
Click to expand...
Click to collapse
Yep will give you more space - make a copy of init_tray.lnk so you can put it back in the future if you need.
meschle said:
fuel925 said:
Mark, if I delete init_tray.lnk, will that let me use the space for the today screen instead, or is it still "reserved"?
Thanks
Click to expand...
Click to collapse
Yep will give you more space - make a copy of init_tray.lnk so you can put it back in the future if you need.
Click to expand...
Click to collapse
Oops, I didn't think to make a backup.. i'm sure someone will be able to provide it anyway should I need it in future.
I have a similar question along the same lines... pocket plus doesnt take up the whole today screen, is there a setting somewhere that i've missed, or maybe a regedit where you can specify the height of the today plugin?
Here is the backup file.
Sorry can't comment on pocket plus don't run that - me a much more basic kinda guy :wink:
Dudes, dudes! You have to try this:
http://www.htcwizardweb.net/node/703
It kicks some major ass!
Hope this helps!
meschle said:
dcdivenut said:
I want to remove the battery8 icon and connection manager from the lower taskbar so did a search and came up with this thread
http://forum.xda-developers.com/viewtopic.php?t=46713&highlight=remove+system+tray
which pointed me to this wiki
http://wiki.xda-developers.com/index.php?pagename=Universal_Registry
"Remove Icons from the Taskbar
To Remove Battery:
HKLM\services\power\?ShowIcon === change from 1 to 0 (zero).
To Remove Screen Rotation:
HKLM\services\screenrotate\?ShowIcon === change from 1 to 0 (zero)
To Remove the Wireless connection manager
HKEY_LOCAL_MACHINE\Services\?WirelessMgr\keep and change the DWORD Keep to 0, soft-reset
If you remove all three icons, taskbar will be removed and more space on today screen."
So I use my trusty total commander, go to HKLM, go to the services directory but then don't see anything resembling ShowIcon or WirelessMgr. What am I missing here?
BTW, I have a Cing 8125 with Summitters 2.3 test2.
Click to expand...
Click to collapse
Those tweaks are for the universal not the wizard thats why you can't find the keys you want.
To remove the system tray just delete the init_tray.lnk from the windows\startup folder on your device and soft reset.
Click to expand...
Click to collapse
Thanks... I knew it was something boneheaded...
Yom - is that my app, VJToggleToday?
V
vijay555 said:
Yom - is that my app, VJToggleToday?
V
Click to expand...
Click to collapse
Yep. I found it at the specified HTC Wizard Web link.
Should I not have posted the link to it?
dcdivenut said:
I want to remove the battery8 icon and connection manager from the lower taskbar
Click to expand...
Click to collapse
Hi
as already told, you can remove Init_tray.lnk from startup. but be aware - this will make slight problems with software, which places icon in tray (CardExport, Pocket GPS Pro etc).
in addition you could gain more place by eliminating lower bar (with contacts and calender). they will be still accesible through soft-buttons, but will not take place on today screen.
i prefer dciNoBar
http://www.google.ru/search?hl=ru&q=dcinobar&lr=
(sorry, some links are in russian, but i think you will have no problems with finding download link).
if you like the result - you may add this program to startup folder so it will restart automatically after softreset.
BR!
Turist said:
dcdivenut said:
I want to remove the battery8 icon and connection manager from the lower taskbar
Click to expand...
Click to collapse
Hi
as already told, you can remove Init_tray.lnk from startup. but be aware - this will make slight problems with software, which places icon in tray (CardExport, Pocket GPS Pro etc).
in addition you could gain more place by eliminating lower bar (with contacts and calender). they will be still accesible through soft-buttons, but will not take place on today screen.
i prefer dciNoBar
http://www.google.ru/search?hl=ru&q=dcinobar&lr=
(sorry, some links are in russian, but i think you will have no problems with finding download link).
if you like the result - you may add this program to startup folder so it will restart automatically after softreset.
BR!
Click to expand...
Click to collapse
Thanks for that - useful small program - For those who find russian daunting - program attached
EDIT cab file now posted for autoinstallation - copy to device, click on cab, install to device and soft reset.
meschle said:
Thanks for that - useful small program - shame the space gained cannot be used and is just visual. I am sure that could be sorted - i will ask around. For those who find russian daunting - program attached
Click to expand...
Click to collapse
Hi. You are somehow wrong. this place is fully usable
If you tell me how can i make screenshot i will show what it looks like.
May be you are using some today plugin which height needs to be manually adjusted? in my case this is Spb +
Turist said:
meschle said:
Thanks for that - useful small program - shame the space gained cannot be used and is just visual. I am sure that could be sorted - i will ask around. For those who find russian daunting - program attached
Click to expand...
Click to collapse
Hi. You are somehow wrong. this place is fully usable
If you tell me how can i make screenshot i will show what it looks like.
May be you are using some today plugin which height needs to be manually adjusted? in my case this is Spb +
Click to expand...
Click to collapse
Thats cool then if its possible - probably because i still have phm traylaunch and it stays where it normally is and i want it right at the bottom.
To take a screen capture use xnview download here http://forum.xda-developers.com/download.php?id=12698
its under tools\capture - i would be interested to see what setup you have and i will fiddle with mine a bit more - thanks
EDIT fiddled with it and yes - it works!!!! phm traylaunch is right at the bottom now. Nice one mate - cheers! Now I need some new themes - normal ones are not long enough.
EDIT2 can't get traylaunch to stay at the bottom - trying to sort out a workaround!
EDIT3 found a fix to keep phm traylaunch at bottom after softreset - open and shut keyboard and it moves to the bottom - GREAT!! v.v. grateful been looking for something like this for a while!
good prog
thx
meschle said:
To take a screen capture use xnview download here http://forum.xda-developers.com/download.php?id=12698
Click to expand...
Click to collapse
thanks, it worked. but if you could give me a tip, where i can get app for screen-capturing only with hot-key support i`d really appreciate it
EDIT3 found a fix to keep phm traylaunch at bottom after softreset - open and shut keyboard and it moves to the bottom - GREAT!! v.v. grateful been looking for something like this for a while!
Click to expand...
Click to collapse
than you may be interested in newer version 0.0.2 (i think you have 0.0.1). it can toggle lower bar if launched again.
BR!
Turist said:
meschle said:
To take a screen capture use xnview download here http://forum.xda-developers.com/download.php?id=12698
Click to expand...
Click to collapse
thanks, it worked. but if you could give me a tip, where i can get app for screen-capturing only with hot-key support i`d really appreciate it
EDIT3 found a fix to keep phm traylaunch at bottom after softreset - open and shut keyboard and it moves to the bottom - GREAT!! v.v. grateful been looking for something like this for a while!
Click to expand...
Click to collapse
than you may be interested in newer version 0.0.2 (i think you have 0.0.1). it can toggle lower bar if launched again.
BR!
Click to expand...
Click to collapse
Thanks for the updated file.
Find enclosed a screen capture program - you can assign to a hard key.
through settings\buttons
Its only drawback is that it saves in bmp format
EDIT version 0.02 does not seem to work so well - on my device - the soft keys often don't seem to work, i only got them to work once - I go back to the other version.
No soft key buttons
I have put dcinobar into a cab for easier installation.
Copy cab onto device, click on cab, install to device and then soft reset.
VJToggleToday
For those using dcinobar - I have tried Vjtoggletoday and would have to say it works better. You can remove soft keys only, soft keys and start bar or startbar only - have it just the way you like it. Does not have the glitch dcinobar has where you need to open and shut the keyboard
see here http://forum.xda-developers.com/viewtopic.php?t=27331
download here http://www.vijay555.com/vj/releases/vjtoggletodayii/vjtoggletodayiialpha.exe
Thanks vijay!
Re: VJToggleToday
meschle said:
For those using dcinobar - I have tried Vjtoggletoday and would have to say it works better. You can remove soft keys only, soft keys and start bar or startbar only - have it just the way you like it. Does not have the glitch dcinobar has where you need to open and shut the keyboard
Thanks vijay!
Click to expand...
Click to collapse
Hi!
i have no glitch with keyb indicator. maybe it depends on keyboard being used? i`ve tried VJs app and i dont like the way how start bar romoval is done. i`ll wait for next release and keep using dcinobar meanwhile

Bluetooth Toggle As Today Plugin

Is there any application that makes putting bluetooth toggle as today plugin possible in WM5 ????
Please Help !!!
Maybe Like This One -->
Thanks in advance
download and install batterystatus. Very easy to find as it is all over this forum. Go to the options and select the Tray Launch Tab. You will be able to add bluetooth,wi-fi,phone, as well as many other options to the tray at the bottom of your screen.
this should work
found this somewhere, i have it installed and it works good.doesnt take up much space either.
As an alternative, Vijay codes up a bunch of really handle utilities, and one (VJvolubilis http://www.vijay555.com/?Releases:VJVolubilis) can toggle BT. Then all you need is a today screen shortcut to his prog with the right suffix. cLaunch should do it if you want it on the today screen instead of the tray, or even create a drop-down menu controlled by a hard key with something like WM5NewMenu. All these are free, but I'm sure the developers would love a donation!
Theres a registry hack on ppcgeeks that enables that and wifi on your today screen if I find it i'll post it
BT on today-you find it???
Nitefall said:
Theres a registry hack on ppcgeeks that enables that and wifi on your today screen if I find it i'll post it
Click to expand...
Click to collapse
I have been searching for this for a while now. I have started using phone weaver and turned everything else off but BT. See cab and thumbnail. In thumbnail look in bottom right corner of today screen for activated BT! I would like this to happen without running Phone weaver, seems to take up a little more memory than I would like for this type of app, but it works great and I am happy with it. Just what I wanted, if I could actually get rid of the few little icons to the left of the BT I would be VERY happy thats my main gripe here...
Cheers!
Efcomm.cab is what you need
here you go:
Not Quite
davehutch said:
here you go:
Click to expand...
Click to collapse
Not quite what I am looking for, I just want a Bluetooth ICON that is a today plugin no WIFI, NO Phone, just an icon so I can turn it on and off using my finger.....
thanks though!!!
phillyg8r said:
Not quite what I am looking for, I just want a Bluetooth ICON that is a today plugin no WIFI, NO Phone, just an icon so I can turn it on and off using my finger.....
thanks though!!!
Click to expand...
Click to collapse
ciclebt.cab.... and assigne to hardware button. or use as app via applauncher programs.
You can use btIO-mini (see attached file). In this zip there are 2 files.
I made this for 2 reasons. The first is to have a quick toggle via HTC Home integration, and the second ist to be able to turn on/off BT via voice command.
1. bluetooth.lnk -> put this in your \windows\startmenu\program files\ folder
2. btIO-mini.exe put this in \program files\btIO\
3. Make a shortcut from your favorite launcher today-plugin to btIO-mini.exe
Make a softreset, after that you can use voice command to turn on/off bluetooth.
There is no visible indication, like pop-up or message box that tells you which state BT is. The program just looks in which state BT is and if it's off it turns BT on in connectable (invisible) mode, and if it's on it simly turns BT off and exits.
So this is not exactly what you asked since it is not a today plugin but maybe it will help you.
Cheers
EDIT: Be warned! The program icon is ****ing ugly. Will have to find a better one...
Thank you guys for your response ....
But I'm asking about the plugin in the attached picture ...
thank u again ..
azzambm said:
Thank you guys for your response ....
But I'm asking about the plugin in the attached picture ...
thank u again ..
Click to expand...
Click to collapse
That is "wireless" plugin for today. only shopwing operator anem, wifi and bluetooth status..
BUT you cannot toggle with it.
regards

Change your Default Calendar Version 0.01

I made it as simple as possible to change your prefered Calendar Manager, I use ThumbCal, which seems quite popular here. As downloaded, the script is setup for ThumbCal, but to change it all you have to do is edit the first 2 lines with a text editor.
Run the script and your Softkeys, links, and "Today Plugin" all call up Thumbcal, run again and it switches back to Office (Outlook) Mobile!
Does not support 3rd party software, for SPB Mobile Shell support see this thread.
MortScript is requied, download it here.
I hope you find this useful!
To use:
1. Download and unpack the ZIP file.
2. Edit the first 2 lines in the MSCR file, notepad works fine for this.
set AltCalendarName, "ThumbCal"
set AltCalendarPath, """\Program Files\ThumbApps\ThumbCal\ThumbCal.exe"""
3. Copy to your device, and make a shortcut.
4. Click the shortcut and answer the "Yes or No" question.
5. Repeat step 4 to swap between the two calendar managers!
NOTICE: I have seen this many of times, some softkey mapping software (most likely Spb Mobile Shell, this one does it the worst) hijacks the "calendar" softkey and redirects it to the "exe" instead of the "lnk". In any case this patch will still effect the Calendar Today Plug-in. You can remap your softkey with the mapping utility, how ever Spb Mobile Shell limits what you can select, so an additional one is recommended.
WOW..great thinking..
It has been asked abt Hundred of times to replace the Default Crappy Calender
Any screen shoot???
this is EXACTLY what i was looking for. thank you very much. if it doesn't take too much of your time and you can make one for changing the HTC Home Media Player to S2P instead of MP or HTC Audio Manager.. it would be fantastic.
THANK YOU
Just what I have been waiting for. There was nothing worse than having calendar items on the today screen, then pressing on them and it taking me to the default calendar, which I dont even use anymore. i had taken calendar off my today screen altogether. Now its back!!! thanks a bunch for this one.
Any news to get this feature on SPB mobile shell ?
change it easy guys.
as far as I know,I changed my calendar with the thumbcalc 0.51 simply with SK TOOLS.
There is a button change option.And many other offcours as well.But this is the easy way,without aknoledge of serious programming or programms..
helios
heliosismagic said:
as far as I know,I changed my calendar with the thumbcalc 0.51 simply with SK TOOLS.
There is a button change option.And many other offcours as well.But this is the easy way,without aknoledge of serious programming or programms..
helios
Click to expand...
Click to collapse
Hi!
Can u tell me which menu plz?
black_shadow69 said:
Any screen shoot???
Click to expand...
Click to collapse
No screens to shoot actually, its just a simple click "yes" or "no" dialog.
nir36 said:
this is EXACTLY what i was looking for. thank you very much. if it doesn't take too much of your time and you can make one for changing the HTC Home Media Player to S2P instead of MP or HTC Audio Manager.. it would be fantastic.
Click to expand...
Click to collapse
Dont use that program, but I will take a look just to see if its do-able.
flouk said:
Any news to get this feature on SPB mobile shell ?
Click to expand...
Click to collapse
Will be looking into that this week, looks complicated at the moment, but I think it will be possible.
is this not working for anyone else? :/
EDIT: NiteStalker, I checked my file paths, and everything is correct, when I press the .mscr file to toggle calendars, it tells me my default calendar has changed, but when I actually check my calendar "softkey" it has not changed.
Is there another script I could run to acheive the same effect?
UPDATE: I have also tried changing the File paths, and then changing the file location acoordingly with no result. I'm going to try to run it from the root, and see if it works.
UPDATE II: Launch off the root doesnt work, im going to check and see if the original Calendar is in the place referenced in the script for my device. (XV6900)
damnitryon said:
is this not working for anyone else? :/
EDIT: NiteStalker, I checked my file paths, and everything is correct, when I press the .mscr file to toggle calendars, it tells me my default calendar has changed, but when I actually check my calendar "softkey" it has not changed.
Is there another script I could run to acheive the same effect?
UPDATE: I have also tried changing the File paths, and then changing the file location acoordingly with no result. I'm going to try to run it from the root, and see if it works.
Click to expand...
Click to collapse
I run it from \Application Data\Mortscripts, but where its placed doesn't matter. When I run it my 'Softkey', 'Program Menu Link', and 'Today Screen Calendar Plug-in' all work. I'm using ThumbCal 0.51, but it shouldn't matter what app you run.
If the today plug-in works, but your softkey isn't, it's possible you have remapping software changing the default calendar link. If you have a softkey editor ensure it's pointed to the "calendar.lnk" in your start menu.
Also make sure you have 3 quotations (""") in front of and after the {set AltCalendarPath, """\Program Files\ThumbApps\ThumbCal\ThumbCal.exe"""}. If your missing even one, it will malfunction.
If none of this works, I don't know what to say, except that I run it on WM6.1, and my friend runs WM6.0, and it works on those.
I'm stumped, can anyone point me in the right direction?
EDIT: one sec. i posted at the same time as you. im reading.
damnitryon said:
I'm stumped, can anyone point me in the right direction?
EDIT: one sec. i posted at the same time as you. im reading.
Click to expand...
Click to collapse
Most important thing, did you download and install MortScript?
If need be, paste your edited lines so I can take a look.
NiteStalker said:
Most important thing, did you download and install MortScript?
If need be, paste your edited lines so I can take a look.
Click to expand...
Click to collapse
EDIT: Yes I have MortScript.
Well, I re-installed TouchCal and whent back to the original script, it works on the today plugin, but not the softkey, so, as you said somethiing is being remapped. How would I fix this?
damnitryon said:
EDIT: Yes I have MortScript.
Well, I re-installed TouchCal and whent back to the original script, it works on the today plugin, but not the softkey, so, as you said somethiing is being remapped. How would I fix this?
Click to expand...
Click to collapse
find your remapping software, "EZ Softkey" or "Mobile Shell 2" and remap to the "calendar.lnk" in the start menu.
NiteStalker said:
find your remapping software, "EZ Softkey" or "Mobile Shell 2" and remap to the "calendar.lnk" in the start menu.
Click to expand...
Click to collapse
How about a plot twist, I've never heard of either, and havent used any form of remapping software, should I just remap it to the correct place anyhow?
I may as well give it a shot.
UPDATE! I did it, when I looked at the mapping of the softkey it was going to "calendar.exe" instead of "calendar.lnk" so I just mapped it straight to touchCal for now, but now im curious and want to see if i can find the "calendar.lnk"
damnitryon said:
How about a plot twist, I've never heard of either, and havent used any form of remapping software, should I just remap it to the correct place anyhow?
I may as well give it a shot.
UPDATE! I did it, when I looked at the mapping of the softkey it was going to "calendar.exe" instead of "calendar.lnk" so I just mapped it straight to touchCal for now, but now im curious and want to see if i can find the "calendar.lnk"
Click to expand...
Click to collapse
Calendar.lnk is in [\windows\startmenu\programs] usually, it can move around there. Remapping to that would allow you to successfully swap between the apps if needed.
ANYWAY I am glad we were able to solve your problem.
NiteStalker said:
Calendar.lnk is in [\windows\startmenu\programs] usually, it can move around there. Remapping to that would allow you to successfully swap between the apps if needed.
ANYWAY I am glad we were able to solve your problem.
Click to expand...
Click to collapse
Yes, thank you for taking the time to help me out, I apreciate it. I also apologize for going off topic.
NiteStalker said:
find your remapping software, "EZ Softkey" or "Mobile Shell 2" and remap to the "calendar.lnk" in the start menu.
Click to expand...
Click to collapse
I am using "mobile shell 2" how do I remap it to "calendar.ink" so that thumbcal works please.
ozmale said:
I am using "mobile shell 2" how do I remap it to "calendar.ink" so that thumbcal works please.
Click to expand...
Click to collapse
settings> System> SPB Mobile Shell> Today Tab
Thats the path to your softkey remap in mobile shell

[REQ] Remove bottom menubar!

I could easily give some money if someone could make a program for making the bottom menu bar to hide and pressing like the big round bottom on phone would make it visible again. It would give alot more screen space for alot of programs, like writing sms etc.
It would be really great, I bet alot of people would like it to and also pay for it!
thanks
BarateaU said:
I could easily give some money if someone could make a program for making the bottom menu bar to hide and pressing like the big round bottom on phone would make it visible again. It would give alot more screen space for alot of programs, like writing sms etc.
It would be really great, I bet alot of people would like it to and also pay for it!
thanks
Click to expand...
Click to collapse
Here you are This is in polish, but program do exactly what you want - hide bottom bar in wm5, you can translate in google:
http://www.pdaclub.pl/index.php?option=com_files&Itemid=54&cid=38&fid=691&srv=2
And this is a file
TomekJ said:
Here you are This is in polish, but program do exactly what you want - hide bottom bar in wm5, you can translate in google:
http://www.pdaclub.pl/index.php?option=com_files&Itemid=54&cid=38&fid=691&srv=2
And this is a file
Click to expand...
Click to collapse
thanks, but i want it for wm 6.1q diamons default os, andbtouch flo
Is it only me that thinks its a good idea?
no your not alone
i found this topic because i had the same idea
ghostdweller said:
no your not alone
i found this topic because i had the same idea
Click to expand...
Click to collapse
Great
It would be really good removing it, having more screen space like opera when browsing it goes to fullscreen and pressing on the screen will make the bar's and menues apear again. Something like that would be great for the rest of the phone!
Ok ill give 200sek for the one that fixes this mod!
hiding top and bottom menus! And makes them appear when wanted!
Questions? ask!
you can do that with vjtoggletoday (www.vijay555.com) and a tool for setting registry keys (the guy who has written batterystatus has also written such a tool).
create a lnk file with the desired settings and map it to a key. that should do it. but you only have one key available to map (long end key)
I've seen that toggletoday thingy but i think its for wm5. I've tried installing it but nothing happend.
Thanks thou!
hi guys, I wanted to just remove the bottom bar like u guys and found this software from some site. Dont know where actually.. But it works on my Diamond.
It just removes the bottom bar.
Hope this helps.
lordaris said:
hi guys, I wanted to just remove the bottom bar like u guys and found this software from some site. Dont know where actually.. But it works on my Diamond.
It just removes the bottom bar.
Hope this helps.
Click to expand...
Click to collapse
Nothing happend with that cab. I did a soft reset but didnt help!
thanks anyway
same here
doesn't work with my touchflo
also tried a softreset
tried to install it with touchflo disabled
and when i enabled it ..... nothing
(also tried the softreset afterwards)
any sugestions ?
reg references ?
(maybe's there's is a way to just remove the black bar (as was done with the curtain remover) and leave the buttons intact ?
(that would be the next best thing for me)
I'd rather hide the menues completly. It would be really nice having a full screen phone. Now it looks more like a pda
BarateaU said:
I've seen that toggletoday thingy but i think its for wm5. I've tried installing it but nothing happend.
Thanks thou!
Click to expand...
Click to collapse
vjtoggletoday works also on wm6. make sure it is the alpha2 version.
you can use the attached zip file. put the autorun lnk file into your windows startup folder and configure this utility before soft-reset.
advantage of vjtoggletoday is, you can define how much of the bars' height should disappear.
another app is dcinobar which hides the bottom bar only
egoist6 said:
vjtoggletoday works also on wm6. make sure it is the alpha2 version.
you can use the attached zip file. put the autorun lnk file into your windows startup folder and configure this utility before soft-reset.
advantage of vjtoggletoday is, you can define how much of the bars' height should disappear.
another app is dcinobar which hides the buttom bar only
Click to expand...
Click to collapse
I dont know what that apps did to my diamond. Im not setting that on autorun! And the config file how are you suppose to config it? When neither of them starts?
by the way: both apps (i have attached dcinobar to my post above) only hide the bars on the today screen only. the bars do not disappear if you run an app.
if this would help you to some extend, i'll give you a step-by-step instruction for vjtoggle.
dcinobar is easier. just run the tool.
Have you tried them on a diamond? Cause the dcinobar did nothing on my diamond.
And the other program i think i will need a step by step guide
Thanks mate!
BarateaU said:
Have you tried them on a diamond? Cause the dcinobar did nothing on my diamond.
And the other program i think i will need a step by step guide
Thanks mate!
Click to expand...
Click to collapse
dcinobar works definitely on diamond. i am currently using it myself.
as said. both programs only hide the bar on today screen.
dcinobar: just copy the exe file to \windows\startup\. softreset. that's it.
vjtoggle:
copy the vjtoggletodayiialpha.exe to \Program Files\vijay555\
(if you keep the directoryname, you do not need to adjust the lnk files)
copy the vjtoggletodayAutorun.lnk to \Windows\StartUp\
copy the VJ Toggle Config.lnk to \Windows\StartMenu\Programs\
now run the config tool and set the values to 0. the config tool only sets the registry keys which are being used by the file in the startup folder.
alternatively you could do the settings yourself:
Code:
[HKEY_LOCAL_MACHINE\Software\Vijay555\VJTodayToggle]
"Enabled"=dword:00000001
"SoftKeySize"=dword:00000001
"StartSize"=dword:00000001
"TrayVisible"=dword:00000001
in this case the top and the bottom bar will have the size of 1px (just in case you still want to access them )
soft-reset.
if you do a soft-reset i would recommend to switch the phone off (long press on the button on the very top of your diamond).
if this is not working, you are definitely doing s.th. wrong as it works on my diamond.
post here if you need some more help.
vjtoggle:
copy the vjtoggletodayiialpha.exe to \Program Files\vijay555\
(if you keep the directoryname, you do not need to adjust the lnk files)
copy the vjtoggletodayAutorun.lnk to \Windows\StartUp\
copy the VJ Toggle Config.lnk to \Windows\StartMenu\Programs\
now run the config tool and set the values to 0. the config tool only sets the registry keys which are being used by the file in the startup folder.
alternatively you could do the settings yourself:
Click to expand...
Click to collapse
I did that, step by step. When i rebooted the htc, i didnt get a top menu at all and not just in today in all windows. And the bottom menu was still there.
And what happends if this will work. Will i get 2 black bars instead of 2 menues or will the screen auto adjust?
BarateaU said:
I did that, step by step. When i rebooted the htc, i didnt get a top menu at all ...
Click to expand...
Click to collapse
isn't that what you wanted to achieve (see post #7)
BarateaU said:
... And the bottom menu was still there...
Click to expand...
Click to collapse
please check the registry settings, if the key softkeysize = 0
also try to set trayvisible = 0
BarateaU said:
...And what happends if this will work. Will i get 2 black bars instead of 2 menues or will the screen auto adjust?
Click to expand...
Click to collapse
the space available for today screen will increase. the today screen is not stretched by the size you gained, you 'll have more space available.
did you try dcinobar?

ProfileTimer - App for controlling ring & other hardware functions

pt is no longer supported, thanks, dan.
Any screen shots !!?
Haven't tried it yet. Sounds like a nifty program.
dody said:
Any screen shots !!?
Click to expand...
Click to collapse
here dude ;-)
http://rapidshare.com/files/188907011/profileTimer.png
hey i'd really like to use this app but it doesnt start on my blackstone .
dt_matthews said:
here dude ;-)
http://rapidshare.com/files/188907011/profileTimer.png
Click to expand...
Click to collapse
Thanks ! it is great
l tried so many apps for automatic changing of profiles with no success! This is the only one that works with weekly profile management!wll done! Only two suggestions-issues: a.make a tool to change the .hml file faster and easy b.sometimes when changing profile there is a notification error don't know why!
I tried CommManagerPro and woah! That was a complicated app! It had too many functions for me to figure out what to do and normally I'm the tech whiz. I think the dev tried to do too many things with one app >.> It ended up bad. It will take time to set that up. This is an easy to setup app that is fine for my needs Now I just need to find the one that supported tower ids.
I have edited the config.xml file and have it in my profile timer folder..
I can launch profile timer and see the schedule, but how do I keep the program running?
I see schedule.exe and have clicked it, and it turn my vibrate on, etc.
So I assume that the scheduler.exe file has to be in the startup
folder in order for the profiletimer program to start up
and run after reset? To manually start it, it looks like you just
need to run the scheduler.exe.
Am i correct about where put the scheduler.exe to run the program
and start the sched?
cj
(also, in the config.xml, what happens if you want a schedule
to go from 7am-12pm (ringer off), then 12pm-5 (ringer on)
do you have to input 7:01-12:00, then start the next one at 12:01-17:00?
or can you put in 12:00-17:00 (didnt know if the program would
accept the overlap from 12:00 or if it needed 12:01.
I assume that if you dont put anything in for 12:00-17:00 then the
program will run the Default setup and turn the ringer on , etc..
does that mean from 12:00-12:01 it would default to the default
of the phone as setup in config.xml?
cejay said:
I have edited the config.xml file and have it in my profile timer folder..
I can launch profile timer and see the schedule, but how do I keep the program running?
I see schedule.exe and have clicked it, and it turn my vibrate on, etc.
So I assume that the scheduler.exe file has to be in the startup
folder in order for the profiletimer program to start up
and run after reset? To manually start it, it looks like you just
need to run the scheduler.exe.
Am i correct about where put the scheduler.exe to run the program
and start the sched?
cj
(also, in the config.xml, what happens if you want a schedule
to go from 7am-12pm (ringer off), then 12pm-5 (ringer on)
do you have to input 7:01-12:00, then start the next one at 12:01-17:00?
or can you put in 12:00-17:00 (didnt know if the program would
accept the overlap from 12:00 or if it needed 12:01.
I assume that if you dont put anything in for 12:00-17:00 then the
program will run the Default setup and turn the ringer on , etc..
does that mean from 12:00-12:01 it would default to the default
of the phone as setup in config.xml?
Click to expand...
Click to collapse
Some more notes to clarify;
1. Extract ALL the files to the SAME folder on your device
2. Edit the config.xml to your timing requirements
3. Run ProfileTimer.exe
4. *DONT* run scheduler.exe diretcly (main app calls it as a console app)
5. If you want it to run after Soft-reset put a shortcut in Startup folder
6. The icons are (left to right):
a. Ringer on - Green shield
b. Vibrate - Amber shield
c. Red - silent
d. Sunglasses dude - light off
7. The program - like most other WM apps runs in the bacground (just hit your normal ok button to 'minimise' it
8. If you want to actually shut the app there is a Kill PT menu item
9. Volume setting is WIP, it should set ringer volume but I am still playign with this!
With regards to schedules with overlapping days, to be hones give it a go - as per my original post, I havent actually tried that. if it doesnt work, just split the schedule in to its seperate days so to speak.
hth
and sorry for slow reply, notification thread setting was wrong!
ttherapon said:
l tried so many apps for automatic changing of profiles with no success! This is the only one that works with weekly profile management!wll done! Only two suggestions-issues: a.make a tool to change the .hml file faster and easy b.sometimes when changing profile there is a notification error don't know why!
Click to expand...
Click to collapse
'Notification error' - could you give me any more detail - the View Log menu item should give you a bit more info so if you could post that...
pitchbend said:
hey i'd really like to use this app but it doesnt start on my blackstone .
Click to expand...
Click to collapse
what happens, happy to try and help - if you read my recent post with the bullet points that *might* get you running ! let me know if i can help ;-0
This is what I was looking for, but I have some problems:
the profile changes to vibrate but it dosen't go back to normal!!
Here the config file:
Code:
<dayProfile day="Wednesday">
<session activate="09:00" deactivate="09:02" vibrate="on" ring="off" volume="0" />
</dayProfile>
The default settings are:
Code:
<default vibrate="on" ring="on" volume="3" />
Tnx!
This is great, and so simple
Just a question,
what happens after the "deactivation" will the default be selected?
(what TheMorpheus is mentioning)
also look at my screen shot, there is something wrong with the calculation,
the phone should be burning a hole in my pocket by now ;-)
could it be you forgot a comma? (I think this is also valid for the voltage)
Lat question, the volume, are they points or steps?
e.g. in the FMOD lib you can set the volume to 255 (full) is that the same case here or is 5 the highest?
(1 = 20%, 2 = 40%, .. > 5 = 100% )
thanks
Great and simple application
Great and simple application.
Here is some functions make it more perfect.
Can it have some exception on some calendar events?
Such as mobile should have exception ring/vibration when I'm on Holiday or Public holiday.
Also, if it can execute some commands, it can provide more flexibility.
I changed the code:
Code:
<dayProfile day="Wednesday">
<session activate="08:00" vibrate="on" ring="off" volume="0" />
<session deactivate="12:10"/>
<session activate="14:00" vibrate="on" ring="off" volume="0" />
<session deactivate="18:10"/>
</dayProfile>
Now it seems working!!
If I want it to run after Soft-reset, what shortcut do I have to put in startup folder?
TheMorpheus said:
This is what I was looking for, but I have some problems:
the profile changes to vibrate but it dosen't go back to normal!!
Here the config file:
Code:
<dayProfile day="Wednesday">
<session activate="09:00" deactivate="09:02" vibrate="on" ring="off" volume="0" />
</dayProfile>
The default settings are:
Code:
<default vibrate="on" ring="on" volume="3" />
Tnx!
Click to expand...
Click to collapse
Hi,
It's not working because you have the default vibrate="on", therefore, once your session finishes, it is setting it to vibrate not ring!!
regards,
dan
TheMorpheus said:
I changed the code:
Code:
<dayProfile day="Wednesday">
<session activate="08:00" vibrate="on" ring="off" volume="0" />
<session deactivate="12:10"/>
<session activate="14:00" vibrate="on" ring="off" volume="0" />
<session deactivate="18:10"/>
</dayProfile>
Now it seems working!!
If I want it to run after Soft-reset, what shortcut do I have to put in startup folder?
Click to expand...
Click to collapse
You have added tags ( <session deactivate="18:10"/> ) which the app has no awareness of and will (at best) be ignored, and possibly confuse it. I advise you remove them! I assume its now working as you amended the default tag to make sense? (see my previous post).
Regards auto-start, put a shortcut to the ProfileTimer.exe and that will do what you want....
cheers
aaauto said:
Great and simple application.
Here is some functions make it more perfect.
Can it have some exception on some calendar events?
Such as mobile should have exception ring/vibration when I'm on Holiday or Public holiday.
Also, if it can execute some commands, it can provide more flexibility.
Click to expand...
Click to collapse
thanks for the feedback.
Mr_Gee said:
This is great, and so simple
Just a question,
what happens after the "deactivation" will the default be selected?
(what TheMorpheus is mentioning)
also look at my screen shot, there is something wrong with the calculation,
the phone should be burning a hole in my pocket by now ;-)
could it be you forgot a comma? (I think this is also valid for the voltage)
Lat question, the volume, are they points or steps?
e.g. in the FMOD lib you can set the volume to 255 (full) is that the same case here or is 5 the highest?
(1 = 20%, 2 = 40%, .. > 5 = 100% )
thanks
Click to expand...
Click to collapse
thanks for your feedback.
re the temp and voltage, they are the *battery* levels, not the device! that is the reported internal temp of battery and the voltage (in milliamps as per symbol). hth.
the volume setting is still WIP, I will do some more research and get back to you!
cheers,
dan

Categories

Resources