Dynamic Parameters
doWidget widgetProp:foo=blue widgetProp:bar=seven widgetProp:baz=turkeydoWidget :foo=blue :bar=seven :baz=turkeyfunction run( args={} ){
args.each( function( k, v ) {
print.line( '#k# has a value of #v#.' );
} );
}foo has a value of blue.
bar has a value of seven.
baz has a value of turkey.Last updated
Was this helpful?