I've updated the Expression Manager to fix a couple of bugs:
http://www.fxshare.com/nuke/downloads/tcl\_...nager-4126.html
thanks again for pointing it out to me.
Konstantin, to come back to your original questions:
By set_expression {xxxx} I always have this message - "Can't set an expression here"
How i can setup current knob by name for this?
May be some one.. Can give me some examples of usage set_expression or some similar for set expression to knobs ? smile.gif
try something like:
CODE
in {set_expression }
example:
CODE
in Blur1.size {set_expression {frame*2}}
you can also just use the knob command but make sure to use curly braces :
CODE
knob Blur1.size {frame*2}
if you're assigning different x/y values to an array knob you will have to assign the entire knob like this using an extra set of curlies to bracket the list of fields you are assigning to:
CODE
knob Blur1.size {{frame*2} {frame*3}}
this is where the set_expression command seems to work nicer as it lets you assign values to single fields not just entire knobs:
CODE
in Transform1.translate.y {set_expression {frame*2}}
hope this helps.
cheers,
frank