Results 1 to 2 of 2

Thread: Python executes before boxee is finished

  1. #1

    Default Python executes before boxee is finished

    This is probably normal, but I just wanted confirmation from the experts before I introduce ugliness into my code. I have a python script that assigns items to a list like so:

    Code:
        mc.GetActiveWindow().GetList(120).SetContentURL(currItem.GetPath())
        myItems=mc.GetActiveWindow().GetList(120).GetItems()
        mc.ShowDialogOk("Debug", "classItems length is: " + str(len(classItems))
    The above code will show the length as 0 in the dialog. But, if I pause the code like so:

    Code:
        mc.GetActiveWindow().GetList(120).SetContentURL(currItem.GetPath())
        time.sleep(5)
        myItems=mc.GetActiveWindow().GetList(120).GetItems()
        mc.ShowDialogOk("Debug", "classItems length is: " + str(len(classItems))
    It will show the correct number of items for classItems. Boxee seems to execute the next line of code in python before it finishes populating the content from SetContentURL(). Using sleep seems like a bad idea because the URL request could take longer than my sleep time.

    Is this normal behavior?
    Any ideas on a good way to deal with it?

  2. #2

    Default

    I found a thread from October that addressed this (http://forums.boxee.tv/showthread.php?t=12203). At the time, an "IsLoading" method was planned for python. Does anyone know if any progress has been made?
    Last edited by jeepsterryan; June 17th, 2010 at 11:39 PM.

Similar Threads

  1. Replies: 1
    Last Post: August 5th, 2011, 11:50 AM
  2. Mark as "Watched" when finished watching
    By flynn in forum feature requests
    Replies: 12
    Last Post: November 14th, 2010, 09:51 PM
  3. Hulu is finished on Boxee......
    By lineout in forum boxee for appletv help
    Replies: 8
    Last Post: May 10th, 2009, 09:00 AM
  4. Can't remove finished download.
    By killa in forum boxee for mac help
    Replies: 9
    Last Post: May 5th, 2009, 11:20 AM
  5. No screensaver after album play is finished
    By yoavf in forum bugs? what bugs?
    Replies: 1
    Last Post: October 29th, 2008, 01:53 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •