I've created a function test[], which could also be a symbol test, if need be, and I'm trying to implement it in a manipulate. test[] looks like this:
test[]:=Button["Label",Functionality[]];
This will return an error if used directly in a Manipulate[], but works if it is wrapped in a Dynamic or an Evaluate.
Manipulate[content,test[]];
Manipulate::vsform: Manipulate argument test[] does not have the correct form for a variable specification.
Manipulate[content,Dynamic[test[]]]
This one works
Manipulate[content,Evaluate[test]]
Note that while this works, test is not a function
Manipulate[content,Evaluate[test[]]]
This works on my mac, but not my PC at work...
I think the issue is something to do with Manipulate being HoldAll, but don't understand why Dynamic[] should fix this. Also, Evaluate[] will only work some of the time.
So, why is the Dynamic[] or Evaluate[] necessary? Looking under the custom controllers section of the advanced manipulate tutorial, I see no references to this issue, and could not find any elsewhere.
