Speaking Clock |
![]() ![]() |
Speaking Clock |
Feb 25 2008, 15:21
Post
#1
|
|||
|
Regular Group: Posters Posts: 134 Joined: 27th April 2006 Member No.: 187,358 Device(s): Dell X50, Dopod 585 |
Hi !
When I late in the morning, I want a software that speaks the time every minute so that I'm on track. I've tried "Speaking Clock" but it does not work on my O2 Graphite. The wav is very soft and the application itself give out a few clicks but does not say the time. Any idea if there is such application that can be used to prompt me to hurry up ? If not, any application that can play a sound every minute ? eg play a loud click sound ? Thanks |
||
|
|
|||
|
Mar 8 2008, 00:13
Post
#2
|
||
![]() RN, MS MVP-MD Group: Moderator Team Posts: 4,532 Joined: 7th August 2003 From: Legazpi, Philippines Member No.: 12,251 Device(s): ASUS P525, ASUS N10J-A1 |
I don't have a Smartphone at hand to test this but I think it will work. Just edit the path. You need to have MortScript installed on your phone:
1. Save below code as 'qMinute.mscr' then transfer to \Storage\Program Files CODE # Remove previous notification queue RemoveNotifications ("\Storage\Program Files\qMinute.mscr") # Run 'SpeakingClock.exe' (will speak current time) Run \Storage\Program Files\Clock\SpeakingClock.exe # Time check GetTime hr,min,sec,dy,mo,yr min=min+1 If (min=60) min=0 hr=hr+1 EndIf # Execute this script every minute, so in effect, it will say time every minute! RunAt (%yr%,%mo%,%dy%,%hr%,%min%,"\Storage\Program Files\qMinute.mscr") 2. Extract archive contents then transfer to '\Storage\Program Files\Clock' (edit path whenever necessary)
SpeakingClock.zip ( 96.11K )
Number of downloads: 883. Click 'qMinute.mscr' to run the script. You may also create a shortcut to 'qMinute.mscr' for easy access just in case the script was stopped (instruction 4) 4. Save this as 'Shut Up.mscr', make a shortcut, transfer to Start Menu folder then click to stop the script. CODE RemoveNotifications ("\Storage\Program Files\qMinute.mscr") You may use custom WAV files if you find the ones on the ZIP too soft. -------------------- Jakult everyday, everyday OK!
|
||
|
|
|||
Mar 8 2008, 03:59
Post
#3
|
|||
|
Newbie Group: Posters Posts: 37 Joined: 13th August 2003 Member No.: 12,861 |
I don't have a Smartphone at hand to test this but I think it will work. Just edit the path. You need to have MortScript installed on your phone: 1. Save below code as 'qMinute.mscr' then transfer to \Storage\Program Files CODE # Remove previous notification queue RemoveNotifications ("\Storage\Program Files\qMinute.mscr") # Run 'SpeakingClock.exe' (will speak current time) Run \Storage\Program Files\Clock\SpeakingClock.exe # Time check GetTime hr,min,sec,dy,mo,yr min=min+1 If (min=60) min=0 hr=hr+1 EndIf # Execute this script every minute, so in effect, it will say time every minute! RunAt (%yr%,%mo%,%dy%,%hr%,%min%,"\Storage\Program Files\qMinute.mscr") 2. Extract archive contents then transfer to '\Storage\Program Files\Clock' (edit path whenever necessary)
SpeakingClock.zip ( 96.11K )
Number of downloads: 883. Click 'qMinute.mscr' to run the script. You may also create a shortcut to 'qMinute.mscr' for easy access just in case the script was stopped (instruction 4) 4. Save this as 'Shut Up.mscr', make a shortcut, transfer to Start Menu folder then click to stop the script. CODE RemoveNotifications ("\Storage\Program Files\qMinute.mscr") You may use custom WAV files if you find the ones on the ZIP too soft. Could you pl. make 'beep' rather than speaking. I prefer to have like what Casio watch has :-) |
||
|
|
|||
|
Mar 9 2008, 04:49
Post
#4
|
||
![]() RN, MS MVP-MD Group: Moderator Team Posts: 4,532 Joined: 7th August 2003 From: Legazpi, Philippines Member No.: 12,251 Device(s): ASUS P525, ASUS N10J-A1 |
Could you pl. make 'beep' rather than speaking. I prefer to have like what Casio watch has :-) I don't have the Casio audio file. Have you tried 'RecEnd.wav' ?
RecEnd.wav ( 2.73K )
Number of downloads: 66For your MortScript code, you could have something like... CODE # Remove previous notification queue
RemoveNotifications ("\Storage\Program Files\qMinute.mscr") # Play the WAV file instead of having SpeakingClock.exe tell you the time PlaySound( "\Path\to\RecEnd.wav" ) # Time check GetTime hr,min,sec,dy,mo,yr min=min+1 If (min=60) min=0 hr=hr+1 EndIf # Execute this script every minute, so in effect, play the WAV file every minute RunAt (%yr%,%mo%,%dy%,%hr%,%min%,"\Storage\Program Files\qMinute.mscr") -------------------- Jakult everyday, everyday OK!
|
||
|
|
|||
Mar 30 2008, 15:52
Post
#5
|
|||
|
Regular Group: Posters Posts: 134 Joined: 27th April 2006 Member No.: 187,358 Device(s): Dell X50, Dopod 585 |
The code works. Thanks very much !
I don't have a Smartphone at hand to test this but I think it will work. Just edit the path. You need to have MortScript installed on your phone: 1. Save below code as 'qMinute.mscr' then transfer to \Storage\Program Files CODE # Remove previous notification queue RemoveNotifications ("\Storage\Program Files\qMinute.mscr") # Run 'SpeakingClock.exe' (will speak current time) Run \Storage\Program Files\Clock\SpeakingClock.exe # Time check GetTime hr,min,sec,dy,mo,yr min=min+1 If (min=60) min=0 hr=hr+1 EndIf # Execute this script every minute, so in effect, it will say time every minute! RunAt (%yr%,%mo%,%dy%,%hr%,%min%,"\Storage\Program Files\qMinute.mscr") 2. Extract archive contents then transfer to '\Storage\Program Files\Clock' (edit path whenever necessary)
SpeakingClock.zip ( 96.11K )
Number of downloads: 883. Click 'qMinute.mscr' to run the script. You may also create a shortcut to 'qMinute.mscr' for easy access just in case the script was stopped (instruction 4) 4. Save this as 'Shut Up.mscr', make a shortcut, transfer to Start Menu folder then click to stop the script. CODE RemoveNotifications ("\Storage\Program Files\qMinute.mscr") You may use custom WAV files if you find the ones on the ZIP too soft. |
||
|
|
|||
Mar 30 2008, 16:04
Post
#6
|
|||
|
Regular Group: Posters Posts: 134 Joined: 27th April 2006 Member No.: 187,358 Device(s): Dell X50, Dopod 585 |
|||
|
|
|||
Apr 1 2008, 14:16
Post
#7
|
|||
|
Regular Group: Posters Posts: 134 Joined: 27th April 2006 Member No.: 187,358 Device(s): Dell X50, Dopod 585 |
I tried to vary the notification period using the following codes.
># Time check >GetTime hr,min,sec,dy,mo,yr >min=min+5 > >min1=min/5 > >If ((min mod 5) <> 0 ) > min=Ceil(min / 5) * 5 >EndIf But I get an error in Ceil(). It says >Invalid parameter count for 'Ceil' > >Line: >min=Ceil(min / 5) * 5 I tried Ceil(1.2)... same error. Any advice ? Thanks. The code works. Thanks very much ! |
||
|
|
|||
|
Apr 29 2008, 04:00
Post
#8
|
||
|
Newbie Group: Posters Posts: 4 Joined: 26th April 2008 Member No.: 382,895 |
this looks cool i think im missing something i uploaded the file in stor/prog/clock then i created a file and named it qmin ... and i entered the script u wrote and tranfered it in the same file .. then went to run it and nothing happends lol sorry im new to these things lol
|
||
|
|
|||
![]() ![]() |
Similar Topics
| Topic | Replies | Topic Starter | Views | Last Action | |
|---|---|---|---|---|---|
![]() |
Klaxon - G-Sensor Enabled and Skinnable Alarm Clock now supports the Omnia! (10/21) | 13 | Koush | 3,451 | 21st October 2008 - 18:42 Last post by: Koush |
![]() |
Omnia D&G Clock | 1 | lee2000 | 605 | 2nd November 2008 - 17:52 Last post by: septic |
![]() |
SAMSUNG CLOCK STYLUS | 2 | herojas | 537 | 5th November 2008 - 16:45 Last post by: herojas |
![]() |
Clock | 0 | ianbeale | 144 | 16th November 2008 - 15:37 Last post by: ianbeale |
![]() |
Omnia Clock problem with version DFHJ6 | 0 | griz87 | 71 | Yesterday, 08:50 Last post by: griz87 |
![]() |
Automatically update clock Prompted me first time I initialised the phone but never since |
0 | tammam | 40 | Yesterday, 10:47 Last post by: tammam |
|
Lo-Fi Version | Time is now: 2nd December 2008 - 09:08 |
Please visit our 'Plus Partners' - these companies support MoDaCo through 'MoDaCo Plus' - Click Here for more details!
ActiveKitten |
Aiko Solutions |
Ateksoft |
Binaryfish |
Conduits |
DeveloperOne |
eSoft Interactive |
FTouchSL |
Inesoft |
Lingvosoft |
monocube |
Mykesoft |
OmegaOne |
Omnisoft |
Opera Software |
Resco |
SBSH |
Slipstream Solutions |
SPB Software House |
Splashdata |
Sprite Software |
Syncdata |
Teksoft |
VITO |
WebIS |
z4soft
Would your company like to become a 'Plus Partner'? Click Here to contact us!