Hello Norm,

--------------------------------------------------------------------------
1)  Hit Control+Shift+0 to launch the Script Manager with the default.jss
file loaded.
2)  Hit Control+L and hit the letter "S" to take you to the scripts that
begin with  that letter, then arrow down to highlight the "SaySystemTime()"
function and whack Enter.
3)  Arrow down to the line containing
          ";SayUsingVoice(VCTX_Message,SysGetDate(),OT_String)" and
remove the ";" from the beginning of the line.

If you want the Time and Date spoken with only a single press of the
Insert+F12, then hit Control+S to compile the modification, then Alt+F4 to
exit the Script Manager.

If, however,  you want only the time spoken with a single Insert+F12
keystroke, and both the date and time spoken only when you issue the
Insert+F12 keystroke twice rapidly, then replace the current SaySystemTime
script with the following steps:
1)  Arrow up to the current SaySystemTime script and hit Control+Delete,
then hit Control+S to compile.
2)  Cut and paste, or just type in, the following script to replace the
SaySystemTime script you just deleted.

;Thanks to Darrell Shandrow for the tip on the double-keystroke routine!
Script SaySystemTimeAndDate ()
if IsSameScript () then
;Did the keystroke get hit twice rapidly?  If so, announce date and time.
SayUsingVoice ( VCTX_MESSAGE, SysGetTime(), ot_string)
SayUsingVoice ( VCTX_MESSAGE, SysGetDate(), ot_string)
else
; if it was only hit once, just announce the time alone!
SayUsingVoice ( VCTX_MESSAGE, SysGetTime(), ot_string)
EndIf
EndScript

3)  While on a line within this particular script, hit Control+D to edit
it's properties.
4)  Tab to Synopsis and Description, and fill in those fields.
5)  Tab to "Assign keystroke" and hit Insert+F12.  If you get a warning
that this keystroke is already assigned, tab to Ok and whack Enter.
6)  Tab to Ok and whack Enter.
7)  Hit Control+S to compile with the new changes, then hit Alt+F4 to close
the Script Manager.
8)  Hit Insert+F12 twice rapidly, and if it doesn't give the date as well
as the time, then recycle JFW by unloading it from memory.  This will
make the new settings active.


----- Original Message -----
From: Norm <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, September 05, 1999 10:04 PM
Subject: Time & date scripts for jfw 3.3x


Hello all,
I think it was Dennis who wrote scripts for reading the date as well as the
time. I would like to know if we can change the script insert+ f12 pressed
twice quickly  that reads the time and date to just read the date. We
already have the ability to read the time with the old insert + f12 command.
Thank you for any help.
Regards
Norm.


-
Visit the jfw ml web page: http://jfw.cjb.net

-
Visit the jfw ml web page: http://jfw.cjb.net

Reply via email to