GetCOREInterface()->GetActiveViewport(); only has 343 matches when searching the samples
mxs is short for maxscript, and a sdk mxs function is a function that extends maxscript via a dlx plugin. see the mxsagni project in the samples
an mxs function would look something like this, you should be able to convert it Value* saveViewport_cf(Value** arg_list, int count) { check_arg_cou…
something like this ? fn viewport_snapshot fname frame = ( snapshot_name = (getDir #preview)+”/” + fname; view_size = getViewSize() anim_bmp = bi…
no much help but It amused me at the time that a colleague once described Mel script as “Trying to type in Boxing Gloves”
brute force on tri index to polyface
I’ve become all “autodesk” and now I feel dirty and ashamed
scrap that it is exposed as properties
something not exposed to mxs as far as I’m aware, though it is available via scripting it requires several lines and differing version depending on th…
was having trouble clearing the “Global Tracks” filter in TrackView so I wrote a couple of functions that use masks (ints) as opposed to Name values. …
this how i do it (variation on something published by Bobo of this parish) ( local wintitle = “Window: Scene”, winstyle = #(#style_toolwindow,#sty…
you probably need to force a redraw
at what “level” are you trying to catch the “message” ? Don’t try and catch it as sub WM_COMMAND message
there is no memory dump in c++ in general terms you allocate with new and release with delete, but thats quite rare these days with the STL. If you u…