FlashObject

Causes the selection state of one or more objects to change momentarily so the object appears to flash on the screen.

Syntax

rhinoscriptsyntax.FlashObject (object_ids, style=True)

rhinoscript.object.FlashObject (object_ids, style=True)

Parameters

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.

Returns

None

Example

import rhinoscriptsyntax as rs

objs = rs.ObjectsByLayer("Default")

if objs: rs.FlashObject(objs)

Also See

HideObjects

SelectObjects

ShowObjects

UnselectObjects