Yes this is possible to do. You can set up the videos remote button to cycle between tvseries and moving pictures.
I have a similar setup for my music. If i press my music then i go into my music plugin, if i'm already in my music then it goes into the now playing screen, if I'm in now playing then I go back to My Music.
<button name="My Music" code="71">
<action layer="0" condition="WINDOW" conproperty="504" command="WINDOW" cmdproperty="510" sound="click.wav" />
<action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="504" sound="click.wav" />
</button>
I'm guessing what you want should look like this:
<button name="My Videos" code="74">
<action layer="0" condition="WINDOW" conproperty="9811" command="WINDOW" cmdproperty="96742" sound="click.wav" />
<action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="9811" sound="click.wav" />
</button>
Explanation
If current window = 9811 (My TV Series), then jump to window 96742 (Moving Pictures), otherwise jump to window 9811 (My TV Series)
_____________________________________________________________
EDIT: I see you want to cycle between My Videos -> TV Series -> Moving Pictures
Try the following (I assume My Videos window ID = 6, I didn't actually check this)
<button name="My Videos" code="74">
<action layer="0" condition="WINDOW" conproperty="6" command="WINDOW" cmdproperty="9811" sound="click.wav" />
<action layer="0" condition="WINDOW" conproperty="9811" command="WINDOW" cmdproperty="96742" sound="click.wav" />
<action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="6" sound="click.wav" />
</button>
I have a similar setup for my music. If i press my music then i go into my music plugin, if i'm already in my music then it goes into the now playing screen, if I'm in now playing then I go back to My Music.
<button name="My Music" code="71">
<action layer="0" condition="WINDOW" conproperty="504" command="WINDOW" cmdproperty="510" sound="click.wav" />
<action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="504" sound="click.wav" />
</button>
I'm guessing what you want should look like this:
<button name="My Videos" code="74">
<action layer="0" condition="WINDOW" conproperty="9811" command="WINDOW" cmdproperty="96742" sound="click.wav" />
<action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="9811" sound="click.wav" />
</button>
Explanation
If current window = 9811 (My TV Series), then jump to window 96742 (Moving Pictures), otherwise jump to window 9811 (My TV Series)
_____________________________________________________________
EDIT: I see you want to cycle between My Videos -> TV Series -> Moving Pictures
Try the following (I assume My Videos window ID = 6, I didn't actually check this)
<button name="My Videos" code="74">
<action layer="0" condition="WINDOW" conproperty="6" command="WINDOW" cmdproperty="9811" sound="click.wav" />
<action layer="0" condition="WINDOW" conproperty="9811" command="WINDOW" cmdproperty="96742" sound="click.wav" />
<action layer="0" condition="*" conproperty="-1" command="WINDOW" cmdproperty="6" sound="click.wav" />
</button>
New Zealand