Sigmao
@sigmao
New Member
Joined: Feb 15, 2024
Topics: 1 / Replies: 16
Reply
RE: Checkbox in DotNet Datagrid

Here’s a quick example: Try DestroyDialog ExampleDialog Catch OK Rollout ExampleDialog “Example” ( DotNetControl dgv “System.Windows.Forms.DataGrid…

14 years ago
Forum
Reply
RE: Freeze transform

Freeze transform is just a macroscript, you can access the source code here: \ui\macroscripts\Macro_FreezeTransform.mcr If you wanna use those funct…

14 years ago
Forum
Reply
RE: dotNet Screen Capture?

The script is capturing black because newBmp is pasted on g at position [100,100]. Try this: g.CopyFromScreen 100 100 0 0 (dotNetObject “system.draw…

15 years ago
Forum
Reply
RE: Is there a way to access a scripted plugin instance as a node internally?

You can use the max dependency system for this. I use this trick a lot in scripted custom attributes. Hope it can help. Refs.DependentNodes pBaseObj…

15 years ago
Forum
Reply
RE: "Rename Objects" very slow

Renaming selected nodes can be really slow. :shrug: To bypass it, you can store the selection in an array. Benchmark: for x=1 to 1000 do teapot() …

15 years ago
Forum
Reply
RE: skinOps.addBone trouble!

Hi CyHiSo. SkinOps have some limitations and can be used only on certain conditions: . The object must be selected. . The skin should be the active …

15 years ago
Forum
Reply
RE: Distributing scripted tools and updates – Best practice?

Wow thank Solitude, great idea! :lightbulb I’m trying this right now.

15 years ago
Forum
Reply
RE: Distributing scripted tools and updates – Best practice?

Hm yeah but this way the animator can’t double-click on a max file from explorer or the current source control application anymore. I can’t afford thi…

15 years ago
Forum
Reply
RE: Distributing scripted tools and updates – Best practice?

I’ve made a script similar to this at work. The script is in stdplugs/stdscripts/ folder and sync the tools from the network before they load. Sadly i…

15 years ago
Forum
Reply
RE: XtraTreeList freeze when tab key is pressed in editor.

Thanks a lot Denis, it’s working perfectly! I never think about using MaxForm. :lightbulb PEN: I ran into all sorts of things that were a p…

15 years ago
Forum
Topic
Reply
RE: Color of tabs and images in the tab (MXS)

Hi Braime, maybe you’ll want to look around the rezn8 maxscript extension. You can find it here: edit: If you’re using 3dsmax 2010, you can found it…

15 years ago
Forum
Reply
RE: Selection Event Handler

[left] Callbacks.AddScript #SelectionSetChanged “Code Here” Also, if you do this with rollouts, maybe you want to prevent abusing refresh. I’ve seen…

15 years ago
Forum
Reply
RE: Get the List of Selection in API

You need to pass through the COREInterface. Here’s an example: int iNbOfSelectedNodes = GetCOREInterface()->GetSelNodeCount(); for (int i = 0; i …

15 years ago
Forum
Reply
RE: Get the List of Selection in API

You need to use the CoreInterface. Here’s how: int iNbOfSelectedNodes = GetCOREInterface()->GetSelNodeCount(); for (int i = 0; i < iNbOfSelect…

15 years ago
Forum
Page 1 / 2