cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
lehaofeng
Level V

Why is caption not displaying properly?

caption("Warning:xxxxxxx")

My computer is a mac system with jmp17, every time I use caption it doesn't display the text, I don't know what's the reason, thanks!

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Why is caption not displaying properly?

Have you tried to run the example from the Scripting Index to make sure it is working?

 

Names Default To Here( 1 );
Caption(
	{100, 200},
	"explanation",
	Font( "Arial Black" ),
	Font Size( 16 ),
	Text Color( "blue" ),
	Back Color( "yellow" ),
	Spoken( 1 ),
	Delayed( 1 )
);

 Also, any option arguments from one Caption() function call are remembered in the next call. They act like defaults for subsequent calls. Does it fail on the first and every subsequent call, or fail only on some calls?

View solution in original post

2 REPLIES 2

Re: Why is caption not displaying properly?

Have you tried to run the example from the Scripting Index to make sure it is working?

 

Names Default To Here( 1 );
Caption(
	{100, 200},
	"explanation",
	Font( "Arial Black" ),
	Font Size( 16 ),
	Text Color( "blue" ),
	Back Color( "yellow" ),
	Spoken( 1 ),
	Delayed( 1 )
);

 Also, any option arguments from one Caption() function call are remembered in the next call. They act like defaults for subsequent calls. Does it fail on the first and every subsequent call, or fail only on some calls?

lehaofeng
Level V

Re: Why is caption not displaying properly?

Thank you for your answer! It works perfect!

Recommended Articles