.:NEW:. Smartphone 2003 Alarm Plug-in ~~ |
![]() ![]() |
.:NEW:. Smartphone 2003 Alarm Plug-in ~~ |
Nov 5 2004, 14:38
Post
#1
|
|||
![]() Hardcore Group: Posters Posts: 2,081 Joined: 29th November 2002 From: Stoke on Trent, England Member No.: 294 |
I've finally got round to coding a 2k3 version of my popular Alarm plug-in :mrgreen:
Its even quicker than the Orange one As before, the included Homescreen is just added to show it and unfortunately the plugin isnt very customisable yet :| At some time i'll get round to doing a complete re-code of it, which will hopefully give you more control of its formatting via the home XML! If you've used my previous version (see link in my sig) you'll know what to expect, if you havent used it, dont expect too much
Attached File(s)
-------------------- |
||
|
|
|||
|
Nov 5 2004, 16:18
Post
#2
|
||
![]() Addict Group: Posters Posts: 752 Joined: 25th September 2003 From: Norway Member No.: 16,915 |
now i can buy a wm2003 smartphone
great work!! it'll be a most used plugin on wm2003 -------------------- |
||
|
|
|||
|
Nov 5 2004, 18:35
Post
#3
|
||
![]() Diehard Group: Posters Posts: 424 Joined: 7th August 2003 From: Netherlands Member No.: 12,312 Device(s): HTC S710 |
Yeeeeeeeeeesssssssss !
Richie rules 8) -------------------- First: Original SPV (Canary) > then: SPV-C500 > then: Qtek 8310 and HTC Wizard > then: HTC S710 > Now: Apple iPhone :)
**If electricity comes from electrons, does that mean that morality comes from morons ?** |
||
|
|
|||
|
Nov 6 2004, 03:59
Post
#4
|
||
![]() Blackjack'd Group: Moderator Team Posts: 4,273 Favorited Topics: 2 Joined: 18th April 2003 From: Mt Laurel, NJ USA Member No.: 4,796 Device(s): iPhone 3GS |
Nice Richie! Thanks for taking the time.
-------------------- -Nick
|
||
|
|
|||
Nov 6 2004, 12:00
Post
#5
|
|||
![]() Diehard Group: Posters Posts: 382 Joined: 15th January 2003 From: Bern, Switzerland Member No.: 1,949 |
Hi Richie
Thanks a lot, it's working really good As far as I see, the text-color if selected is taken from COLOR_HIGHLIGHTTEXT! Can this be changed? Only thing: If I am in the settings-menu and then press the home-button (so settings-menu stays open) and then I select the alarm-plugin it is stuck in the settings-menu and I have to take out the battery. Could you confirm this? It's not really serious if you know that you have to close the settings-menu correctly... Thanks Sven -------------------- Dumdidum - Moderator of www.mobiledevices.ch - best german website for smartphone and pocketpc!
Homescreen Designer, Media Remote and Powerpoint Remote? => visit www.ruttensoft.com MobileHelp - Remote Support for your Windows Mobile Device => www.mobilehelp.ch |
||
|
|
|||
Nov 8 2004, 08:44
Post
#6
|
|||
![]() Hardcore Group: Posters Posts: 2,081 Joined: 29th November 2002 From: Stoke on Trent, England Member No.: 294 |
QUOTE As far as I see, the text-color if selected is taken from COLOR_HIGHLIGHTTEXT! Can this be changed?
Only thing: If I am in the settings-menu and then press the home-button (so settings-menu stays open) and then I select the alarm-plugin it is stuck in the settings-menu and I have to take out the battery. Could you confirm this? It's not really serious if you know that you have to close the settings-menu correctly... Thanks Sven Yeah unfortunately at the moment to change the text colour you do have to change COLOR_HIGHLIGHTTEXT, this is due to two reasons, one COLOR_HOMEHIGLIGHTTEXT is not support as standard in the SDK :roll: and partly due to some problems i've had reading in the XML to the plug-in, Hopefully this will change in a future version. As for getting stuck in the menu; i dont think i can do anything about that unfortunately. But in a future version i am planning on using my own app to set the alarm, so this will banish this problem |
||
|
|
|||
Nov 8 2004, 08:45
Post
#7
|
|||
![]() Diehard Group: Posters Posts: 382 Joined: 15th January 2003 From: Bern, Switzerland Member No.: 1,949 |
Thanks a lot for your answer...
Great release! Sven |
||
|
|
|||
Nov 8 2004, 09:07
Post
#8
|
|||
|
Newbie Group: Posters Posts: 9 Joined: 12th September 2004 Member No.: 56,302 |
hello there,
i uninstalled the previous version and installed the latest. for some reason it doesnt take me to the alarm settings. im using an mpx200 with wm2003. it takes me to owner information which one below the date and time settings. any comments cheers |
||
|
|
|||
Nov 8 2004, 09:28
Post
#9
|
|||
|
Regular Group: Posters Posts: 63 Joined: 18th January 2004 Member No.: 29,018 |
Great. I will try it and let you know what I find. Until now I have been using the one labelled as v1 in the other thread, as it is the only one with a transparent background. FYI it works well in WM2003 as long as the settings menu is rewritten.
Rather than calling the date control panel, why don't you include a custom alarm control panel and call it from your plugin? The reason I think it is better, is the default date control panel stops the clock for as long as it is used, making the tim innacurate. Here is the one I use (saved as alarm.cpl.xml): CODE <stinger-controlpanel-doc>
<cpl-title res="30013"/> <characteristic type="Clock"> <parm-query name="AlarmOn"/> <parm-query name="AlarmTime"/> </characteristic> <characteristic type="DeviceInformation"> <parm-query name="BatteryStrength"/> </characteristic> </stinger-controlpanel-doc> Ideally I would also like to include the alarm sound settings but can't get it to work. I tried a few things, the latest saved on my HD is: CODE <stinger-controlpanel-doc> <cpl-title res="30030"/> <menu clsid="{89945303-BCBE-4774B231-0F47112586D6}"/> <menu clsid="{E64D0F99-A3E3-4D4D-94AB-BB090ACE0431}"/> <event-listener clsid="{89945303-BCBE-4774B231-0F47112586D6}"/> <characteristic type="Clock"> <parm-query name="AlarmOn"/> <parm-query name="AlarmTime"/> </characteristic> <characteristic type="Sounds"> <characteristic type="HKCUControlPanelSounds"> <characteristic type="Clock"> <parm-query name="Sound" refresh="1"/> </characteristic> </characteristic> </characteristic> <characteristic type="DeviceInformation"> <parm-query name="BatteryStrength"/> </characteristic> </stinger-controlpanel-doc> |
||
|
|
|||
Nov 8 2004, 09:36
Post
#10
|
|||
|
Regular Group: Posters Posts: 63 Joined: 18th January 2004 Member No.: 29,018 |
I have not tried the plugin yet, but I think you can call a settings control panel directly rather than emulating keypresses:
23#"Windowssettings.exe" alarm.cpl.xml |
||
|
|
|||
Nov 8 2004, 09:43
Post
#11
|
|||
![]() Hardcore Group: Posters Posts: 2,081 Joined: 29th November 2002 From: Stoke on Trent, England Member No.: 294 |
QUOTE hello there, i uninstalled the previous version and installed the latest. for some reason it doesnt take me to the alarm settings. im using an mpx200 with wm2003. it takes me to owner information which one below the date and time settings. That will be because your menu is set out differently, as the plug-in uses key presses to get to the settings, i.e. 9 then 3. The only way around this would be to code a different version - but as there is no official 2k3 ROM for the mpx200 and the fact that i dont have a mpx200 i wont be doing this, sorry. arman68, i havent played with the cpl's before :| and i never knew/realised that the default date cpl stops the clock :shock: i'll investigate this and may use in a future version |
||
|
|
|||
Nov 8 2004, 10:49
Post
#12
|
|||
|
Newbie Group: Members Posts: 23 Joined: 5th December 2002 Member No.: 753 |
Does this show up on the standard C500 Homescreen ??? :?
|
||
|
|
|||
Nov 8 2004, 12:27
Post
#13
|
|||
![]() Hardcore Group: Posters Posts: 2,081 Joined: 29th November 2002 From: Stoke on Trent, England Member No.: 294 |
QUOTE Does this show up on the standard C500 Homescreen ??? :? It wont show on any homescreen unless you add the code to its xml (easiest way is to rip the relevant code from the example i included) but as the standard c500 screen uses it as a single plug-in it wont work or look right |
||
|
|
|||
Nov 9 2004, 19:41
Post
#14
|
|||
|
Newbie Group: Posters Posts: 14 Joined: 13th September 2004 Member No.: 56,468 |
QUOTE Rather than calling the date control panel, why don't you include a custom alarm control panel and call it from your plugin? The reason I think it is better, is the default date control panel stops the clock for as long as it is used, making the tim innacurate. Here is the one I use (saved as alarm.cpl.xml): CODE <stinger-controlpanel-doc>
<cpl-title res="30013"/> <characteristic type="Clock"> <parm-query name="AlarmOn"/> <parm-query name="AlarmTime"/> </characteristic> <characteristic type="DeviceInformation"> <parm-query name="BatteryStrength"/> </characteristic> </stinger-controlpanel-doc> I can't get this to work (mpx200, SP2003). The shortcut says that the file can't be loaded. Any idea what I'm doing wrong? |
||
|
|
|||
Nov 11 2004, 06:15
Post
#15
|
|||
|
Newbie Group: Posters Posts: 18 Joined: 3rd November 2004 Member No.: 63,406 |
If you already have the settings window open (and you hit home so it's still open), selecting the alarm will crash the phone (SMT5600).
|
||
|
|
|||
Nov 11 2004, 08:32
Post
#16
|
|||
![]() Hardcore Group: Posters Posts: 2,081 Joined: 29th November 2002 From: Stoke on Trent, England Member No.: 294 |
QUOTE If you already have the settings window open (and you hit home so it's still open), selecting the alarm will crash the phone (SMT5600). Yeah this has been said above (and it also happened in the original SPV version) i dont think i can do anything about that unfortunately. But in a future version i am planning on using my own app to set the alarm, so this will banish this problem. Easiest way around it is to make sure you exit out (press back instead of home, or dont let it timeout) of the settings menu |
||
|
|
|||
Nov 12 2004, 18:52
Post
#17
|
|||
|
Newbie Group: Posters Posts: 6 Joined: 2nd June 2004 Member No.: 45,335 |
QUOTE That will be because your menu is set out differently, as the plug-in uses key presses to get to the settings, i.e. 9 then 3. The only way around this would be to code a different version - but as there is no official 2k3 ROM for the mpx200 and the fact that i dont have a mpx200 i wont be doing this, sorry. please... please code a "9 then 2" version, I guess most mpx200 user with 2k3 rom are in that order. |
||
|
|
|||
Nov 17 2004, 09:07
Post
#18
|
|||
|
Newbie Group: Posters Posts: 18 Joined: 17th February 2004 Member No.: 32,733 |
Excellent, thank you
|
||
|
|
|||
|
Nov 17 2004, 11:00
Post
#19
|
||
![]() Did I say that out loud? Group: MoDaCo Plus Posts: 4,650 Joined: 20th August 2003 From: Kent, England Member No.: 13,469 Device(s): Hero MCR2.6 Twitter: @chucky_egg |
A note to the other dolts like me:
If you've never set your alarm to On you get the following message: "Alarm:Read Registry problem" Set the alarm, and turn it back off if you don't want it, and hey presto - IT WORKS! Cool, thanks Richie, and I apologise for questioning your parents marital status. :wink: |
||
|
|
|||
Nov 23 2004, 12:55
Post
#20
|
|||
|
Newbie Group: Posters Posts: 4 Joined: 23rd November 2004 Member No.: 66,193 |
QUOTE QUOTE That will be because your menu is set out differently, as the plug-in uses key presses to get to the settings, i.e. 9 then 3. The only way around this would be to code a different version - but as there is no official 2k3 ROM for the mpx200 and the fact that i dont have a mpx200 i wont be doing this, sorry. please... please code a "9 then 2" version, I guess most mpx200 user with 2k3 rom are in that order. Yes, I think all MPX200 2k3 users with the "international" ROM installed have this problem. It might be working on the "Fartman-version", but this is the german version. I do not think that you have to spend much time to code a "9 then 2" version, but this would make lots of users happy |
||
|
|
|||
![]() ![]() |
Similar Topics
| Topic | Replies | Topic Starter | Views | Last Action | |
|---|---|---|---|---|---|
![]() |
O2Compass V3.1 released |
212 | Rapid81 | 23,530 | Today, 13:29 Last post by: mapla |
![]() |
|
55 | *LeiTo* | 8,553 | Today, 10:03 Last post by: serialkillazzs |
![]() |
Camera flash not in sync | 1 | Anil Rekhani | 70 | Today, 15:05 Last post by: ray1234 |
![]() |
Is there a way to disable auto-rotation in Messaging app? | 0 | ravelcop | 30 | Today, 08:50 Last post by: ravelcop |
![]() |
Finally a New Rom for i8000, IL5 | 1 | surethom | 102 | Today, 15:15 Last post by: asus535 |
![]() |
How to restore back the Wake-up alarm? missing from the custom rom |
0 | monkeyzz | 16 | Today, 14:58 Last post by: monkeyzz |
|
Lo-Fi Version | Time is now: 9th February 2010 - 15:22 |
Please visit our 'Plus Partners' - these companies support MoDaCo through 'MoDaCo Plus' - Click Here for more details!
ActiveKitten |
Binaryfish |
Conduits |
DeveloperOne |
eSoft Interactive |
FTouchSL |
Inesoft |
LastPass
Lingvosoft |
monocube |
OmegaOne |
Omnisoft |
Opera Software |
Resco |
SBSH |
Splashdata
Sprite Software |
Syncdata |
Teksoft |
Titanium Backup |
VITO |
WalkingHotSpot |
WebIS |
z4soft
Would your company like to become a 'Plus Partner'? Click Here to contact us!