Merge specified file

Hi

Does anyone know how to merge a specified file to you current
maxscene via maxscript? Pref. triggered by a button.

BR,
Aplomo

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
crazyosachou's picture

that is the function to

that is the function to save/load/merge files:

--Save :
saveMaxFiles "c:/temp/test.max" --specified link

--u can also save only specified objects in other file :
saveNodes $specified_object "c:/temp/file_name"

--when u want to get the local floder of u'r max file
--just tape :
saveNodes $specified_object (getDir #scene + "/file_name")

--load :
loadMaxFile "c:/temp/file_name.max"

--merge:
mergeMaxFile "c:/temp/file_name.max"

-----------------------------------------------------
--Node: care to not harm an existent file cause max don't
--ask u that there's another file with same name

--Hope it'll help u.

learn more,learn as fast as u can, coz u can be not able to learn more tommorow!!

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.