4 thoughts on “Project Photofly 2.1 Now Available – It is Alive in the Lab

  1. I find this usefull script in the area :
    but how can I save the fbx file in a specified directory (i.e. “C:\export\” )

    Thank You,

    Benoit

    //SelectObj(“cone, cylinder, disc, sphere”, null, null);

    var oObjects = new ActiveXObject( “XSI.Collection” );
    oObjects.Items = Selection;

    FBXExportSelection( true );
    oEnum = new Enumerator( oObjects ) ;
    for (;!oEnum.atEnd();oEnum.moveNext() )
    {
    var oItem = oEnum.item() ;
    LogMessage( oItem.fullname );
    SelectObj( oItem );
    // Export selected object
    FBXExport( XSIUtils.Environment(“TEMP”) + “\\” + oItem.name + “.fbx” )

    }

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s