.net与

时间:2019-07-15 09:56:57

标签: actionscript-3 maxscript fscommand

我在编码我的maxscript时遇到问题。 我想做的是:我想要我的.swf文件与3dsmax进行通信。我设法使用.net方法将swf文件加载到3dsmax中的对话框中。

现在在Flash中,我应该在3dsmax中使用“ fscommands”。但是我想关于这个主题的文档是苗条的……我已经搜寻了好几天了,我似乎找不到正确的方法:O

有没有人可以提供帮助?我很绝望!

预先感谢

try(destroyDialog FlashMenuStarter)catch()  –if opened
try(destroyDialog FlashMenuStarter)catch()

rollout FlashMenuStarter "My first Flash Menu"
(
   dotNetControl FlashMenu "System.Windows.forms.WebBrowser" pos:[0,0] width:500 height:500   
   on FlashMenuStarter open do
   (
      FlashMenu.ScriptErrorsSuppressed=true
      FlashMenu.url=dotNetObject "System.Uri" ("C:\\Users\\jcooijmans\\Desktop\\testcase\\testcase.swf")
   )   
   on FlashMenu DocumentCompleted arg do 
   (
-- CODE HERE I THINK
    )
)
createDialog FlashMenuStarter 500 500

0 个答案:

没有答案