Re: Tweeking the time script?

2013-05-09 Thread Alex Hall
To use it, open Apple Script Editor, paste the script, and then compile it (the 
option is in the menus, but I want to say it's cmd-k). You should be prompted 
for a place to save your script; pick a spot, as long as you know where it is, 
but your scripts folder (~/library/scripts, I think) is the easiest since vo 
will default there.

Now open the vo utility and select commanders. Choose the keyboard commander 
tab, then the speak date and time item, and pick the script you saved instead 
of the one that is set by default. It has been a long while since I did any of 
this, as you can tell, so some of my steps may be off. Still, you should be 
able to get it, and if you have problems, let the list know and someone on here 
can help, or I can do the process myself so i can give more exact instructions.

As for seconds, yes, that's possible. The current date variable has 
everything about the date and time, so maybe something like:
set currentTime to (currentDate's hours)  :  (currentDate's minutes)
 (currentDate's date string)

On May 8, 2013, at 5:28 PM, Traci our4p...@gmail.com wrote:

 Alex, thank you for this however, now this is how voiceover reads out the 
 time.
 
 2hours: 22minutes: 32seconds PM, Wednesday, May 8, 2013
 
 Could it be because I'm using Samantha compact as my default voice?
 
 Lol, kooky there, I just answered my own question. I switched to Alex and he 
 spoke it correctly.
 
 Would it be an easy tweak to omit the seconds from the time?
 
 Thanks,
 Traci
 On May 8, 2013, at 12:52 PM, Alex Hall mehg...@gmail.com wrote:
 
 Try this script, which also uses vo's settings instead of the system voice:
 
 (* 
  Speaks the  date and time of day
  
  Copyright 2008 Apple Inc. All rights reserved.
  
  You may incorporate this Apple sample code into your program(s) without
  restriction.  This Apple sample code has been provided AS IS and the
  responsibility for its operation is yours.  You are not permitted to
  redistribute this Apple sample code as Apple sample code after having
  made changes.  If you're going to redistribute the code, we require
  that you make it clear that the code was descended from Apple sample
  code, but that you've made changes.
 ALEX: No problem, Apple. I've made changes, specifically switching up the 
 order of the spoken information.
  *)
 
 on isVoiceOverRunning()
  set isRunning to false
  tell application System Events
  set isRunning to (name of processes) contains VoiceOver
  end tell
  return isRunning
 end isVoiceOverRunning
 
 on isVoiceOverRunningWithAppleScript()
  if isVoiceOverRunning() then
  set isRunningWithAppleScript to true
  
  -- is AppleScript enabled on VoiceOver --
  tell application VoiceOver
  try
  set x to bounds of vo cursor
  on error
  set isRunningWithAppleScript to false
  end try
  end tell
  return isRunningWithAppleScript
  end if
  return false
 end isVoiceOverRunningWithAppleScript
 
 set currentDate to current date
 set currentTime to (currentDate's time string)  ,   (currentDate's date 
 string)
 
 if isVoiceOverRunningWithAppleScript() then
  tell application VoiceOver
  output currentTime
  end tell
 else
  say currentTime
  delay 2
 end if
 
 There you go, see if that will work...
 On May 8, 2013, at 2:28 PM, Traci our4p...@gmail.com wrote:
 
 Hi all, is there a way to have voiceover reverse the order it announces the 
 time?  Time before date?  The current way sounds odd.
 
 May 8, 11:26 AM
 
 It almost sounds like it is saying May 8th 2011 26 AM.
 
 Any suggestions?
 
 Traci
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to macvisionaries+unsubscr...@googlegroups.com.
 To post to this group, send email to macvisionaries@googlegroups.com.
 Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.
 
 
 
 
 
 Have a great day,
 Alex (msg sent from Mac Mini)
 mehg...@gmail.com
 
 
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to macvisionaries+unsubscr...@googlegroups.com.
 To post to this group, send email to macvisionaries@googlegroups.com.
 Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.
  
  
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to 

Re: Tweeking the time script?

2013-05-09 Thread Agent086b
Hi,
does this script say time in 24 hour format or 12 hour? I would like to have 
the time in 24 hour.
Thanks for any advice.
Max.

On 10/05/2013, at 7:11 AM, Alex Hall mehg...@gmail.com wrote:

 To use it, open Apple Script Editor, paste the script, and then compile it 
 (the option is in the menus, but I want to say it's cmd-k). You should be 
 prompted for a place to save your script; pick a spot, as long as you know 
 where it is, but your scripts folder (~/library/scripts, I think) is the 
 easiest since vo will default there.
 
 Now open the vo utility and select commanders. Choose the keyboard commander 
 tab, then the speak date and time item, and pick the script you saved instead 
 of the one that is set by default. It has been a long while since I did any 
 of this, as you can tell, so some of my steps may be off. Still, you should 
 be able to get it, and if you have problems, let the list know and someone on 
 here can help, or I can do the process myself so i can give more exact 
 instructions.
 
 As for seconds, yes, that's possible. The current date variable has 
 everything about the date and time, so maybe something like:
 set currentTime to (currentDate's hours)  :  (currentDate's minutes)   
   (currentDate's date string)
 
 On May 8, 2013, at 5:28 PM, Traci our4p...@gmail.com wrote:
 
 Alex, thank you for this however, now this is how voiceover reads out the 
 time.
 
 2hours: 22minutes: 32seconds PM, Wednesday, May 8, 2013
 
 Could it be because I'm using Samantha compact as my default voice?
 
 Lol, kooky there, I just answered my own question. I switched to Alex and he 
 spoke it correctly.
 
 Would it be an easy tweak to omit the seconds from the time?
 
 Thanks,
 Traci
 On May 8, 2013, at 12:52 PM, Alex Hall mehg...@gmail.com wrote:
 
 Try this script, which also uses vo's settings instead of the system voice:
 
 (* 
  Speaks the  date and time of day
  
  Copyright 2008 Apple Inc. All rights reserved.
  
  You may incorporate this Apple sample code into your program(s) without
  restriction.  This Apple sample code has been provided AS IS and the
  responsibility for its operation is yours.  You are not permitted to
  redistribute this Apple sample code as Apple sample code after having
  made changes.  If you're going to redistribute the code, we require
  that you make it clear that the code was descended from Apple sample
  code, but that you've made changes.
 ALEX: No problem, Apple. I've made changes, specifically switching up the 
 order of the spoken information.
  *)
 
 on isVoiceOverRunning()
 set isRunning to false
 tell application System Events
 set isRunning to (name of processes) contains VoiceOver
 end tell
 return isRunning
 end isVoiceOverRunning
 
 on isVoiceOverRunningWithAppleScript()
 if isVoiceOverRunning() then
 set isRunningWithAppleScript to true
 
 -- is AppleScript enabled on VoiceOver --
 tell application VoiceOver
 try
 set x to bounds of vo cursor
 on error
 set isRunningWithAppleScript to false
 end try
 end tell
 return isRunningWithAppleScript
 end if
 return false
 end isVoiceOverRunningWithAppleScript
 
 set currentDate to current date
 set currentTime to (currentDate's time string)  ,   (currentDate's date 
 string)
 
 if isVoiceOverRunningWithAppleScript() then
 tell application VoiceOver
 output currentTime
 end tell
 else
 say currentTime
 delay 2
 end if
 
 There you go, see if that will work...
 On May 8, 2013, at 2:28 PM, Traci our4p...@gmail.com wrote:
 
 Hi all, is there a way to have voiceover reverse the order it announces 
 the time?  Time before date?  The current way sounds odd.
 
 May 8, 11:26 AM
 
 It almost sounds like it is saying May 8th 2011 26 AM.
 
 Any suggestions?
 
 Traci
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to macvisionaries+unsubscr...@googlegroups.com.
 To post to this group, send email to macvisionaries@googlegroups.com.
 Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.
 
 
 
 
 
 Have a great day,
 Alex (msg sent from Mac Mini)
 mehg...@gmail.com
 
 
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to macvisionaries+unsubscr...@googlegroups.com.
 To post to this group, send email to macvisionaries@googlegroups.com.
 Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.
  
  
 
 
 -- 
 You received this 

Re: Tweeking the time script?

2013-05-09 Thread Alex Hall
Currently it uses 12-hour format, but I'm sure you could get 24-hour if you 
wanted. I'd like the change as well, but don't use the script very often so 
never looked into it. The key is the original time script, which manages this. 
As I think about it, I seem to think the current date's hours is in 24-hour 
format, so the tweak I gave in my last post would be 24-hour. If you wanted 
12-hour there, you'd have to use the subtract 12 if over 12 if statements the 
original script (the one that vo uses by default) uses.
On May 9, 2013, at 5:30 PM, Agent086b agent0...@bigpond.com wrote:

 Hi,
 does this script say time in 24 hour format or 12 hour? I would like to have 
 the time in 24 hour.
 Thanks for any advice.
 Max.
 
 On 10/05/2013, at 7:11 AM, Alex Hall mehg...@gmail.com wrote:
 
 To use it, open Apple Script Editor, paste the script, and then compile it 
 (the option is in the menus, but I want to say it's cmd-k). You should be 
 prompted for a place to save your script; pick a spot, as long as you know 
 where it is, but your scripts folder (~/library/scripts, I think) is the 
 easiest since vo will default there.
 
 Now open the vo utility and select commanders. Choose the keyboard commander 
 tab, then the speak date and time item, and pick the script you saved 
 instead of the one that is set by default. It has been a long while since I 
 did any of this, as you can tell, so some of my steps may be off. Still, you 
 should be able to get it, and if you have problems, let the list know and 
 someone on here can help, or I can do the process myself so i can give more 
 exact instructions.
 
 As for seconds, yes, that's possible. The current date variable has 
 everything about the date and time, so maybe something like:
 set currentTime to (currentDate's hours)  :  (currentDate's minutes)   
   (currentDate's date string)
 
 On May 8, 2013, at 5:28 PM, Traci our4p...@gmail.com wrote:
 
 Alex, thank you for this however, now this is how voiceover reads out the 
 time.
 
 2hours: 22minutes: 32seconds PM, Wednesday, May 8, 2013
 
 Could it be because I'm using Samantha compact as my default voice?
 
 Lol, kooky there, I just answered my own question. I switched to Alex and 
 he spoke it correctly.
 
 Would it be an easy tweak to omit the seconds from the time?
 
 Thanks,
 Traci
 On May 8, 2013, at 12:52 PM, Alex Hall mehg...@gmail.com wrote:
 
 Try this script, which also uses vo's settings instead of the system voice:
 
 (* 
  Speaks the  date and time of day
  
  Copyright 2008 Apple Inc. All rights reserved.
  
  You may incorporate this Apple sample code into your program(s) without
  restriction.  This Apple sample code has been provided AS IS and the
  responsibility for its operation is yours.  You are not permitted to
  redistribute this Apple sample code as Apple sample code after having
  made changes.  If you're going to redistribute the code, we require
  that you make it clear that the code was descended from Apple sample
  code, but that you've made changes.
 ALEX: No problem, Apple. I've made changes, specifically switching up the 
 order of the spoken information.
  *)
 
 on isVoiceOverRunning()
set isRunning to false
tell application System Events
set isRunning to (name of processes) contains VoiceOver
end tell
return isRunning
 end isVoiceOverRunning
 
 on isVoiceOverRunningWithAppleScript()
if isVoiceOverRunning() then
set isRunningWithAppleScript to true

-- is AppleScript enabled on VoiceOver --
tell application VoiceOver
try
set x to bounds of vo cursor
on error
set isRunningWithAppleScript to false
end try
end tell
return isRunningWithAppleScript
end if
return false
 end isVoiceOverRunningWithAppleScript
 
 set currentDate to current date
 set currentTime to (currentDate's time string)  ,   (currentDate's 
 date string)
 
 if isVoiceOverRunningWithAppleScript() then
tell application VoiceOver
output currentTime
end tell
 else
say currentTime
delay 2
 end if
 
 There you go, see if that will work...
 On May 8, 2013, at 2:28 PM, Traci our4p...@gmail.com wrote:
 
 Hi all, is there a way to have voiceover reverse the order it announces 
 the time?  Time before date?  The current way sounds odd.
 
 May 8, 11:26 AM
 
 It almost sounds like it is saying May 8th 2011 26 AM.
 
 Any suggestions?
 
 Traci
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to macvisionaries+unsubscr...@googlegroups.com.
 To post to this group, send email to macvisionaries@googlegroups.com.
 Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
 For more options, visit https://groups.google.com/groups

Tweeking the time script?

2013-05-08 Thread Traci
Hi all, is there a way to have voiceover reverse the order it announces the 
time?  Time before date?  The current way sounds odd.

May 8, 11:26 AM

It almost sounds like it is saying May 8th 2011 26 AM.

Any suggestions?

Traci

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Tweeking the time script?

2013-05-08 Thread Alex Hall
Try this script, which also uses vo's settings instead of the system voice:

(* 
 Speaks the  date and time of day
 
 Copyright 2008 Apple Inc. All rights reserved.
 
 You may incorporate this Apple sample code into your program(s) without
 restriction.  This Apple sample code has been provided AS IS and the
 responsibility for its operation is yours.  You are not permitted to
 redistribute this Apple sample code as Apple sample code after having
 made changes.  If you're going to redistribute the code, we require
 that you make it clear that the code was descended from Apple sample
 code, but that you've made changes.
ALEX: No problem, Apple. I've made changes, specifically switching up the order 
of the spoken information.
 *)

on isVoiceOverRunning()
set isRunning to false
tell application System Events
set isRunning to (name of processes) contains VoiceOver
end tell
return isRunning
end isVoiceOverRunning

on isVoiceOverRunningWithAppleScript()
if isVoiceOverRunning() then
set isRunningWithAppleScript to true

-- is AppleScript enabled on VoiceOver --
tell application VoiceOver
try
set x to bounds of vo cursor
on error
set isRunningWithAppleScript to false
end try
end tell
return isRunningWithAppleScript
end if
return false
end isVoiceOverRunningWithAppleScript

set currentDate to current date
set currentTime to (currentDate's time string)  ,   (currentDate's date 
string)

if isVoiceOverRunningWithAppleScript() then
tell application VoiceOver
output currentTime
end tell
else
say currentTime
delay 2
end if

There you go, see if that will work...
On May 8, 2013, at 2:28 PM, Traci our4p...@gmail.com wrote:

 Hi all, is there a way to have voiceover reverse the order it announces the 
 time?  Time before date?  The current way sounds odd.
 
 May 8, 11:26 AM
 
 It almost sounds like it is saying May 8th 2011 26 AM.
 
 Any suggestions?
 
 Traci
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to macvisionaries+unsubscr...@googlegroups.com.
 To post to this group, send email to macvisionaries@googlegroups.com.
 Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.
 
 



Have a great day,
Alex (msg sent from Mac Mini)
mehg...@gmail.com



-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Tweeking the time script?

2013-05-08 Thread Matt Dierckens
Hi alex.
How do I go about applying this script? I have no idea how the apple script 
editor. Thanks.
Matt
Sent from my mac
Twitter: matt692

On 2013-05-08, at 3:52 PM, Alex Hall mehg...@gmail.com wrote:

 Try this script, which also uses vo's settings instead of the system voice:
 
 (* 
  Speaks the  date and time of day
  
  Copyright 2008 Apple Inc. All rights reserved.
  
  You may incorporate this Apple sample code into your program(s) without
  restriction.  This Apple sample code has been provided AS IS and the
  responsibility for its operation is yours.  You are not permitted to
  redistribute this Apple sample code as Apple sample code after having
  made changes.  If you're going to redistribute the code, we require
  that you make it clear that the code was descended from Apple sample
  code, but that you've made changes.
 ALEX: No problem, Apple. I've made changes, specifically switching up the 
 order of the spoken information.
  *)
 
 on isVoiceOverRunning()
   set isRunning to false
   tell application System Events
   set isRunning to (name of processes) contains VoiceOver
   end tell
   return isRunning
 end isVoiceOverRunning
 
 on isVoiceOverRunningWithAppleScript()
   if isVoiceOverRunning() then
   set isRunningWithAppleScript to true
   
   -- is AppleScript enabled on VoiceOver --
   tell application VoiceOver
   try
   set x to bounds of vo cursor
   on error
   set isRunningWithAppleScript to false
   end try
   end tell
   return isRunningWithAppleScript
   end if
   return false
 end isVoiceOverRunningWithAppleScript
 
 set currentDate to current date
 set currentTime to (currentDate's time string)  ,   (currentDate's date 
 string)
 
 if isVoiceOverRunningWithAppleScript() then
   tell application VoiceOver
   output currentTime
   end tell
 else
   say currentTime
   delay 2
 end if
 
 There you go, see if that will work...
 On May 8, 2013, at 2:28 PM, Traci our4p...@gmail.com wrote:
 
 Hi all, is there a way to have voiceover reverse the order it announces the 
 time?  Time before date?  The current way sounds odd.
 
 May 8, 11:26 AM
 
 It almost sounds like it is saying May 8th 2011 26 AM.
 
 Any suggestions?
 
 Traci
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to macvisionaries+unsubscr...@googlegroups.com.
 To post to this group, send email to macvisionaries@googlegroups.com.
 Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.
 
 
 
 
 
 Have a great day,
 Alex (msg sent from Mac Mini)
 mehg...@gmail.com
 
 
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to macvisionaries+unsubscr...@googlegroups.com.
 To post to this group, send email to macvisionaries@googlegroups.com.
 Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.
  
  

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Tweeking the time script?

2013-05-08 Thread Traci
Alex, thank you for this however, now this is how voiceover reads out the time.

2hours: 22minutes: 32seconds PM, Wednesday, May 8, 2013

Could it be because I'm using Samantha compact as my default voice?

Lol, kooky there, I just answered my own question. I switched to Alex and he 
spoke it correctly.

Would it be an easy tweak to omit the seconds from the time?

Thanks,
Traci
On May 8, 2013, at 12:52 PM, Alex Hall mehg...@gmail.com wrote:

 Try this script, which also uses vo's settings instead of the system voice:
 
 (* 
  Speaks the  date and time of day
  
  Copyright 2008 Apple Inc. All rights reserved.
  
  You may incorporate this Apple sample code into your program(s) without
  restriction.  This Apple sample code has been provided AS IS and the
  responsibility for its operation is yours.  You are not permitted to
  redistribute this Apple sample code as Apple sample code after having
  made changes.  If you're going to redistribute the code, we require
  that you make it clear that the code was descended from Apple sample
  code, but that you've made changes.
 ALEX: No problem, Apple. I've made changes, specifically switching up the 
 order of the spoken information.
  *)
 
 on isVoiceOverRunning()
   set isRunning to false
   tell application System Events
   set isRunning to (name of processes) contains VoiceOver
   end tell
   return isRunning
 end isVoiceOverRunning
 
 on isVoiceOverRunningWithAppleScript()
   if isVoiceOverRunning() then
   set isRunningWithAppleScript to true
   
   -- is AppleScript enabled on VoiceOver --
   tell application VoiceOver
   try
   set x to bounds of vo cursor
   on error
   set isRunningWithAppleScript to false
   end try
   end tell
   return isRunningWithAppleScript
   end if
   return false
 end isVoiceOverRunningWithAppleScript
 
 set currentDate to current date
 set currentTime to (currentDate's time string)  ,   (currentDate's date 
 string)
 
 if isVoiceOverRunningWithAppleScript() then
   tell application VoiceOver
   output currentTime
   end tell
 else
   say currentTime
   delay 2
 end if
 
 There you go, see if that will work...
 On May 8, 2013, at 2:28 PM, Traci our4p...@gmail.com wrote:
 
 Hi all, is there a way to have voiceover reverse the order it announces the 
 time?  Time before date?  The current way sounds odd.
 
 May 8, 11:26 AM
 
 It almost sounds like it is saying May 8th 2011 26 AM.
 
 Any suggestions?
 
 Traci
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to macvisionaries+unsubscr...@googlegroups.com.
 To post to this group, send email to macvisionaries@googlegroups.com.
 Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.
 
 
 
 
 
 Have a great day,
 Alex (msg sent from Mac Mini)
 mehg...@gmail.com
 
 
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to macvisionaries+unsubscr...@googlegroups.com.
 To post to this group, send email to macvisionaries@googlegroups.com.
 Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.
  
  

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: time script

2011-08-24 Thread Ricardo Walker
I've noticed this too.  But it seems more the case in 10.71 than 10.7.

Ricardo Walker
rwalker...@gmail.com
Twitter  Skype: rwalker296
www.mobileaccess.org

On Aug 24, 2011, at 1:47 AM, Shen wrote:

 I have also noticed a lag in Lion as well. When I was using Snow Leopard, 
 VoiceOver responds instantly when I press the keyboard commander for the time 
 script. Now in Lion, I've experienced at least a 1.5 second lag.
 And yes, I have checked allow VoiceOver to be controlled by Apple Script.
 
 
 On Aug 23, 2011, at 6:22 AM, craig J Dunlop wrote:
 
 I git that too. and then it only reads the 12 hour time even though my 
 macbook is set for 24 hour.
 
 On Aug 22, 2011, at 9:26 PM, Candie Stiles wrote:
 
 Yes I've experienced the very same thing. Some times I need to press the 
 key combination twice before getting a response.
 On Aug 22, 2011, at 7:24 PM, james Walton wrote:
 
 hi everyone,
 who here has problems with they do the time script, it takes at least like 
 2 or 3 seconds to even speak the time and date?
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-24 Thread Shen
I have the opposite from you. I've noticed a quicker response in
10.7.1 than 10.7.
Having read the thread concerning the time script, it gave me
motivation to go and do what I've always wanted to do. I've always
wanted to hear the time before the date. So I tweaked the script to
speak the time first.
Maybe it's just my mind playing tricks, but I think the script
responds even more quickly now.
Eventually, I might decide to separate the scripts so 1 command reads
the time and 1 reads the date.




On 8/24/11, Ricardo Walker rwalker...@gmail.com wrote:
 I've noticed this too.  But it seems more the case in 10.71 than 10.7.

 Ricardo Walker
 rwalker...@gmail.com
 Twitter  Skype: rwalker296
 www.mobileaccess.org

 On Aug 24, 2011, at 1:47 AM, Shen wrote:

 I have also noticed a lag in Lion as well. When I was using Snow Leopard,
 VoiceOver responds instantly when I press the keyboard commander for the
 time script. Now in Lion, I've experienced at least a 1.5 second lag.
 And yes, I have checked allow VoiceOver to be controlled by Apple Script.


 On Aug 23, 2011, at 6:22 AM, craig J Dunlop wrote:

 I git that too. and then it only reads the 12 hour time even though my
 macbook is set for 24 hour.

 On Aug 22, 2011, at 9:26 PM, Candie Stiles wrote:

 Yes I've experienced the very same thing. Some times I need to press the
 key combination twice before getting a response.
 On Aug 22, 2011, at 7:24 PM, james Walton wrote:

 hi everyone,
 who here has problems with they do the time script, it takes at least
 like 2 or 3 seconds to even speak the time and date?

 --
 You received this message because you are subscribed to the Google
 Groups MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/macvisionaries?hl=en.


 --
 You received this message because you are subscribed to the Google
 Groups MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/macvisionaries?hl=en.


 --
 You received this message because you are subscribed to the Google Groups
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/macvisionaries?hl=en.


 --
 You received this message because you are subscribed to the Google Groups
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/macvisionaries?hl=en.


 --
 You received this message because you are subscribed to the Google Groups
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/macvisionaries?hl=en.




-- 
Shen
goalb...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-23 Thread craig J Dunlop
I git that too. and then it only reads the 12 hour time even though my macbook 
is set for 24 hour.

On Aug 22, 2011, at 9:26 PM, Candie Stiles wrote:

 Yes I've experienced the very same thing. Some times I need to press the key 
 combination twice before getting a response.
 On Aug 22, 2011, at 7:24 PM, james Walton wrote:
 
 hi everyone,
 who here has problems with they do the time script, it takes at least like 2 
 or 3 seconds to even speak the time and date?
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-23 Thread Shen
I have also noticed a lag in Lion as well. When I was using Snow Leopard, 
VoiceOver responds instantly when I press the keyboard commander for the time 
script. Now in Lion, I've experienced at least a 1.5 second lag.
And yes, I have checked allow VoiceOver to be controlled by Apple Script.


On Aug 23, 2011, at 6:22 AM, craig J Dunlop wrote:

 I git that too. and then it only reads the 12 hour time even though my 
 macbook is set for 24 hour.
 
 On Aug 22, 2011, at 9:26 PM, Candie Stiles wrote:
 
 Yes I've experienced the very same thing. Some times I need to press the key 
 combination twice before getting a response.
 On Aug 22, 2011, at 7:24 PM, james Walton wrote:
 
 hi everyone,
 who here has problems with they do the time script, it takes at least like 
 2 or 3 seconds to even speak the time and date?
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread Candie Stiles
Yes I've experienced the very same thing. Some times I need to press the key 
combination twice before getting a response.
On Aug 22, 2011, at 7:24 PM, james Walton wrote:

 hi everyone,
 who here has problems with they do the time script, it takes at least like 2 
 or 3 seconds to even speak the time and date?
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread james Walton
ya, that is a strange issue!
i don't know if it is trying to find the file, or what because when i press the 
command, i hear the drive reading.
like that time i just did it it took 4 seconds to even do it!

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread Christopher-Mark Gilland
It's gonna nturally take that long, as my guess is, before it can speak it, 
it takes a moment to first query the screen and get the time needed to be 
spoken.  It's a two step at least, process.


Chris.

- Original Message - 
From: james Walton jmwalto...@gmail.com

To: mac visionaries macvisionaries@googlegroups.com
Sent: Monday, August 22, 2011 10:24 PM
Subject: time script



hi everyone,
who here has problems with they do the time script, it takes at least like 
2 or 3 seconds to even speak the time and date?


--
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.

To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.




--
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread james Walton
do you happen to know where this file is located, i would like to see the code 
of it.

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread Christopher-Mark Gilland

um... let me try to find it.

/Volumes/MacintoshHd/library/scripts/voiceover

Under there there is a file called Time of Day

I wonder if that's it.

Chris.

--
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread james Walton
most likely

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread Christopher-Mark Gilland
I don't know anything about Apple script, so if that's not it, let me know 
and I'll keep looking for it.


Chris.

- Original Message - 
From: james Walton jmwalto...@gmail.com

To: macvisionaries@googlegroups.com
Sent: Monday, August 22, 2011 10:51 PM
Subject: Re: time script



most likely

--
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.

To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.




--
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread james Walton
that was the file.
i opened it to see it but have not dug in to it yet.

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread james Walton
the file is locked, and i am tired, so i am going to just leave it alone for 
the night.
don't want to screw anything up!

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread Christopher-Mark Gilland

OK, awesome.  Glad that I could help.

Chris.

- Original Message - 
From: james Walton jmwalto...@gmail.com

To: macvisionaries@googlegroups.com
Sent: Monday, August 22, 2011 11:25 PM
Subject: Re: time script



that was the file.
i opened it to see it but have not dug in to it yet.

--
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.

To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.




--
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread Darcy Burnard
One thing you want to ensure is that you have the allow VoiceOver to be 
controlled with applescript checkbox to be checked.  This is in the general 
section of VoiceOver utility.  If this box is checked, the script will use 
VoiceOver to speak the time.  If it isn't, the script will use the say command 
to do it.  There still may be a bit of a pause if you haven't used the script 
in a while, but it does seem to be a bit faster if that box is checked.
Darcy

On 2011-08-22, at 9:24 PM, james Walton wrote:

 hi everyone,
 who here has problems with they do the time script, it takes at least like 2 
 or 3 seconds to even speak the time and date?
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 MacVisionaries group.
 To post to this group, send email to macvisionaries@googlegroups.com.
 To unsubscribe from this group, send email to 
 macvisionaries+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/macvisionaries?hl=en.
 

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread james Walton
really!
let me check that one out!

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Re: time script

2011-08-22 Thread james Walton
strange, it makes it faster now!
lets see where this one goes!

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.



Time Script

2010-03-04 Thread Jim Gatteys
Hi all again!
I meant to include the link where I found the alternative time script info.  It 
is:
http://devdaily.com/blog/post/mac-os-x/an-applescript-subroutine-that-returns-current-time-as-hours-mi
Jim

-
Find me on facebook or:
Skype: jimintexas
Yahoo or Aim/Ichat: jgatteys
Msn: jgatt...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
MacVisionaries group.
To post to this group, send email to macvisionar...@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.