Message Unknown Appearing in Valid JSL Code
Recently, I have noticed that JSL is reporting unknown message for valid code. Below is the latest example (unknown messages highlighted): Names Default to Here(1);
Delete Symbols();
databaseFile = Pick File(
"Select Music Collection File",
"$DOCUMENTS",
{"Music Collection|csv"},
1,
0
);
albumTable = Open(databaseFile);
albumTable << Delete Rows(N Rows());
:Name("Artist/Album") << Set Name
...