Please Log In or Register - it's FREE!

 
Reply to this topicStart new topic
 Speaking Clock
csc12345678
post Feb 25 2008, 15:21
Post #1


Regular
Group Icon

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
Go to the top of the page
 
+Quote Post
gpcarreon (MVP)
post Mar 8 2008, 00:13
Post #2


RN, MS MVP-MD
Group Icon

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)
Attached File  SpeakingClock.zip ( 96.11K ) Number of downloads: 55


3. 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. cool.gif


--------------------
Jakult everyday, everyday OK!
Go to the top of the page
 
+Quote Post
Jacobus
post Mar 8 2008, 03:59
Post #3


Newbie
Group Icon

Group: Posters
Posts: 37
Joined: 13th August 2003
Member No.: 12,861



QUOTE(gpcarreon (MVP) @ Mar 8 2008, 00:13) *
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)
Attached File  SpeakingClock.zip ( 96.11K ) Number of downloads: 55


3. 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. cool.gif


Could you pl. make 'beep' rather than speaking. I prefer to have like what Casio watch has :-)
Go to the top of the page
 
+Quote Post
gpcarreon (MVP)
post Mar 9 2008, 04:49
Post #4


RN, MS MVP-MD
Group Icon

Group: Moderator Team
Posts: 4,525
Joined: 7th August 2003
From: Legazpi, Philippines
Member No.: 12,251

Device(s): ASUS P525



QUOTE(Jacobus @ Mar 8 2008, 11:59) *
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' ?
Attached File  RecEnd.wav ( 2.73K ) Number of downloads: 50


For 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!
Go to the top of the page
 
+Quote Post
csc12345678
post Mar 30 2008, 15:52
Post #5


Regular
Group Icon

Group: Posters
Posts: 127
Joined: 27th April 2006
Member No.: 187,358

Device(s): Dell X50, Dopod 585



The code works. Thanks very much !

QUOTE(gpcarreon (MVP) @ Mar 8 2008, 08:13) *
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)
Attached File  SpeakingClock.zip ( 96.11K ) Number of downloads: 55


3. 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. cool.gif

Go to the top of the page
 
+Quote Post
csc12345678
post Mar 30 2008, 16:04
Post #6


Regular
Group Icon

Group: Posters
Posts: 127
Joined: 27th April 2006
Member No.: 187,358

Device(s): Dell X50, Dopod 585



After I wrote this, it failed to set the notification. I think it's because it's 2359, just going to midnight. After that, it's running fine again.

QUOTE(csc12345678 @ Mar 30 2008, 23:52) *
The code works. Thanks very much !

Go to the top of the page
 
+Quote Post
csc12345678
post Apr 1 2008, 14:16
Post #7


Regular
Group Icon

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.

QUOTE(csc12345678 @ Mar 30 2008, 23:52) *
The code works. Thanks very much !

Go to the top of the page
 
+Quote Post
SLatkisSrB
post Apr 29 2008, 04:00
Post #8


Newbie
Group Icon

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
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

Similar Topics

  Topic Replies Topic Starter Views Last Action
No New Posts Unlock screen clock??
0 miplacedhatred 544 18th February 2008 - 06:41
Last post by: miplacedhatred
No New Posts Digital clock with seconds on HOME screen
1 wilson1914 1,225 10th July 2008 - 00:55
Last post by: NunoLuz
No New Posts Anyone else experiencing time/clock problems since BST came in?
1 mjt2810 828 4th April 2008 - 17:41
Last post by: Laser_iCE
No New Posts Alarm clock bug
1 ninjaap 1,013 17th April 2008 - 16:48
Last post by: Kieren
No New Posts Topic has attachments[Freeware] Diamond clock and weather fully animated (flash today plugin)
0 twolf 1,033 29th June 2008 - 08:35
Last post by: twolf

1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 


RSS hit counter 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!