Hi I am not sure if its because its late tonight but I cannot seem to solve this issue.
After I add an associative array to an array, I print the count of the array, it comes up as 0.
Based on the documentation I should use Append, to add an Associative Array entry to an Array.
json = fetch_JSON(api_url)
limit=10
ssContentA = CreateObject("roArray", limit, true)
ssContentAA = CreateObject("roAssociativeArray")
for i=0 to limit-1 step 1
blogname = json.response.liked_posts.blog_name
ssContentAA.AddReplace("TextOverlayBody",blogname)
ssURL=json.response.liked_posts.photos[0].original_size.url
ssContentAA.AddReplace("url",ssURL)
ssContentA.Append(ssContentAA) ' this is correct no???
end for
print ssContentA.Count() ' comes up as 0 !
Thanks to anyone who can help keep my sanity
AC