How to add Next Page to Video List????
#1
I'm trying to make a Video addon. It have over 300 videos on that Xml file.

My code is getting Names and link from xml file and shows in a single List...

How to make show 30 Videos per Page?

Mean After 30 Videos wanna have Next Page
Then I press Next Page wanna get Next 30 Videos...
Reply
#2
well there are many ways, but in my case I usually have url which lists number of results or within the result there is indication for number of results.


http://blahblah/?start=0&max=30

so for example if my url returns max 30 results as above, but there is also key value indicating 300 results then first i add 30 results, then below that I add if statement for if 30 is less than 300 print another result to load same directory again but name would be "Next Page" and url would be http://blahblah/?start=30&max=30. So when you run addon, it'll grab 30 results first and then there is one more "Next Page" with new url.

Hope its clear.
Reply

Logout Mark Read Team Forum Stats Members Help
How to add Next Page to Video List????0