Posted by: | SITT | |
Data created: | 16 December 2009 |
how to execute MaxScript in Max.Net thanks | |
16 December 2009
#1198 | |
<p>namespace TestMaxDotNetMenu { public class TestMenu : IPlugin { public void Cleanup() { } public void Initialize(IGlobal global, System.ComponentModel.ISynchronizeInvoke sync) { MessageBox.Show("TestMenu With MaxDotNet"); IInterface MaxInterface = global.COREInterface; IPrimitive primZKLaunch = global.Primitive.Create("ZKLaunch",Launch); } public void Launch() { MessageBox.Show("Launch"); } } } </p> why, error on "global.Primitive.Create("ZKLaunch",Launch);" my english very poor, sorry software is max9 + vs2005 | |
17 December 2009
#1207 | |
Please have a look at this Marsel Khadiyev (Software Developer, EPHERE Inc.) | |
17 December 2009
#1208 | |
thanks |