Selection.Item.1.vbs Example

Applies To

Selection.Item property

Description

This example prints all the items in the Selection, according to their position

Code

SelectAll
dim oSelection, i
set oSelection = Application.Selection
for i = 0 to (oSelection.Count - 1)
	Application.LogMessage oSelection(i).Name
next
' OUTPUT:
'INFO : "Camera_Root"
'INFO : "Camera"
'INFO : "Camera_Interest"
'INFO : "light"

Related Examples

Selection.Item.2.vbs

Keywords

Selection Item


Autodesk Softimage 2011