Tweaking Animation for Main Menu Plugin item
#1
Hi all,

I'm using the following entry in Home.xml

Code:
<item id="9">
    <label>31911</label>
    <onclick>ActivateWindow(Video,plugin://plugin.video.plj/,return)</onclick>
</item>

It works, but the transition is not smooth. First it fades out the Home Window, and fades in an empty Video Window. Than immediately fades out this empty Video Window and fades in my plugin. Is there a workaround for this so the animations dont stack like this?
Reply
#2
Try RunAddon(plugin.video.plj)
Reply
#3
no go on RunAddon(), I still get the same behavior.

I was able to smooth out the transition with this:

Code:
                        <onclick>ActivateWindow(Videos,' ',return)</onclick>
                        <onclick>Container.Update(plugin://plugin.video.plj,replace)</onclick>

but now Back won't take me back to the home menu. I thought the replace option would take care of this, but maybe I'm confused about how that works.
Reply

Logout Mark Read Team Forum Stats Members Help
Tweaking Animation for Main Menu Plugin item0