Vos commentaires

This code has video files, not URLs? Did you change it for the example?

Also you will need to add seekto on the videocontrol tag and not the video tag.
It turns out that valignment is currently only supported on the textfield tag. I have updated the documentation. However, you can still accomplish this task by wrapping your text tags in panels to achieve the same effect:



<wire>

<main>
<panel name="one" ypos="100" align="center" width="600" height="150" bordercolor="ffffff" borderwidth="3" leftpad="8">
<text name="text1" align="center" valign="top" width="600" height="fit" alignment="left" color="#ffffff" font="georgia" size="20" text="This has alignment=left, valignment=top" />
</panel>
<panel name="two" bottomof="one" align="center" width="600" height="150" bordercolor="ffffff" borderwidth="3">
<text name="text1" align="center" valign="center" width="600" height="fit" alignment="center" color="#ffffff" font="georgia" size="20" text="This has alignment=center, valignment=center" />
</panel>
<panel name="three" bottomof="two" align="center" width="600" height="150" bordercolor="ffffff" borderwidth="3" rightpad="8">
<text name="text1" align="center" valign="bottom" width="600" height="fit" alignment="right" color="#ffffff" font="georgia" size="20" text="This has alignment=right, valignment=bottom" />
</panel>
</main>

</wire>
Gavin,

Let me take a look at this issue. I will get back with you.
Brandon,

nice to see you trying out the video tag. Can you give me a little more context into the problem? Is this video hosted in your Wire or through a URL? Are you using the seekto attribute?
You should be able to perform a reverse of the replace simply by swapping the target and replacement values and using the second object to trigger a second action. Basically recreate the action in opposite.

At this time I don't think you will ever be able to use a child within a replace for the reasons I listed above.
If you are still having issues, you may consider emailing me and sharing your apple login credentials, maybe I will be able to go in there and see what you are doing wrong.
It looks like you are trying to replace the panel with one of its children. This is probably what is causing the problem. Once FLIPPANEL1 replaces, it can't find the child because it got replaced too. I would pull out your MSLTINFO web panel and make it a sibling to FLIPPANEL1. This should fix the issue.