This is what mine looks like, so yep, guess it's looking for 'www.'

* Get word under mouse and take appropriate action
* Assign this to your left mouse button in Setup Mouse
* with the macro: Script 'example\script\click'
* Version: 4.0.2 19 Nov 98
* Get the data under the cursor which is delimeted by spaces
word = ScreenWord(Mouse(Get_X),Mouse(Get_Y),2,Mouse(Get_Page))
If Index(Field(word,"@",2),".") Then
   * Recognize an email address as it contains and "@" character and at
least
   * one full stop after the @ character
   Mail Send word, , , , , , 1, resp
Else If Left(word,5) = "http:" Or Left(word,4) = "www." Then
   * Recognise a Web page by the first few characters, and then just run
the word
        * as most Web Browsers will recognise the format and take
appropriate action
   Run word
Else
   * Enter the word under the cursor using standard delimeters
   Enter ScreenWord(Mouse(Get_X),Mouse(Get_Y),0,Mouse(Get_Page))
EndIf

-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Russ Watson
Sent: Thursday, July 09, 2009 10:30 AM
To: U2 Users List
Subject: Re: [U2] [U2-DC] Dynamic Connect - Launching Browser Apps

Mouse clicks are handled by \wIntSys\Script\click.wis

Russ 


_______________________________________________
U2-Users mailing list
[email protected]
http://listserver.u2ug.org/mailman/listinfo/u2-users

Reply via email to