Re: Highlighting in Rexx

2010-10-18 Thread Brian Nielsen
3 >> >&C = &CONCAT OF &C INR ==> &INR1 - &INR2 &B3 INA ==> &INA1 - &INA2 >> &B3 >> >&READ ARGS >> >&STA1 = &LEFT OF &2 3 >> >&STA2 = &LEFT OF &3 3 >> >&C = &CONCAT OF &a

Re: Highlighting in Rexx

2010-10-18 Thread Kris Buelens
gt;&NEXT-COLOR = 0 > >&LOOP 10 7 > > &NEXT-COLOR = &NEXT-COLOR + 1 > > &COLOR = &WORD OF BLU RED GRE YEL TUR PIN WHI &NEXT-COLOR > > EXECIO 0 CP (ST SCRE VMO &COLOR NON > > &TYPE &COLOR &B33 NON &B34 &CO

Re: Highlighting in Rexx

2010-10-12 Thread Brian Nielsen
OP 10 7 > &NEXT-COLOR = &NEXT-COLOR + 1 > &COLOR = &WORD OF BLU RED GRE YEL TUR PIN WHI &NEXT- COLOR > EXECIO 0 CP (ST SCRE VMO &COLOR NON > &TYPE &COLOR &B33 NON &B34 &COLOR > EXECIO 0 CP (ST SCRE VMO &COLOR U

Re: Highlighting in Rexx

2010-10-12 Thread Les Koehler
My apologies to all. Guess I was going on old information. Les Mark Pace wrote: Vista TN3270 does both. I'd look at your emulator. On Tue, Oct 12, 2010 at 2:16 PM, Les Koehler wrote: There are some attributes that a pc simply can't do, like underscore and blink. I certainly wouldn't be surp

Re: Highlighting in Rexx

2010-10-12 Thread Mark Pace
Vista TN3270 does both. I'd look at your emulator. On Tue, Oct 12, 2010 at 2:16 PM, Les Koehler wrote: > There are some attributes that a pc simply can't do, like underscore and > blink. I certainly wouldn't be surprised if my recently acquired WC3270 > emulator misbehaved in colorizing for VM.

Re: Highlighting in Rexx

2010-10-12 Thread McKown, John
> -Original Message- > From: The IBM z/VM Operating System > [mailto:ib...@listserv.uark.edu] On Behalf Of Les Koehler > Sent: Tuesday, October 12, 2010 1:17 PM > To: IBMVM@LISTSERV.UARK.EDU > Subject: Re: Highlighting in Rexx > > There are some attributes that a

Re: Highlighting in Rexx

2010-10-12 Thread Mike Walter
;COLOR EXECIO 0 CP (ST SCRE VMO &COLOR UND &TYPE &COLOR &B33 UND &B34 &COLOR EXECIO 0 CP (ST SCRE VMO &COLOR BLI &TYPE &COLOR &B33 BLI &B34 &COLOR EXECIO 0 CP (ST SCRE VMO &COLOR REV &TYPE &COLOR

Re: Highlighting in Rexx

2010-10-12 Thread Les Koehler
There are some attributes that a pc simply can't do, like underscore and blink. I certainly wouldn't be surprised if my recently acquired WC3270 emulator misbehaved in colorizing for VM. Les zMan wrote: On Tue, Oct 12, 2010 at 2:02 PM, Chip Davis wrote: I haven't seen a real 3278/9 in years

Re: Highlighting in Rexx

2010-10-12 Thread zMan
On Tue, Oct 12, 2010 at 2:02 PM, Chip Davis wrote: > I haven't seen a real 3278/9 in years, so I've discovered that there is a > great variance in the ability of TN3270 emulators to properly > respect/interpret those attribute characters, especially color. Huh? If it don't do 3270 datastreams, ho

Re: Highlighting in Rexx

2010-10-12 Thread Chip Davis
...and don't forget that the attribute byte (created by the '1Dnn'x) takes up a space on the screen, so the Say statement in this example will have two blanks in front of the word "error". You won't be able to change the highlighting between two adjacent characters in a string. I haven't seen

Re: Highlighting in Rexx

2010-10-12 Thread Bruce Hayden
Yep! Can't read my own execs... :) Thanks. On Tue, Oct 12, 2010 at 1:29 PM, Ron Schmiedge wrote: > And by CP SET VMOUT you meant CP SCREEN VMOUT of course... > > > On Tue, Oct 12, 2010 at 10:35 AM, Bruce Hayden wrote: >> There are a few options.  The easy one is to turn highlighting on and >>

Re: Highlighting in Rexx

2010-10-12 Thread Ron Schmiedge
And by CP SET VMOUT you meant CP SCREEN VMOUT of course... On Tue, Oct 12, 2010 at 10:35 AM, Bruce Hayden wrote: > There are a few options.  The easy one is to turn highlighting on and > off, which will make that part white: > 'CP SET VMOUT DEFAULT'    /* Must be default for this to work */ > hi

Re: Highlighting in Rexx

2010-10-12 Thread Marcy Cortes
There is a SUPERSAY package on vm downloads page (http://www.vm.ibm.com/download ) Marcy This message may contain confidential and/or privileged information. If you are not the addressee or authorized to receive this for the addressee, you must not use, copy, disclose, or take any action bas

Re: Highlighting in Rexx

2010-10-12 Thread Bruce Hayden
There are a few options. The easy one is to turn highlighting on and off, which will make that part white: 'CP SET VMOUT DEFAULT'/* Must be default for this to work */ hi = '1DC8'x lo = '1D40'x Say 'There has been an 'hi'error'lo The other way that works for entire lines is to set the VMOUT s

Re: Highlighting in Rexx

2010-10-12 Thread Mike Walter
7; Mike Walter Aon Hewitt (Sent from the wee keyboard of a Blackberry.) - Original Message - From: "Karl Kingston" [karlkings...@ongov.net] Sent: 10/12/2010 12:14 PM AST To: IBMVM@LISTSERV.UARK.EDU Subject: Highlighting in Rexx Does anybody have any tricks on how to do highlig

Re: Highlighting in Rexx

2010-10-12 Thread Scott Rohling
Here's an an example that might help: /* */ address command cm = 'DIAGRC'('8','CP Q SCREEN') If 'WORD'(cm,1) = 0 Then Do Parse Var cm With 'VMOUT' color hilite 'INREDISP' rest If color¬='DEFAULT' Then newscr = 'DIAG'('8','CP SCRE VMOUT DEFAULT NONE') End hi = '1de8'x

Re: Highlighting in Rexx

2010-10-12 Thread Frank M. Ramaekers
: Highlighting in Rexx Does anybody have any tricks on how to do highlighting in a rexx "SAY" statement?What about setting colors for an extended attributes? I'm working on writing an Rexx exec to let our operators know which of our z/Linux machines are up, are supposed to be up, and

Highlighting in Rexx

2010-10-12 Thread Karl Kingston
Does anybody have any tricks on how to do highlighting in a rexx "SAY" statement?What about setting colors for an extended attributes? I'm working on writing an Rexx exec to let our operators know which of our z/Linux machines are up, are supposed to be up, and are down. So if I can do co