View previous topic :: View next topic |
Author |
Message |
sendhil Beginner
Joined: 06 Sep 2006 Posts: 17 Topics: 6
|
Posted: Fri Sep 22, 2006 1:31 am Post subject: How to Raise Informational Messages using Edit Macros? |
|
|
Hi,
I have written an edit macro that changes few lines in the program.
I need to Hilite those lines that have been changed like it happens when a change macro executes.
000033
==CHG>
000035
any Pointers?
Regards
Sendhil. |
|
Back to top |
|
|
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Fri Sep 22, 2006 2:05 am Post subject: |
|
|
there are many ways. You can - do a RESET followed by C P'=' p'=' 1 first .x .x where .x is the line and that will add a ==CHG>
- add a label of he form .Oxxxxx to get the line highlighted in blue (as the COMPARE command does),
- add note lines or info lines using the LINE_AFTER or LINE_BEFORE commands
- just add line labels of your own design
Example of the 2nd technique: the FINDX macro
Example of the 4th: the SELS skeleton matching macro |
|
Back to top |
|
|
sendhil Beginner
Joined: 06 Sep 2006 Posts: 17 Topics: 6
|
Posted: Fri Sep 22, 2006 3:35 am Post subject: |
|
|
semigeezer,
Let me try and get back. |
|
Back to top |
|
|
|
|