Tosyk
03-08-2012, 12:02 AM
Hello, I making a script to import a bunch of objects, faced with the choice of the type of imported formats
I want to: drop-down menu with all possible options for the import of current Max (recognizable feature by 'print importerPlugin.classes'), well, respectively, after selecting any of type and clicking on the button, it will import files from selected folder
the script is below:
clearlistener()
fn checkDialog = (
local hwnd = dialogMonitorOps.getWindowHandle()
if (uiAccessor.getWindowText hwnd == "Import Name Conflict") then (
uiAccessor.PressButtonByName hwnd "OK"
)
true
)
dialogMonitorOps.enabled = true
dialogMonitorOps.unRegisterNotification id:#test
dialogMonitorOps.registerNotification checkDialog id:#test
massimppath = getSavePath caption:"my title" initialDir:"$scripts"
files = getFiles (massimppath+"\\*.obj")
for f in files do (
importFile f #noprompt using:ObjImp
)
dialogMonitorOps.enabled = false
thanks, and sorry for my terrible english.
I want to: drop-down menu with all possible options for the import of current Max (recognizable feature by 'print importerPlugin.classes'), well, respectively, after selecting any of type and clicking on the button, it will import files from selected folder
the script is below:
clearlistener()
fn checkDialog = (
local hwnd = dialogMonitorOps.getWindowHandle()
if (uiAccessor.getWindowText hwnd == "Import Name Conflict") then (
uiAccessor.PressButtonByName hwnd "OK"
)
true
)
dialogMonitorOps.enabled = true
dialogMonitorOps.unRegisterNotification id:#test
dialogMonitorOps.registerNotification checkDialog id:#test
massimppath = getSavePath caption:"my title" initialDir:"$scripts"
files = getFiles (massimppath+"\\*.obj")
for f in files do (
importFile f #noprompt using:ObjImp
)
dialogMonitorOps.enabled = false
thanks, and sorry for my terrible english.
