Page 1 of 1

JSONObjectSize and ExtractJSONStructure

Posted: Thu May 21, 2015 6:30 pm
by hichem
hi there,
i'm very happy to join the community of spiderbasic
i have some issues with the json lib please help.
1. seems like JSONObjectSize is not working, i launched the example relative to it but the debugger don't show anything.
2. let's say that i have this structures

Code: Select all

Structure bar
  item2.i
EndStructure  

Structure foo
  item.i
  List items.bar()
EndStructure  

global var.foo


i want to use ExtractJSONStructure to fill the bar list in the foo

ExtractJSONStructure(JSONValue, @foo\bar() ,bar) won't work !
thank you.