Zbuffer
@zbuffer
New Member
Joined: Feb 14, 2024
Topics: 28 / Replies: 300
Reply
RE: Converting Text into an Integer?

Hi ! you probably should use a spinner for that. but to convert text, you can use the ‘as’ keyword. rendNThFrame = txtNthFrame.text as integer

17 years ago
Forum
Reply
RE: Need help with DLL files linked to plugin files in Max SDK

Hi, off the top of my head, I think you’d be better off putting the dll in the Windows dir

17 years ago
Forum
Reply
RE: Execute() is cutting in line of compile order?

Hi I think this is a scope issue. execute runs in global scope, and since you have the rollout defined in local scope (if statement) the rollout is n…

17 years ago
Forum
Reply
RE: How do I create a menu in my custom UI(MaxScript)

Hi, Here is an example: ( try(destroyDialog test_Rol) catch() global test_Rol RCmenu TopMenu ( subMenu “File” ( menuItem m1_1 “Open…”…

17 years ago
Forum
Reply
RE: Altering materials in a loop…

that’s because the variable c is used twice in the loop first you say c = 1.0 (outside the loop), then c=standardMaterial() so it errors in the secon…

17 years ago
Forum
Reply
RE: Construct variable name from 2 strings

HI, you can try: ( a=“auto” b=“desk” execute (a+b+”=5″) – create a variable format “% = % ” (a+b) (execute (a+b)) )

17 years ago
Forum
Reply
RE: how to uncheck checkd button on toolbars

There you go macroscript CkeckTest category:”Test” buttonText:”T” ( global Ro_Test local UIopen= false on isChecked return UIopen on execute do ( if…

17 years ago
Forum
Reply
RE: New to This

Hi, i had this in the ‘cave’ ( try (destroydialog RO_Blur) catch() global RO_Blur rollout RO_Blur “Blur Value” ( radiobuttons rdo_sel labels:#(“Scen…

17 years ago
Forum
Reply
RE: Utility Plug-in: Remove Rollout on load?

Hi, how about this ? plugin simpleMod Mod1 name:“Mod1” ClassID:#(0x75e16d7e, 0x236a84d3) category:“Scripted Primitives” ( local R1 local R2= ( rollou…

17 years ago
Forum
Reply
RE: Creating PSDs in MXS

Hi, Another solution would be to save each bitmaps in a specific folder. Then do an action in Photoshop to batch process the folder.

17 years ago
Forum
Reply
RE: custom attributes or something else?

Hi, Why need a custom attribute ? You can wire the ‘percent along path’ and do the math in the wire expression.

17 years ago
Forum
Reply
RE: Getting parameters from simplemod and saving with file?

hi, MeshMod = allObj[i].modifiers[“XPlaneObj8Mesh”] should be : MeshMod = allObj[i].modifiers[“X-Plane Mesh Params”] – the name of the modifier Also…

17 years ago
Forum
Reply
RE: Current Layer

Hi, need to build the layernames array, then access it. totalLayers = LayerManager.count – 1 layernames = (for i = 0 to totalLayers collect (LayerMa…

17 years ago
Forum
Reply
RE: Evaluate al only outputs numbers

Hi, You are executing macroscripts, not scripts !!! Macroscripts have a ‘.mcr’ extention while scripts have a ‘.ms’ extention. open the macroscrip…

17 years ago
Forum
Topic
Forum
Replies: 2
Views: 15
Page 10 / 22