SICreateImageClip2

Introduced

4.0

Description

Creates and adds a new image source and a new image clip, the new clip pointing to the new source.

If the file texture is a media file such as an Advanced Authoring Format (AAF) composition that contains multiple tracks, one shared image source is created for the composition file itself, and one individual ImageClip object is created for each track it contains.

For all other file formats (including layered PhotoShop files), a single image clip will be created and returned.

This command supports downloading files from the internet. If the filename specified is a URL then the file is downloaded locally before the command is executed.

Note: This command does not use output arguments, therefore it is considered safe to use with C#, JScript, PerlScript and Python, unlike its unsafe counterpart: SICreateImageClip.

Scripting Syntax

SICreateImageClip2( [FileName], [Name] )

Parameters

Parameter

Type

Description

FileName [in/out]

String

Full path of the image source.

Default Value: User is prompted to select

Name

String

The name to use for the new clip. Will be automatically set from the file name if not given.

Return Value

Returns an XSICollection that contains the list of newly created ImageClip objects.

Examples

VBScript Example

set NewClips = SICreateImageClip2("c:\windows\clock.avi" )
if IsEmpty( NewClips ) then
   logmessage "Failed To Create Image Clips"
else
   logmessage NewClips
End If


Autodesk Softimage v7.5