I wrote the following code and uploaded it to WolframCloud.
Manipulate[Column[{in,ToExpression@in}],
Row[{Style[InputField[ Dynamic@in, String, ImageSize -> 400], 14]}],
Initialization :> (in = "Manipulate[Plot3D[Sin[a(x+y)],{x,-3,3},{y,-3,3}],{a,-1,1}]") ]
After uploading this to WolframCloud, the 3D graph and slider are not working well. In other words, the adjusted slider returns to its initial state. And a freezing phenomenon occurs in the mouse movement of the 3D entity. WolframCloud for test.nb
How do I make additional settings so that the 'Manipulate for Plot3D' inside Manipulate works well?
Manipulateinside anManipulate? $\endgroup$Dynamic[Column[{in,ToExpression@in}],TrackedSymbols:>{in}]? $\endgroup$