cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Have your say in shaping JMP's future by participating in the new JMP Wish List Prioritization Survey
Choose Language Hide Translation Bar
lala
Level VII

如何修改软件的默认设置: 使进行数据表汇总时、这个选项默认不钩选

大家好!

 

如何修改软件的默认设置: 使进行数据表汇总时、这个选项默认不钩选。谢谢!

2022-04-16_17-09-47.png

 

2 ACCEPTED SOLUTIONS

Accepted Solutions
txnelson
Super User

Re: 如何修改软件的默认设置: 使进行数据表汇总时、这个选项默认不钩选

There is not a global preference that can be set to change this, however you can change the pull down menu to not show the default Summary platform, but instead add your own, which calls the original, which has the option overridden.

  1. Go to    View=>Customize=>Menus and Toolbars
  2. Click on "Tables" to display the submenus
  3. Click on "Summary"
    1. Select the check box "Hidden"
    2. Click "Save"
  4. Now add the new summary menu by Right Clicking on the "Summary" and select "Insert After
  5. Click on the new entry and In the new dialog window
    1. Change the Internal name to "mysummary"
    2. Change the Caption to "My Summary"
    3. In the "Run this JSL:", change 
      print("Not implemented.");

      to

      summary();
      win = Window( "Summary" );
      (win[CheckBoxbox( 2 )]) << set( 1, 0 );
    4. Click Save
    5. Click OK

Now when you go to the Tables pull down menu, selecr My Summary, and the Link to Original will be unselected

txnelson_0-1650105197254.png

 

Jim

View solution in original post

txnelson
Super User

Re: 如何修改软件的默认设置: 使进行数据表汇总时、这个选项默认不钩选

I suspect the issue is that the JSL is assigning the variable "Win" to point to the Window titled Summary.  In Chinese Simplified, the window title is 

txnelson_0-1650121008734.png

Change out the English word "Summary" for txnelson_1-1650121073280.png and see if that fixes the issue.

 

Jim

View solution in original post

6 REPLIES 6
txnelson
Super User

Re: 如何修改软件的默认设置: 使进行数据表汇总时、这个选项默认不钩选

There is not a global preference that can be set to change this, however you can change the pull down menu to not show the default Summary platform, but instead add your own, which calls the original, which has the option overridden.

  1. Go to    View=>Customize=>Menus and Toolbars
  2. Click on "Tables" to display the submenus
  3. Click on "Summary"
    1. Select the check box "Hidden"
    2. Click "Save"
  4. Now add the new summary menu by Right Clicking on the "Summary" and select "Insert After
  5. Click on the new entry and In the new dialog window
    1. Change the Internal name to "mysummary"
    2. Change the Caption to "My Summary"
    3. In the "Run this JSL:", change 
      print("Not implemented.");

      to

      summary();
      win = Window( "Summary" );
      (win[CheckBoxbox( 2 )]) << set( 1, 0 );
    4. Click Save
    5. Click OK

Now when you go to the Tables pull down menu, selecr My Summary, and the Link to Original will be unselected

txnelson_0-1650105197254.png

 

Jim
lala
Level VII

Re: 如何修改软件的默认设置: 使进行数据表汇总时、这个选项默认不钩选

Thank Jim!

2022-04-16_18-56-28.png

lala
Level VII

Re: 如何修改软件的默认设置: 使进行数据表汇总时、这个选项默认不钩选

非常可惜、当软件默认语言设为 "简体中文"时、

这样设置出现错误提示

2022-04-16_19-55-46.png

txnelson
Super User

Re: 如何修改软件的默认设置: 使进行数据表汇总时、这个选项默认不钩选

I suspect the issue is that the JSL is assigning the variable "Win" to point to the Window titled Summary.  In Chinese Simplified, the window title is 

txnelson_0-1650121008734.png

Change out the English word "Summary" for txnelson_1-1650121073280.png and see if that fixes the issue.

 

Jim
lala
Level VII

Re: 如何修改软件的默认设置: 使进行数据表汇总时、这个选项默认不钩选

可以了、感谢您的帮助!

2022-04-17_08-12-19.png

lala
Level VII

Re: 如何修改软件的默认设置: 使进行数据表汇总时、这个选项默认不钩选

继续请教软件默认设置的问题:

如何使新生成的数据表文件不产生  "源"  的脚本

2022-04-17_08-41-50.png