Gravey
@gravey
New Member
Joined: Feb 14, 2024
Topics: 51 / Replies: 575
Reply
RE: On ImgTag mouseOver issue

most of the stuff you’ll need for dotnet controls can be found in the following namespaces: System.Windows.Forms System.Drawing System.Drawing.Imaging…

15 years ago
Forum
Reply
RE: On ImgTag mouseOver issue

works fine for me in max 2010 XP64 if you’re not against using .NET controls, every .NET control has a MouseEnter event handler which is triggered wh…

15 years ago
Forum
Reply
RE: Maxscript access to copied modifier

I believe that max has its own internal ‘clipboard’ for stuff like copying modifiers, color swatches etc so doesnt actually use the windows clipboard….

15 years ago
Forum
Reply
RE: Editing Vertex Position under modifier stack…

what modifiers are causing the problems? this seems to work for me: polyop.setVert $.baseobject 1 [1,2,3] node:$

15 years ago
Forum
Reply
RE: Fixed character count in maxscript?

formattedprint x format:”03d” that will do what you want, look up formattedPrint in the help to see what else it can do

15 years ago
Forum
Topic
Forum
Replies: 0
Views: 27
Reply
RE: dotNet listview node select

Denis has already given you the solution – the ItemSelectionChanged event. You can also take advantage of the dotnetMXSValue class and store a refere…

15 years ago
Forum
Reply
RE: How copy string to system's clipbard

external applications are unnecessary, you can use the .NET Clipboard class to achieve the same thing and more: Clipboard = dotnetclass “System.Windo…

16 years ago
Forum
Reply
RE: store TriMesh in scripted plugin?

storing TriMeshes on a global track using custom attributes is kind of redundant since I need this for a scripted plugin which already has its own par…

16 years ago
Forum
Topic
Forum
Replies: 2
Views: 47
Reply
RE: lookat script for only one axis

maybe a simple example scene would help explain things?

16 years ago
Forum
Reply
RE: please help , reading string with "c:\releases\proyect" problem with "\r" in name

where exactly are you coming across these escape characters that are causing the problem? I can only think of 2 occasions where this might happen: y…

16 years ago
Forum
Reply
RE: please help , reading string with "c:\releases\proyect" problem with "\r" in name

i’m not sure why you are using execute if you are expecting each line to be a path string. based on your code i’d say that it should be: if (ss = ope…

16 years ago
Forum
Reply
RE: Building a Directory Struct for dotNet TreeView

that certainly is more elegant. I avoided the Find method because of the possibility of duplicate folder names but now that I think about it that woul…

16 years ago
Forum
Reply
RE: Building a Directory Struct for dotNet TreeView

setting the tv.SelectedNode to a string is not possible, you need to get the node from the node collection that contains it. Unfortunatly its not enou…

16 years ago
Forum
Page 15 / 42