Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Input character color in procomm 1

Status
Not open for further replies.

sammmcs

Technical User
Sep 22, 2009
40
EG
I want to make input character color red in procomm plus

EX.
>LD 20
REQ NEW
TYPE 3904
.
.
.
.

Is this possible?

Samo
 
never tried that one, can't even think of a reason i would want to,, training maybe... i don't see anyting in the help file.. let us know if you find the code..

john poole
bellsouth business
columbia,sc
 
In Release 6.00 we can see red line in start up, how it working ?

Samo
 
i found it but it not warking

____________________________________________________________
Code:
[COLOR=blue]//////////////////////////////////////////////////////////////////////////////
//
// Aspect highlighter written by Steve Arnold
//
//////////////////////////////////////////////////////////////////////////////

//////////////////////////////////////////////////////////////////////////////
// language name

Language:               Procomm Plus Aspect Script

//////////////////////////////////////////////////////////////////////////////
// put whatever you want here, short description, author name, email address..

Description:            Aspect script for Procomm Plus, Steve Arnold

//////////////////////////////////////////////////////////////////////////////
// default file filter
// note: if more than one extension is associated, eg:
// C/C++ files (*.c,*.cpp,*.h,*.hpp)|*.c;*.cpp;*.h;*.hpp

Filter:                 Aspect files (*.was)|*.was


//////////////////////////////////////////////////////////////////////////////
// help file which will be invoked when F1 is pressed

HelpFile:               "C:\Program Files\Symantec\Procomm Plus\PROGRAMS\ASPECT.HLP"


//////////////////////////////////////////////////////////////////////////////
// language case sensitivity
//                      0  - no
//                      1  - yes

CaseSensitive:          0


//////////////////////////////////////////////////////////////////////////////
// comment type: LineComment - comment to the EOL
// BlockCommentBeg - block comment begin, it could be
// multiline
// BlockCommentEnd - block comment end
//
// if there is more than one definition of line/beg/end comment string,
// you can separate it with spaces.
// for example, for pascal it would be:
//   LineComment:       //
//   BlockCommentBeg:   (* {
//   BlockCommentEnd:   *) }

LineComment:            ;
BlockCommentBeg:
BlockCommentEnd:


//////////////////////////////////////////////////////////////////////////////
// identifier characters
// note: characters shouldn't be delimited, except arrays
// array of chars could be defined as from_char..to_char

IdentifierBegChars:     a..z A..Z _%@.
IdentifierChars:        a..z A..Z _ 0..9 ?

//////////////////////////////////////////////////////////////////////////////
// numeric constants begin characters
// note: characters shouldn't be delimited, except arrays
// array of chars could be defined as from_char..to_char
// number always starts with 0..9 except when NumConstBeg
// defines other

NumConstBegChars:       0..9


//////////////////////////////////////////////////////////////////////////////
// numeric constants characters
// note: characters shouldn't be delimited, except arrays
// array of chars could be defined as from_char..to_char
// number always starts with 0..9 except when NumConstBeg
// defines other

NumConstChars:          0..9 abcdefhABCDEFH


//////////////////////////////////////////////////////////////////////////////
// escape character

EscapeChar:


//////////////////////////////////////////////////////////////////////////////
// keyword table
// note: delimited with spaces, lines could be wrapped
// you may divide keywords into five groups which can be
// highlighted differently

// ASPECT keywords

KeyWords1:              1KXMODEM 1KXMODEMG 2KWINDOW 4KWINDOW ABORTDNLD   
// System variables

KeyWords2:              SUCCESS FAILURE $ACTIONBAR $ACTIONBARS $ACTIVEWIN                  
                        

// Predefined global variables

KeyWords3:              f0 f1 f2 f3 f4 f5 f6 f7 f8 f9 i0 
// Predefined macro definitions

KeyWords4:              ASPDEBUG ASPFILE ASPLINE ASPVERSION

// Preprocessor keywords

KeyWords5:

//////////////////////////////////////////////////////////////////////////////
// string delimiter: StringBegChar - string begin char
// StringEndChar - string end char
// MultilineStrings - enables multiline strings, as perl
// has it

StringBegChar:          "
StringEndChar:          "
MultilineStrings:       0


//////////////////////////////////////////////////////////////////////////////
// use preprocessor: 0 - no
// 1 - yes
// note: if yes, '#' and statements after it will be
// highlighted with Preprocessor defined colors

UsePreprocessor:        1


//////////////////////////////////////////////////////////////////////////////
// highlight line: 0 - no
// 1 - yes
// note: if yes, current line will be highlighted

CurrLineHighlighted:    0


//////////////////////////////////////////////////////////////////////////////
// colors
// note:                first value is foreground, second is background color
//                        and third (optional) represents font attribute:
//                        B - bold
//                        I - italic
//                        U - underline
//                        S - strike out
//                        attributes can be combined: eg. B or BI
//                      as value, it could be used any standard windows color:
//                        clBlack, clMaroon, clGreen, clOlive, clNavy,
//                        clPurple, clTeal, clGray, clSilver, clRed, clLime,
//                        clYellow, clBlue, clFuchsia, clAqua, clLtGray,
//                        clDkGray, clWhite, clScrollBar, clBackground,
//                        clActiveCaption, clInactiveCaption, clMenu, clWindow,
//                        clWindowFrame, clMenuText, clWindowText, clCaptionText,
//                        clActiveBorder, clInactiveBorder, clAppWorkSpace,
//                        clHighlight, clHighlightText, clBtnFace, clBtnShadow,
//                        clGrayText, clBtnText, clInactiveCaptionText,
//                        clBtnHighlight, cl3DDkShadow, cl3DLight, clInfoText,
//                        clInfoBk
//                      as value, it could be used hex numeric constant too:
//                        $BBGGRR - BB: blue, GG: green, RR: red, eg: $FF6A00

SpaceCol:               clWindowText clWindow
Keyword1Col:            clNavy clWindow B
Keyword2Col:            clPurple clWindow
Keyword3Col:            clBlue clWindow
Keyword4Col:            clBlue clWindow
Keyword5Col:            clBlue clWindow
IdentifierCol:          clWindowText clWindow
CommentCol:             clGray clWindow
NumberCol:              clRed clWindow
StringCol:              clMaroon clWindow
SymbolCol:              clGray clWindow
PreprocessorCol:        clBlue clWindow BI
SelectionCol:           clWhite clNavy
CurrentLineCol:         clBlack clYellow

OverrideTxtFgColor:     0
BlockAutoindent:        0
BlockBegStr:
BlockEndStr:
MatchedBracesCol:       clWindowText clWindow[/color]
____________________________________________________________
are there error



Error C007 Line 122: New line character in constant
Error C001 Line 122: Missing terminating quote
Error C007 Line 123: New line character in constant
Error C001 Line 123: Missing terminating quote
Error C088 Line 188: Missing procedure MAIN




Samo
 
johnpoole try this code its working
just type HI

Code:
[COLOR=blue]
proc main
 
WAITFOR "HI" FOREVER
      termwrites "^[[;36;44m SAMOO"
      termwrites "^[[;33;44m SAMOO"
WAITFOR "HI"
      termwrites "^[[;32;44m SAMOO"
      termwrites "^[[;31;44m SAMOO"

 while 1                       ; Loop forever.
 endwhile

endproc
[/color]

Samo
 
Hi
when a PSTN call comes in user's phone rings but doesn't go into his voice mail box becuase the vm system expects his 10 digits but for him the vm system is getting only the area code and the next 3 digits not his extension..Fro everone else the VM system get the 10 digits. Any idea why this would be happening. For some reason the CS1K is stripping the last 4 digits ie his extension ..Is there any setting in his set programming that limits only to send first 7 digits?. The phone system reads the Display key 15. Thanks in advance.
 
MCSUSER - I'm not sure that will solve the "Input character color in procomm" issue that this thread is about.

[©] GHTROUT.com [⇔] Resources for Nortel Meridian/CS1000 System Administrators - You Can Hire Me Too
 
well, you haven't tried it. 10 digits and my input is red now.......

Mato' Was'aka
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top