Notifications
Clear all

[Closed] freezer tool

hello all, i’ve been recently trying to make myself some macro with common tool but i stuck on one in particular.
so if you know one and can point me where i could find it , because i look at scripspot and nothing…
Worst thing is i’m sure its simple as hell…

macro: being able to unfreeze by hit. like in the display panel. Freeze by hit is fine but having to unfreeze all is cumbersome and unfreeze by name can be a pain when working on big scene.

thank for you help

2 Replies

This macro already exists in MAX under “Tools” category (unfreeze by hit).

Anyway it should be something like this:

macroScript MyUnfreezeByHit
category:"Tools"
internalcategory:"Tools"
tooltip:"My Unfreeze by Hit"
buttontext:"My Unfreeze by Hit"
(
	on execute do (
		max unfreeze by hit
	)
)

Hope that helps.

‘knew it wasnt that hard . thank mister Halfvector