Rocket Software Homepage
Forum Home Forum Home > AccuTerm Knowledge Base (read only) > Green Screen
  New Posts New Posts RSS Feed - select screen
  FAQ FAQ  Forum Search   Register Register  Login Login

The AccuTerm forum has moved. Go to community.rocketsoftware.com to register for the new Rocket forum.

Forum Lockedselect screen

 Post Reply Post Reply
Author
Message
jtillia View Drop Down
Beta Tester
Beta Tester


Joined: August 03 2004
Location: United States
Status: Offline
Points: 67
Post Options Post Options   Thanks (0) Thanks(0)   Quote jtillia Quote  Post ReplyReply Direct Link To This Post Topic: select screen
    Posted: August 03 2004 at 8:35am
We have version 2k2, version 5.2a (5.2.185). In our previous version of 2k2, when we selected the screen (or more importantly, clicked on "copy screen to clipboard" icon, we also got the status row. This displays our function key labels. We use this icon when creating user documentation. We no longer get this row in our screen capture, it stops at row 24 (as it probably should). We would like to expand this to include the function key row.

Do we have to write our own script to do this now ? I could not find a setting to do this.
Back to Top
PSchellenbach View Drop Down
Admin Group
Admin Group

Moderator

Joined: December 15 2003
Location: United States
Status: Offline
Points: 2150
Post Options Post Options   Thanks (0) Thanks(0)   Quote PSchellenbach Quote  Post ReplyReply Direct Link To This Post Posted: August 06 2004 at 4:10am
Hi -

Because of the increased complexity of the various status and label lines supported in release 5.2, we did change the default Copy function so that it did not include status, message or label lines. You can use a small script to copy the whole screen including status and label lines:

Sub Main()

     ActiveSession.SetSelection 0,0,-1,24
     ActiveSession.Copy
End Sub


This script will select the whole (25 line) screen, if are using the shared status line on the bottom line of the screen. If you are using a "split" status line, where the host message is on the first line, and the labels are on the last line (26 line screen), use
ActiveSession.SetSelection 0,-1,-1,25
instead.

You can program a function key to execute this script. Just open the keyboard tab in the settings, choose a key, and enter the script as a single line, using the colon (:) character to separate the lines, and enclose the whole thing in square brackets [   ] :
[ActiveSession.SetSelection 0,0,-1,24 : ActiveSession.Copy]


Thanks,

Pete

Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.03
Copyright ©2001-2019 Web Wiz Ltd.