[texworks] SCRIPTS: TW.getItem() returning everything lower case?

Stefan Löffler st.loeffler at gmail.com
Thu Dec 9 15:11:12 CET 2010


On 2010-12-09 10:48, Paul A Norman wrote:
> Oh well, its still there some times -
>
> var optionsList = new Array("Abcd","abcd","ABCD","ABCD","Efgh", "EFGH");
>
> didn't completely solve it.
>
> I'll focus on Qt forums - unless someone comes up with another idea here.

What about this:
var optionsList = new Array();
optionsList[0] = "Abcd";
optionsList[1] = "abcd";
optionsList[2] = "ABCD";
optionsList[3] = "ABCD";
optionsList[4] = "Efgh";
optionsList[5] = "EFGH";

-Stefan


More information about the texworks mailing list