Group Abstract Group Abstract

Message Boards Message Boards

0
|
11.8K Views
|
9 Replies
|
1 Total Like
View groups...
Share
Share this post:

Find "CDF Export" in File submenu in Mathematica 11.3 (Windows)?

Posted 7 years ago

I am new to Mathematica, and I am using Mathematica 11.3 (Windows). The documentation refers to a "CDF Export" sub menu item from the file menu.( File --> CDF Export). I do not have a CDF export menu as a submenu on my File menu. Thanks for any heip.

POSTED BY: Thomas Seibel
9 Replies
Posted 6 years ago

To create a CDF with just the output cell from a Manipulate, v12:

  1. Mark the source Manipulate output cell. Copy.
  2. Paste it into a new notebook
  3. Save the new notebook as a CDF: File -> Save As -> .cdf
POSTED BY: Hans Milton
Posted 6 years ago

In step 2. above you may also take the opportunity to cancel the Cell Labels. In Option Inspector:

enter image description here

POSTED BY: Hans Milton
Posted 7 years ago
POSTED BY: Thomas Seibel
Posted 7 years ago
POSTED BY: Kyle Martin
Posted 7 years ago

With the previous CDF export option in the File menu, I could export just the output (in particular, the GUI from manipulate code). Now, after the CDF preview, I can't seem to find a way to do this, the export contains all the code. Any suggestions?

POSTED BY: Chris Saunders

I have the same question for Mac. How to export selected cells to CDF?

POSTED BY: Tom Verhoeff
Posted 7 years ago

I sent this question to support and here's their response:

In order to deploy a Manipulate dynamic object without the originating cell, we can use the function CDFDeploy. CDFDeploy will create a CDF file on the desired location based only on the expression given. Therefore, I suggest using the function to create such CDF file, for example:

d = Manipulate[Plot[Sin[x (1 + a x)], {x, 0, 6}], {a, 0, 2}];
CDFDeploy["manipulate.cdf", d]

The above will create a CDF file with the Manipulate created on the default Directory[]. You can also give a path to the resulting file.

POSTED BY: Chris Saunders

Thanks.

This approach using CDFDeploy does not allow exporting of multiple selected cells or cells containing multiple expressions; only of a single expression.

Still, useful to know, for lack of documentation on File > CDF Preview.

POSTED BY: Tom Verhoeff
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard