On non-contiguous selection & macros
Posted: 2006-12-12 04:39:22
How can I put non-contiguous selections in paretheses all at once? The macro I have with NWE 2.7 is:
#Nisus Macro Block
#source front selection
#destination front selection
#End Nisus Macro Block
binmode(STDIN, ":utf8");
binmode(STDOUT, ":utf8");
read STDIN,$text,10000;
$text = "($text)";
print $text;
All it does for me is adoin the first and the last selection and make them contiguous and put the newly formed string in paentheses. Similar things happen with Quote Selection Macros? Please someone out there, help me out of this situation.
#Nisus Macro Block
#source front selection
#destination front selection
#End Nisus Macro Block
binmode(STDIN, ":utf8");
binmode(STDOUT, ":utf8");
read STDIN,$text,10000;
$text = "($text)";
print $text;
All it does for me is adoin the first and the last selection and make them contiguous and put the newly formed string in paentheses. Similar things happen with Quote Selection Macros? Please someone out there, help me out of this situation.