I'm doing my first CDF with Mathematica Enterprise, for it to be used with plain Player (not the Pro version).
I wanted to save and load data files.
Here's an example:
Tooltip[Button["save",
fileChosen = SystemDialogInput["FileSave", ".m"];
If[fileChosen =!= $Canceled,
TimeConstrained[Put["abc", fileChosen], 10]],
Method -> "Queued"], "saves simulation to a file"]
But it doesn't work in plain Player. Shouldn't it work?
What are the restrictions?