The GW-Scripting list is a discussion list for information regarding the development and use of Window-Eyes scripts. Any subscriber of the GW-Scripting list has the ability to post on-topic messages.
From:
martin websterSubject:
RE: A coppy of my scriptDate:
Sat, Jan 30, 2010 10:39:39 amHi,
Try the following code:
begin VBscript
' launch google using gwToolKit shared objects
clientinformation.scriptversion= "1.0"
clientinformation.scriptdescription= "This script launches the google search engine with a press of a key."
dim myHotkey
Set myHotkey = Keyboard.RegisterHotkey("Control-Windows-shift-g" , "LaunchUrl")
Function LaunchUrl()
speak "I'm launching google! yay!"
SharedObjects("com.GWMicro.GWToolkit.LaunchUrl")("www.google.com";)
End Function
Hope this helps.
Martin Webster.
--- On Sat, 1/30/10, Tylers Scripting wrote:
Try the following code:
begin VBscript
' launch google using gwToolKit shared objects
clientinformation.scriptversion= "1.0"
clientinformation.scriptdescription= "This script launches the google search engine with a press of a key."
dim myHotkey
Set myHotkey = Keyboard.RegisterHotkey("Control-Windows-shift-g" , "LaunchUrl")
Function LaunchUrl()
speak "I'm launching google! yay!"
SharedObjects("com.GWMicro.GWToolkit.LaunchUrl")("www.google.com";)
End Function
Hope this helps.
Martin Webster.
--- On Sat, 1/30/10, Tylers Scripting wrote:
From: Tylers Scripting
Subject: RE: A coppy of my script
To: gw-scripting@gwmicro.com
Date: Saturday, January 30, 2010, 3:09 AM
Chip,
Its a smaller one.
That, is the whole deal.
Tyler
----- Original Message -----
From: "Chip Orange"
To:
Date: Friday, Jan 29, 2010 19:58:49
Subject: RE: A coppy of my script
>
>
> Tiler,
>
> this does not appear to be the entire script.
>
> Chip
>
>
> -----Original Message-----
> From: Tyler Juranek [mailto:tylersscripting@gmail.com]
> Sent: Friday, January 29, 2010 5:28 PM
> To: gw-scripting@gwmicro.com
> Subject: A coppy of my script
>
> Hey guys,
> Here is a copy of the script I'm launching the url
with.
> I made some changes, but it didn't work.
> So here it is.
> clientinformation.scriptversion= "1.0"
> clientinformation.scriptdescription= "This script
launches the google search
> engine with a press of a key."
> dim myHotkey : Set myHotkey > > Keyboard.RegisterHotkey("Control-Windows-shift-g" ,
"LaunchUrl") Function
> LaunchUrl (were speak "I'm launching google! yay!"
> Queue "S_LaunchUrl"
> sUrl = "http://www.google.com";
> End Function




