It's the version checking code. AREA doesn't have the latest update to that 
plugin.

Just edit the plugin and delete this stuff from XSILoadPlugin

                #check xsi version before registering event
                #siOnDragAndDrop event is only available in 6.5 or greater
                tXSIVersion = xsi.Version().split( "." )

                if int( tXSIVersion[0] ) < 6:
                                xsiPrint( xsi.Version() + " doesn't support the 
'siOnDragAndDrop' event!" )
                                xsi.UnloadPlugin( in_reg.name, True )
                                return False
                elif int( tXSIVersion[1] ) < 5:
                                xsiPrint( xsi.Version() + " doesn't support the 
'siOnDragAndDrop' event!" )
                                xsi.UnloadPlugin( in_reg.name, True )
                                return False

From: [email protected] 
[mailto:[email protected]] On Behalf Of Stephen Blair
Sent: April-25-12 9:34 AM
To: [email protected]
Subject: RE: Anybody has a multiple OBJ file importer script or plugin?

Checking this now...

From: [email protected] 
[mailto:[email protected]] On Behalf Of Marc-Andre 
Carbonneau
Sent: April-25-12 9:31 AM
To: [email protected]
Subject: RE: Anybody has a multiple OBJ file importer script or plugin?

Sorry, using Softimage 2012 sp1

From: [email protected] 
[mailto:[email protected]] On Behalf Of Marc-Andre 
Carbonneau
Sent: 25 avril 2012 09:23
To: [email protected]
Subject: RE: Anybody has a multiple OBJ file importer script or plugin?

I see the custom options but I cannot Drag and Drop from a Windows Explorer to 
Softimage.


From: 
[email protected]<mailto:[email protected]>
 
[mailto:[email protected]]<mailto:[mailto:[email protected]]>
 On Behalf Of Stephen Blair
Sent: 25 avril 2012 08:59
To: [email protected]<mailto:[email protected]>
Subject: RE: Anybody has a multiple OBJ file importer script or plugin?

And there is a drag-and-drop plugin too...it supports multiple files
http://area.autodesk.com/downloads/plugins/obj_drag_and_drop_importer_python


From: 
[email protected]<mailto:[email protected]>
 
[mailto:[email protected]]<mailto:[mailto:[email protected]]>
 On Behalf Of Philip Melancon
Sent: April-25-12 8:49 AM
To: [email protected]<mailto:[email protected]>
Subject: Re: Anybody has a multiple OBJ file importer script or plugin?

Here's a simple script that works fine for me, hope it helps

##Begin
import os, glob

geoPath = #INSERT PATH HERE

for infile in glob.glob( os.path.join(geoPath, '*.obj') ):
    Application.ObjImport(infile, 1, 0, True, True, False, True)
##End

-Phil

On 4/25/2012 8:32 AM, Marc-Andre Carbonneau wrote:
Hi,
I need to import around 60 OBJ files in one scene. The Softimage OBJ importer 
doesn't let me multi-select files.
Does anybody have a multiple OBJ file importer script or plugin? Or knows a 
trick?
Thanks
MAC


No virus found in this message.
Checked by AVG - www.avg.com<http://www.avg.com>
Version: 2012.0.1913 / Virus Database: 2411/4957 - Release Date: 04/24/12

<<attachment: winmail.dat>>

Reply via email to