I’m using FinalBuilder 6.3.0.2026.
I have an Ini File Iterator which is set to Iterate over a Section’s Values, putting the Name into Scan_ItemName, and the Value in to Scan_ItemValue.
When I do this with a file that has two lines with the same Name, but different values, I see the first data twice and the second data not at all.
eg. the lines:
SomethingElse=another
SomethingElse=something completely different
Will load the Name “SomethingElse” twice, but with the Value “another”. It doesn’t even matter if there are items with other names between the two lines (in the one section).
Is this expected behaviour?
Included is a tiny sample (script and data).TestIni.zip (1.813 KB)
Ah, my fault.
It seems this is quite legitimate for handling .ini files. I wasn’t aware of that.
It still strikes me as odd, and it would be neat if each successive value could be presented, rather than lost (from what I understand, such behaviour wouldn’t be incorrect - the situation is explicitly undefined).