I want to know how can I see only the output when I deploy the Mathematica notebook in Player Pro as in CDF Player?
I have gone through this screencast on How to Encrypt Your Code for Deployment, but I haven't understood it properly.
|
I want to know how can I see only the output when I deploy the I have gone through this screencast on How to Encrypt Your Code for Deployment, but I haven't understood it properly. |
||||
| show 4 more comments |
|
To prevent your code from appearing in the CDF file, simply double-click on the innermost cell bracket of your output cell. This collapses the input cell. Then select File...Deploy...Standalone...[save entire file)]. The resultant CDF file will neither show the input code nor allow it to be seen at all (since the cell bracket will not be available). |
||||
|
|
|
If your question is really "How do I remove the input?", then you can evaluate
to create a fresh copy of a notebook with no |
||||
|
|
In addition to the methods already suggested by others: If you would like to have a CDF that consists of a single |
|||
|
|
|
Consider two versions of CDF: Deployed
Deploy a cdf without showing source code:
You can also, copy the out put and simply paste it into a new CDF document. You can typically make what you want to do with input work by hardcoding possible selections rather than free input. Make a Note: you can also access any of Wolfram's computable data within a CDF. Best if you can post an example of what you have tried. Then responders can give you more specific solutions. |
|||
|
|
CDF Deploy. For eg. CDFDeploy[ToFileName["path", "name of cdf"]] path is where you want the cdf to be deployed. name of cdf is what name do you want to give to cdf which is to be deployed. – Jennifer Jul 10 '12 at 11:07