突出显示字符--.之前和之后



我想突出显示'--'之前和之后的字符串。例子好 - 坏在这里我想强调好的和坏的。当 -- 是出现时,字符串之前和之后都变得高亮。可能吗。

假设

您在字段"mytext"中有以下文本:

This text comes before -- this text comes after.

LiveCode(与大多数应用程序一样)不允许不连续的选择,因此"select"命令仅适用于连续的文本运行。

select word 1 to 3 of fld "mytext"

但是,您可以通过设置单独文本运行的 backgroundColor 属性来模拟选择突出显示:

put wordOffset("--",fld "mytext") into tWordIndex
set the backgroundColor of word 1 to tWordIndex - 1 of fld "mytext" to the hiliteColor
set the backgroundColor of word tWordIndex + 1 to -1 of fld "mytext" to the hiliteColor

当然,您可以在两个"set"语句中使用任何有效的文本块表达式,具体取决于要"突出显示"之前和之后的文本部分" --

要从字段中清除背景颜色,请执行以下操作:

set the backgroundColor of char 1 to -1 of fld "mytext" to empty

相关内容

  • 没有找到相关文章

最新更新