Does http.request support native.setActivityIndicator( true )?Coz I am unable to do that .I have 10 images that needs to be downloaded from the server.So,I am using
for i = 1 ,10 do
local path = system.pathForFile( namesForImageinEachStory[i], system.DocumentsDirectory )
local myFile = io.open( path, "w+b" )
native.setActivityIndicator( true )
http.request{
url = linkForImages..namesForImageinEachStory[i],
sink = ltn12.sink.file(myFile),
}
end
where namesForImageinEachStory = Table for names of the images.
But the problem is that application is not showing “ActivityIndicator”.Can anybody resolve this issue? [import]uid: 45566 topic_id: 34299 reply_id: 334299[/import]