I am trying to find a way to get Mathematica to automatically open output in a new window or .nb. I have tried using "CreateWindow[]" and "PopupWindow[]" without success. I think some of the trouble is arising from the fact that my output is a "Manipulate[]' function, with many graphics and plots contained within it. My desire is to have the Manipulate[] output open separate from the notebook generating it, since I only care about the output for presentation purposes, and not the code generating it. Any suggestions?
Something like this will work for you:
CreateDocument[{ TextCell[Manipulate[Plot[Sin[a x + b], {x, 0, 6}], {a, 1, 4}, {b, 0, 10}], "Output"] }]
This worked, thank you!
Another example using Mathematica 7.
The PopupWindow[] function is also a very effective way, thank you.