I have two questions related to this simple code:
CDFDeploy[SystemDialogInput["FileSave"],
Panel[Row[{Button[Text[Style["sav", FontSize -> Scaled[.2]]],ImageSize -> Scaled[.2]],
Button[Text[Style["save", FontSize -> Scaled[.2]]],ImageSize -> Scaled[.2]]}],
ImageSize -> Scaled[2]], WindowSize -> Scaled[2]]
Sometimes, I am getting
Internal Self-Test Error. Why?I am able to scale
Buttonsize,FontsizeandPanelsize in the Horizontal direction but not in the vertical direction. How to do this?
Scaled? --Scaled[{x,y}]? $\endgroup$Scaledtoo. Remove it from theImageSizeoptions and the error is gone. Can you live with absolute quantities?ImageSize -> {100, 200}just works. $\endgroup$