Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JIRA

SUMMARY

DETAILS

ORG-26094

Script window always open if set @SWFS by Preferences: System Variables dialog

System variable @SWFS is added in Origin 2023 to control font in Script window.

If user opens Preferences: System Variables dialog and set the system variable. E.g. set it to 15.

Then close Script window and then close Origin.

When launching Origin.

==> The script window always shows.

Fixed in Origin2023b.

ORG-5242

page.orientation not works for Graph

Run page.orientation = 1 fails to change Graph page from Landscape to Portrait.

Fixed in Origin2023b.

ORG-26527

Keyword of Switch command case sensitive issue

Script like below fails to work in Origin 2023, user need to write keyword “Case” as lower one “case” to make it works.

Code Block
nn=2;
switch (nn)
{
	Case 1:
		type "aa";
		break;
	Case 2:
		type "bb";
		break;
	Case 3:
		type "cc";
		break;
	default:
		break;
}

Fixed in Origin2023b.

Origin C

JIRA

SUMMARY

DETAILS

...