magicm
@magicm
New Member
Joined: Feb 14, 2024
Topics: 8 / Replies: 546
Reply
RE: spline between 2 points

Is this for a single shape where each point in the file is added to the shape (A—B—C—D…) or separate shapes/spines containing just two knots (A—B, C…

18 years ago
Forum
Reply
RE: ClassOf dotNetControl

Sure: TestCtrl = dotNetObject “System.Windows.Forms.Button” dotNetObject:System.Windows.Forms.Button CtrlType = dotNet.getType TestCtrl dotNetObject:…

18 years ago
Forum
Reply
RE: Scripted modifier's parent node

You can get the objects that depend on the modifer by using this: deps = refs.dependents this objs = for obj in deps where isValidNode obj collect ob…

18 years ago
Forum
Reply
RE: Userinput in A Flash ActiveXObject

I think the best you can do is to have flash send a message to max when the textbox in your movie receives focus. Catch the event in your script and d…

18 years ago
Forum
Reply
RE: Determining locked viewport in render scene dialog

In 3dsmax 2009 the following variables have been added: rendViewIndex, rendUseActiveView and renderPresetMRUList. I don’t think there’s any way to ge…

18 years ago
Forum
Reply
RE: Syntax help needed – using " in maxscript

If you’re using max 2008 or higher (or have the AVG extension installed), you can also use the following to replace strings: substituteString <sou…

18 years ago
Forum
Reply
RE: XML parsing/reading using dotNet

To load an Xml file, you can use the following code: local XmlDoc = dotNetObject “System.Xml.XmlDocument” XmlDoc.Load “PathToYourXmlDoc.Xml” Lots of…

18 years ago
Forum
Reply
RE: Self-updating Custom Attributes

Placing your code in a separate function instead of the load handler itself should do the trick: testCA = attributes test attribID:#(0x42869098, 0x26…

18 years ago
Forum
Reply
RE: "Convert File Paths to UNC" checkbox?

Here you go: pathConfig.resolveUNC = true/false Cheers, Martijn

18 years ago
Forum
Reply
RE: How to construct a Mouse object in .Net

Here’s a version that uses a dotNet label control instead. You could set the label’s background property or add an image to it to make it look like a …

18 years ago
Forum
Reply
RE: How to construct a Mouse object in .Net

You could use the floating dialog events for this (see the CreateDialog topic in the online reference). Here’s a quick example: ( rollout ResizeTest…

18 years ago
Forum
Reply
RE: How to construct a Mouse object in .Net

I don’t think this class can be instantiated. Instead use it’s members directly; (dotNetClass “System.Windows.Input.Mouse”).GetPosition … I can’t tes…

18 years ago
Forum
Reply
RE: Close/Min/Maximize A Rollout (createDialog) with MS

This should do the trick: rollout MinMaxTest “Minimize/Maximize Test” width:208 height:28 ( local MyHandle local WM_SYSCOMMAND = 0x112 local SC_…

18 years ago
Forum
Reply
RE: Close/Min/Maximize A Rollout (createDialog) with MS

You can do without any api calls, and use the built-in .placement property: <rollout_floater>.placement Name, enums:{#minimized|#maximized|#no…

18 years ago
Forum
Reply
RE: Pflow emmiter assign

show $‘Position Object 01’ .Lock_On_Emitter : boolean .Inherit_Emitter_Movement : boolean .Multiplier : percent .Variation : percent [color=orange].Em…

18 years ago
Forum
Page 10 / 37