Tell me more ×
Mathematica Stack Exchange is a question and answer site for users of Mathematica. It's 100% free, no registration required.

I have a Mathematica Enterprise License, which lets me export Pro-feature CDFs. One of the benefits is supposed to be removal of branding and full customization of UI. Does anyone know how to get that done? Because in Player and in Plugin, I'm still getting the Wolfram Bar and all the usual stuff.

share|improve this question
5  
Seems to me to be an issue you should take up with WRI support. – m_goldberg Mar 2 at 0:23
2  
Here is faster! – Murta Mar 2 at 0:57
1  
@Murta The information I was given by wolfram was that CDF enterprise users had 24 hour tech support. However I didn't read the fine print -- so maybe this means you can ask a question 24/7 but it doesn't mean you get an answer any faster :) – Mike Honeychurch Mar 2 at 1:24
1  
They have a very fast support in the Enterprise, I use it a lot and I'm happy with it. But SE can be even faster! :) – Murta Mar 2 at 2:05

1 Answer

up vote 18 down vote accepted

This is the sequence of commands that I use to create my CDFs.

testCDF := DynamicModule[... some nice code]

nb = CreateDocument[{testCDF}
    ,Visible -> False
    ,WindowTitle->"Export Test"
    ,WindowMargins->Automatic
    ,WindowSize->Automatic
    ,WindowElements->{"VerticalScrollBar","HorizontalScrollBar"}
    ,ShowCellBracket->False
    ,Deployed->True
];

(*options to remove wolfram toolbar*)
SetOptions[nb, PrivateNotebookOptions -> {"PluginToolbarEnabled" -> False}];

CDFDeploy[NotebookDirectory[] <> "ExportTests2.cdf", 
  nb,
  "Method"->"Standalone",
  "Target"->"PlayerPro"
];

NotebookClose[nb];

The command to remove Wolfram bar is commented.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.