[jawsscripts] Re: jawsscripts Digest V6 #249

  • From: Paul Bonarrigo <pjbonarrigo@xxxxxxxxx>
  • To: "jawsscripts@xxxxxxxxxxxxx" <jawsscripts@xxxxxxxxxxxxx>
  • Date: Mon, 19 Nov 2012 09:03:59 -0800 (PST)

Reed. CopySelectedTextToClipBoard is a Script.  You need to precede with 
PerformScript.

From: FreeLists Mailing List Manager <ecartis@xxxxxxxxxxxxx>
To: jawsscripts digest users <ecartis@xxxxxxxxxxxxx> 
Sent: Friday, November 16, 2012 11:12 PM
Subject: jawsscripts Digest V6 #249

jawsscripts Digest    Fri, 16 Nov 2012    Volume: 06  Issue: 249

In This Issue:
        [jawsscripts] Re: CopySelectedTextToClipboard and
        [jawsscripts] Re: CopySelectedTextToClipboard and AppendSele
        [jawsscripts] Issues when right clicking on a web page
        [jawsscripts] Re: CopySelectedTextToClipboard and
        [jawsscripts] Jaws script exchange
        [jawsscripts] Re: Issues when right clicking on a web page
        [jawsscripts] Re: Jaws script exchange
        [jawsscripts] swiching focus
        [jawsscripts] Re: Jaws script exchange

----------------------------------------------------------------------

From: "Bissett, Tom" <tom.bissett@xxxxxxx>
Date: Fri, 16 Nov 2012 09:40:31 -0500
Subject: [jawsscripts] Re: CopySelectedTextToClipboard and

Hi Reed,  I had provided two scripts one to copy to clipboard and the other to 
append to clipboard.  The append to clipboard is as follows:
script appendLineToClipBoard()
say("append to clipBoard",ot_status)
var
string CopyLine
let Copyline = getline()
AppendToClipboard (CopyLine, true)
EndScript

You need to assign a keystroke to the script to collect the information.  Then 
the control+v to paste the contents of the clipboard.
Tom Bisset
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx 
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Reed poynter
Sent: November 15, 2012 5:04 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: CopySelectedTextToClipboard and 
AppendSelectedTextToClipboard

Hi Tom,

As you know, your script works with CopyToClipboard.
When I change the CopyToClipboard to AppendToClipboard as below,  it doesn't 
seem to work.
When I run the script and then try to paste the contents of the clipboard with 
Control-V, nothing happens.
By the way, I want to be able to down-arrow through a text file and when I find 
a line that I like, I want to hit a hot key and append the line to the 
clipboard. I will later paste these collected lines into another text file.
The Script follows:  

Script AppendLineToClipBoard ()
say("copy to clipboard",ot_status)
var
string CopyLine
let Copyline = getline()
AppendToClipboard (copyline, 1)
EndScript

Reed
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Bissett, Tom
Sent: November-15-12 12:29 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: CopySelectedTextToClipboard and 
AppendSelectedTextToClipboard

Hi Reed,  I am not sure what you are doing,  I am confused why the 
selectnextline.
I have a script that does something similar.
script CopyLineToClipBoard()
say("copy to clipboard",ot_status)
var
string CopyLine
let Copyline = getline()
CopyToClipboard (copyline)
EndScript

OR

script appendLineToClipBoard()
say("append to clipBoard",ot_status)
var
string CopyLine
let Copyline = getline()
AppendToClipboard (CopyLine, true)
EndScript

Tom Bisset
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Reed poynter
Sent: November 15, 2012 3:08 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] CopySelectedTextToClipboard and 
AppendSelectedTextToClipboard

Hi Scripters,

I have created the script below.  I've successfully compiled it in Default.jss 
and Wordpad.jss.
When I run it via my assigned hot key, I receive a verble message that says,

"unknown function call to CopySelectedTextToClipboard" or "unknown function 
call to AppendSelectedTextToClipboard".
Any ideas?

Thanks,

Reed

Script SelectandCopyLineToClipboard ()

SelectNextLine ()
;AppendSelectedTextToClipboard ()
CopySelectedTextToClipboard ()  

EndScript

__________???

View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts

__________o?
View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts

__________???

View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts


------------------------------

From: "Reed poynter" <reed.poynter@xxxxxxxxx>
Subject: [jawsscripts] Re: CopySelectedTextToClipboard and AppendSelectedTextTo
Date: Fri, 16 Nov 2012 09:59:01 -0800

Hi Tom,

It doesn't work for me with Windows 7 and JAWS 14.
In wordpad, when I select a line, hit control+C, select another line, hit
Windows+insert+C, followed by Control+V, it works just fine.  But, when I
run the script and hit Control+V I get a blank line.
So, I'm scratching my head.

I'll have to put some clipboard testing into the script.
This was supposed to be just a little quickie script to save me some time.
Oh well, it happens.

Reed 

-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Bissett, Tom
Sent: November-16-12 6:41 AM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts    ] Re: CopySelectedTextToClipboard and
AppendSelectedTextToClipboard

Hi Reed,  I had provided two scripts one to copy to clipboard and the other
to append to clipboard.  The append to clipboard is as follows:
script appendLineToClipBoard()
say("append to clipBoard",ot_status)
var
string CopyLine
let Copyline = getline()
AppendToClipboard (CopyLine, true)
EndScript

You need to assign a keystroke to the script to collect the information.
Then the control+v to paste the contents of the clipboard.
Tom Bisset
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Reed poynter
Sent: November 15, 2012 5:04 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: CopySelectedTextToClipboard and
AppendSelectedTextToClipboard

Hi Tom,

As you know, your script works with CopyToClipboard.
When I change the CopyToClipboard to AppendToClipboard as below,  it doesn't
seem to work.
When I run the script and then try to paste the contents of the clipboard
with Control-V, nothing happens.
By the way, I want to be able to down-arrow through a text file and when I
find a line that I like, I want to hit a hot key and append the line to the
clipboard. I will later paste these collected lines into another text file.
The Script follows:  

Script AppendLineToClipBoard ()
say("copy to clipboard",ot_status)
var
string CopyLine
let Copyline = getline()
AppendToClipboard (copyline, 1)
EndScript

Reed
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Bissett, Tom
Sent: November-15-12 12:29 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: CopySelectedTextToClipboard and
AppendSelectedTextToClipboard

Hi Reed,  I am not sure what you are doing,  I am confused why the
selectnextline.
I have a script that does something similar.
script CopyLineToClipBoard()
say("copy to clipboard",ot_status)
var
string CopyLine
let Copyline = getline()
CopyToClipboard (copyline)
EndScript

OR

script appendLineToClipBoard()
say("append to clipBoard",ot_status)
var
string CopyLine
let Copyline = getline()
AppendToClipboard (CopyLine, true)
EndScript

Tom Bisset
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Reed poynter
Sent: November 15, 2012 3:08 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] CopySelectedTextToClipboard and
AppendSelectedTextToClipboard

Hi Scripters,

I have created the script below.  I've successfully compiled it in
Default.jss and Wordpad.jss.
When I run it via my assigned hot key, I receive a verble message that says,

"unknown function call to CopySelectedTextToClipboard" or "unknown function
call to AppendSelectedTextToClipboard".
Any ideas?

Thanks,

Reed

Script SelectandCopyLineToClipboard ()

SelectNextLine ()
;AppendSelectedTextToClipboard ()
CopySelectedTextToClipboard ()  

EndScript

__________???

View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts

__________o?
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts

__________???

View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts

__________o?
View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts


------------------------------

From: Sean Farrow <sean.farrow@xxxxxxxxxxxxxxxx>
Date: Fri, 16 Nov 2012 18:18:42 +0000
Subject: [jawsscripts] Issues when right clicking on a web page

Hi:
I'm currently working with a web-based cms (Umbraco fyi). This cms has a tree 
as part of it's ui. When a sighted user right clicks on a node in the tree, a 
context menu is displayed.
When I right click using route jaws to virtual and then numpad * or the 
application key/shift f10the standard ie/firefox context menu appears.
I could use hot spot clicker to ask the sighted person the place the mouse on 
areas of the screen but wondered whether any one else had any other ideas.
Cheers
Sean.

------------------------------

From: "Bissett, Tom" <tom.bissett@xxxxxxx>
Date: Fri, 16 Nov 2012 13:33:03 -0500
Subject: [jawsscripts] Re: CopySelectedTextToClipboard and

Try getting jaws to say what is in the string
script appendLineToClipBoard()
say("append to clipBoard",ot_status)
var
string CopyLine
let Copyline = getline()
say(CopyLine,ot_status)
AppendToClipboard (CopyLine, true)
EndScript

Tom Bisset

-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx 
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Reed poynter
Sent: November 16, 2012 12:59 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: CopySelectedTextToClipboard and 
AppendSelectedTextToClipboard

Hi Tom,

It doesn't work for me with Windows 7 and JAWS 14.
In wordpad, when I select a line, hit control+C, select another line, hit
Windows+insert+C, followed by Control+V, it works just fine.  But, when 
Windows+insert+I
run the script and hit Control+V I get a blank line.
So, I'm scratching my head.

I'll have to put some clipboard testing into the script.
This was supposed to be just a little quickie script to save me some time.
Oh well, it happens.

Reed 

-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Bissett, Tom
Sent: November-16-12 6:41 AM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts    ] Re: CopySelectedTextToClipboard and
AppendSelectedTextToClipboard

Hi Reed,  I had provided two scripts one to copy to clipboard and the other to 
append to clipboard.  The append to clipboard is as follows:
script appendLineToClipBoard()
say("append to clipBoard",ot_status)
var
string CopyLine
let Copyline = getline()
AppendToClipboard (CopyLine, true)
EndScript

You need to assign a keystroke to the script to collect the information.
Then the control+v to paste the contents of the clipboard.
Tom Bisset
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Reed poynter
Sent: November 15, 2012 5:04 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: CopySelectedTextToClipboard and 
AppendSelectedTextToClipboard

Hi Tom,

As you know, your script works with CopyToClipboard.
When I change the CopyToClipboard to AppendToClipboard as below,  it doesn't 
seem to work.
When I run the script and then try to paste the contents of the clipboard with 
Control-V, nothing happens.
By the way, I want to be able to down-arrow through a text file and when I find 
a line that I like, I want to hit a hot key and append the line to the 
clipboard. I will later paste these collected lines into another text file.
The Script follows:  

Script AppendLineToClipBoard ()
say("copy to clipboard",ot_status)
var
string CopyLine
let Copyline = getline()
AppendToClipboard (copyline, 1)
EndScript

Reed
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Bissett, Tom
Sent: November-15-12 12:29 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: CopySelectedTextToClipboard and 
AppendSelectedTextToClipboard

Hi Reed,  I am not sure what you are doing,  I am confused why the 
selectnextline.
I have a script that does something similar.
script CopyLineToClipBoard()
say("copy to clipboard",ot_status)
var
string CopyLine
let Copyline = getline()
CopyToClipboard (copyline)
EndScript

OR

script appendLineToClipBoard()
say("append to clipBoard",ot_status)
var
string CopyLine
let Copyline = getline()
AppendToClipboard (CopyLine, true)
EndScript

Tom Bisset
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Reed poynter
Sent: November 15, 2012 3:08 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] CopySelectedTextToClipboard and 
AppendSelectedTextToClipboard

Hi Scripters,

I have created the script below.  I've successfully compiled it in Default.jss 
and Wordpad.jss.
When I run it via my assigned hot key, I receive a verble message that says,

"unknown function call to CopySelectedTextToClipboard" or "unknown function 
call to AppendSelectedTextToClipboard".
Any ideas?

Thanks,

Reed

Script SelectandCopyLineToClipboard ()

SelectNextLine ()
;AppendSelectedTextToClipboard ()
CopySelectedTextToClipboard ()  

EndScript

__________???

View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts

__________o?
View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts

__________???

View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts

__________o?
View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts

__________???

View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts


------------------------------

From: "Brian Hartgen" <jaws@xxxxxxxxxxx>
Subject: [jawsscripts] Jaws script exchange
Date: Fri, 16 Nov 2012 21:05:30 -0000

Hi, particularly to Jamal


I am using jaws script exchange to package a number of freely available jaws
script packages. I am getting some reports that when people are trying to
install into jaws 14, the installer says that the jaws 14 folder could not
be found although I must say, I am using Windows7 64 bit with jaws 14, and I
haven't had that problem. Does anyone have any suggestions as to why this is
or Jamal, could you please fix it?



Thank you.



Brian






------------------------------

From: "Andy B." <sonfire11@xxxxxxxxx>
Subject: [jawsscripts] Re: Issues when right clicking on a web page
Date: Fri, 16 Nov 2012 16:38:48 -0500

Just by looking at the design, it seems to be inaccessable (the entire
application). Trying to add content is broke, and how to get things done is
confusing at best. The frames are not usable by jaws either. For example,
going to content and pressing the create new... button brings up a frame in
the dashboard for adding new content. I press ENTER on the website node in
question and press the OK button. Everything falls apart from there. Best
thing I could tell you is to change to another CMS, or tell the developers
to make it more accessible for screen readers. The program-l list might have
better ideas as well (since this is the wrong place to post this sort of
thing).



-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Sean Farrow
Sent: Friday, November 16, 2012 1:19 PM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Issues when right clicking on a web page

Hi:
I'm currently working with a web-based cms (Umbraco fyi). This cms has a
tree as part of it's ui. When a sighted user right clicks on a node in the
tree, a context menu is displayed.
When I right click using route jaws to virtual and then numpad * or the
application key/shift f10the standard ie/firefox context menu appears.
I could use hot spot clicker to ask the sighted person the place the mouse
on areas of the screen but wondered whether any one else had any other
ideas.
Cheers
Sean.
__________�

View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts



------------------------------

Date: Fri, 16 Nov 2012 21:10:03 -0500
From: Don Marang <donald.marang@xxxxxxxxx>
Subject: [jawsscripts] Re: Jaws script exchange

I have had a user fail to install my VMwarePlayer5 scripts, which were
distributed with JSX fail to install as well!  As far as I can tell,
some Environment variables are no longer set.  They are: 
In Windows 7: 
AppData=C:\User\<user>\AppData\Roaming
(this returns vlank in the following path in the JSX installer)
"%AppData%\Freedom Scientific\JAWS\14.0\Settings\enu"

The next 2 Environments have always been set on my computers as well:
ProgramFiles and ProgramData

I do not know who set these variables; Microsoft, Freedom Scientific, or
someone else.  They were very handy because they eliminated differences
between Windows 7 and XP as well as a different drive letter for the
boot drive.  If it is just a problem in JAWS 14, perhaps FS stopped
setting these variables.  If this can be verified, I would like to
request FS set them again in the next upgrade! 


*Don Marang*
Vinux Package Development Coordinator - vinuxproject.org
<http://www.vinuxproject.org/>


On 11/16/2012 4:05 PM, Brian Hartgen wrote:
> Hi, particularly to Jamal
>  
>
> I am using jaws script exchange to package a number of freely available jaws
> script packages. I am getting some reports that when people are trying to
> install into jaws 14, the installer says that the jaws 14 folder could not
> be found although I must say, I am using Windows7 64 bit with jaws 14, and I
> haven't had that problem. Does anyone have any suggestions as to why this is
> or Jamal, could you please fix it?
>
>  
>
> Thank you.
>
>  
>
> Brian
>
>  
>
>
>
> __________�
>
> View the list's information and change your settings at 
> http://www.freelists.org/list/jawsscripts
>



------------------------------

From: "Dang Manh Cuong" <dangmanhcuong@xxxxxxxxx>
Subject: [jawsscripts] swiching focus
Date: Sat, 17 Nov 2012 10:44:29 +0700

Hi listers
Today I added a functionality to my audacity script, and got a problem. let's 
me have a description of this
In the edit change dialog, there are two panes, 1 left and 1 right. I want to 
write a script that toggle swiching to these panes, but it didn't work. Could 
you please review the code, and tell me what was I wrong.
Script SwichPane ()
Var
Handle wnd
Let wnd=FindDescendantWindow (GetRealWindow (GetFocus ()), wnd)
If GetControlID (wnd)== ID_Change_List then ;focus at the left pane
Let wnd=FindDescendantWindow (GetRealWindow (GetFocus ()), ID_Change_Parameters)
Else
Let wnd=FindDescendantWindow (GetRealWindow (GetFocus ()), ID_Change_List)
EndIf
SetFocus (wnd)
EndScript
Thanks in advance.
________________
Dang Manh Cuong
HCMC University of Pedagogy:
The Educational Psychology 
Mobile: +84 902-572-300
E-mail: dangmanhcuong@xxxxxxxxx 
Yahoo! ID: manhcuong0312
Skype name: dangmanhcuong
facebook: http://facebook.com/dangmanhcuong
Blog: http://vi.netlog.com/Cuong_littlecat
Website: http://ngoisaodanduong.com/
http://www.saomaicenter.org/
Projec-Website: http://dangmanhcuong.googlecode.com/ 

------------------------------

From: "Brian Hartgen" <jaws@xxxxxxxxxxx>
Subject: [jawsscripts] Re: Jaws script exchange
Date: Sat, 17 Nov 2012 05:52:24 -0000

Hi Don

Are you a beta tester for jaws? If not, I will forward this on and see where
it takes us.

Thanks.


-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx
[mailto:jawsscripts-bounce@xxxxxxxxxxxxx] On Behalf Of Don Marang
Sent: 17 November 2012 02:10
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Re: Jaws script exchange

I have had a user fail to install my VMwarePlayer5 scripts, which were
distributed with JSX fail to install as well!  As far as I can tell, some
Environment variables are no longer set.  They are: 
In Windows 7: 
AppData=C:\User\<user>\AppData\Roaming
(this returns vlank in the following path in the JSX installer)
"%AppData%\Freedom Scientific\JAWS\14.0\Settings\enu"

The next 2 Environments have always been set on my computers as well:
ProgramFiles and ProgramData

I do not know who set these variables; Microsoft, Freedom Scientific, or
someone else.  They were very handy because they eliminated differences
between Windows 7 and XP as well as a different drive letter for the boot
drive.  If it is just a problem in JAWS 14, perhaps FS stopped setting these
variables.  If this can be verified, I would like to request FS set them
again in the next upgrade! 


*Don Marang*
Vinux Package Development Coordinator - vinuxproject.org
<http://www.vinuxproject.org/>


On 11/16/2012 4:05 PM, Brian Hartgen wrote:
> Hi, particularly to Jamal
>  
>
> I am using jaws script exchange to package a number of freely 
> available jaws script packages. I am getting some reports that when 
> people are trying to install into jaws 14, the installer says that the 
> jaws 14 folder could not be found although I must say, I am using 
> Windows7 64 bit with jaws 14, and I haven't had that problem. Does 
> anyone have any suggestions as to why this is or Jamal, could you please
fix it?
>
>  
>
> Thank you.
>
>  
>
> Brian
>
>  
>
>
>
> __________�
>
> View the list's information and change your settings at 
> http://www.freelists.org/list/jawsscripts
>


__________�

View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts


------------------------------

End of jawsscripts Digest V6 #249
*********************************
__________�

View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts

Other related posts:

  • » [jawsscripts] Re: jawsscripts Digest V6 #249 - Paul Bonarrigo