Causes the selection state of one or more objects to change momentarily so the object appears to flash on the screen.
rhinoscriptsyntax.FlashObject (object_ids, style=True)
rhinoscript.object.FlashObject (object_ids, style=True)
object_ids |
Required. String, Guid, or list of Guids. The identifier(s) of the object(s) to flash. |
style |
Optional. Boolean. The flash style. If True (default), then the objects will flash between their object color and Rhino's selected object color. If false, then the objects will flash between invisible and visible. |
None
import rhinoscriptsyntax as rs
objs = rs.ObjectsByLayer("Default")
if objs: rs.FlashObject(objs)