Hello good people!
I’m having a problem using the XMLList.contains() method. It seems to run like it should, but I keep getting these annoying warnings in the output window:
Warning: 3594: contains is not a recognized method of the dynamic class XMLList.
I’m adding an item from xmllist1 to xmllist2 if its value is as required and if it isn’t already present in xmllist2. Here’s the code:
xmllist2 += xmllist1.((value >= required) && (xmllist2.contains(@ID) == false)).@ID;
Does anyone have experience with this warning, or hints on how to get rid of it?
Appreciate it!