Question:
How can I disable a table link row’s Blink property via scripts?
Solution:
To do so, just access the object’s links collection, select the property containing the table link, and then disable the row’s Blink property.
Example:
Sub Button1_Click()
Screen.Item(“Rectangle1”).Links.Item(“ForegroundColor”).Item(1).Blink = false
Screen.Item(“Rectangle 1”).Links.Item(“ForegroundColor”).Item(2).Blink = false
End Sub
Screen.Item(“Rectangle1”).Links.Item(“ForegroundColor”).Item(1).Blink = false
Screen.Item(“Rectangle 1”).Links.Item(“ForegroundColor”).Item(2).Blink = false
End Sub