just to complete the set, then… plugin Material MyMaterial name:”MyMaterial” classID:#(0x3437e730, 0x2664411e) extends:standard replaceUI:true versio…
i rather doubt you can, but I might be mistaken. If I’m not, then… you’d either have to use a floatTab (which supports the multiple UI items), and t…
mmm… there’s gotta be better ways (I swear I saw a rollout ‘flags’ thing somewhere sometime in the past*), but this is one flexible way… Edit: Found…
an alternative to ‘join’ that you might encounter is += ; a = #(1,2,3) #(1, 2, 3) b = #(4,5,6) #(4, 5, 6) a += b #(1, 2, 3, 4, 5, 6) a #(1, 2, 3, 4…
several ways you could go about it – I think the easiest might be replacing the single ‘value’ in your sDyn struct with two arrays: struct sDyn ( …
I think what he meant was that you should start out (after a fresh max start, say) by copying the DLL to a (temp) location and loadAssembly that file …
I would, but there’s several great threads on the topic of .NET tabs, switching UIs based on them, etc. already – perform a search for “dotnet tab” (s…
to an extent, yes… you can: get/set the size of rollouts get/set the positions of controls get the size of only several controls (not all) set the s…
add this to the rollout definition (change the rollout and pickbutton name for the 2nd rollout, of course): on Rol_1 open do ( if (isValidNode …
and with PEN’s code, doing the button thing is easy as well… in the button press event, you can use just the code for ‘keyAr’, and parse it (for exam…
Button (or fix on the software end) ’tis, then – the dialogmonitorops route would certainly work, but it’s not quite ‘fairly easy’ and can flake out (…
:surprised anyway – why does the preRender callback not work? it certainly should… if it doesn’t, you could try detecting the submission dialog popp…
hehe… figured you might ask that next. ‘fraid the news isn’t good on that one – there’s no UI mongering that you can do from within 3ds Max to change…
try again, the function’s code has been updated. I must have been on a non-zero frame when I tested it… fresh maxstart did fail it, took me a moment …