Need help with 'stack://'+url
#1
I'm working on a CartoonNetwork plugin and the full episodes are in parts.

I'm trying to use 'stack://'+url
Code:
for clipID in clipIDs:
         videoUrl = 'stack://'
    url = getClipUrl(clipID)
    videoUrl += url + " , "
    videoUrl = videoUrl[0:-3]

This returns:

stack://http://part_1
stack://http://part_2
stack://http://part_3

What I need, I think is stack://http://part_1 , http://part_2 , http://part_3

default.py http://pastebin.com/VK2cNBDv

Thanks for any help.
Reply
#2
You want the initialisation of videoUrl outside the for loop. The tvnz plugin assembles a stack url.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#3
Thanks!
Reply

Logout Mark Read Team Forum Stats Members Help
Need help with 'stack://'+url0