Go to: Synopsis. Return value. Flags. MEL examples.

Synopsis

illustratorCurves [-constructionHistory boolean] [-illustratorFilename string] [-name string] [-object boolean] [-scaleFactor float] [string]

illustratorCurves is undoable, queryable, and editable.

The illustratorCurves command creates NURBS curves from an input Adobe(R) Illustrator(R) file

Return value

string[]Object name and node name

In query mode, return type is based on queried flag.

Flags

constructionHistory, illustratorFilename, name, object, scaleFactor
Long name (short name) Argument types Properties
-illustratorFilename(-ifn) string create
Input Adobe(R) Illustrator(R) file name
-scaleFactor(-sf) float create
The scale factor
-object(-o) boolean create
Create the result shapes, or just the dependency node
-constructionHistory(-ch) boolean create
Turn the construction history on or off
-name(-n) string create
Sets the name of the newly-created node. If it contains namespace path, the new node will be created under the specified namespace; if the namespace does not exist, it will be created.

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can be used more than once in a command.

MEL examples

// Create curves from an input Adobe(R) Illustrator(R) file d:/sample.ai
// and scale factor 2.54
illustratorCurves -ifn "d:/sample.ai" -sf 2.54;