Speaking Clock |
![]() ![]() |
Speaking Clock |
Feb 25 2008, 15:21
Post
#1
|
|||
|
Regular Group: Posters Posts: 127 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,525 Joined: 7th August 2003 From: Legazpi, Philippines Member No.: 12,251 Device(s): ASUS P525 |
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: 553. 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: 553. 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,525 Joined: 7th August 2003 From: Legazpi, Philippines Member No.: 12,251 Device(s): ASUS P525 |
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: 50For 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: 127 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: 553. 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: 127 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: 127 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 | |
|---|---|---|---|---|---|
![]() |
Unlock screen clock?? | 0 | miplacedhatred | 544 | 18th February 2008 - 06:41 Last post by: miplacedhatred |
![]() |
Digital clock with seconds on HOME screen | 1 | wilson1914 | 1,225 | 10th July 2008 - 00:55 Last post by: NunoLuz |
![]() |
Anyone else experiencing time/clock problems since BST came in? | 1 | mjt2810 | 828 | 4th April 2008 - 17:41 Last post by: Laser_iCE |
![]() |
Alarm clock bug | 1 | ninjaap | 1,013 | 17th April 2008 - 16:48 Last post by: Kieren |
![]() |
|
0 | twolf | 1,033 | 29th June 2008 - 08:35 Last post by: twolf |
|
Lo-Fi Version | Time is now: 19th July 2008 - 17:26 |
Please visit our 'Plus Partners' - these companies support MoDaCo through 'MoDaCo Plus' - Click Here for more details!
VITO Technology | Slipstream Solutions | Aiko Solutions | PDAMill | Inesoft | SBSH | LingvoSoft | Ruttensoft | Astraware | MadBeetle | Sprite Software
Opera | Westtek | TetraEdge | Z4Soft | KBM Systems | Conduits | Mini Lyrics Magic | Proporta | Semsons | SyncData | Active Kitten | Binaryfish | Textr
SPB Software House | Omega One | OmniSoft | Resco | eSoft Interactive | TenGo | ATEKsoft | imei-check | GpsGate | SplashData | DeveloperOne | monocube
WebIS, home of Pocket Informant, FlexMail and Note2Self
Would your company like to become a 'Plus Partner'? Click Here to contact us!