Your comments

Thanks for the reply....
I'm using a url to link to the video. Seekto works but it still flashes a black box before the video starts. Here is my code.



<panel name="vid" alias="VID" ypos="200" xpos="100" height="525" width="792" >
<video name="video" alias="VIDEO" height="100%" width="100%" controls="no" scalingmode="yes" loop="no" onstop="layer1" transparent="yes" seekto=".1"></video>
</panel>
<panel name="clickpanel" alias="CLICKPANEL" align="center" ypos="105" height="75%" width="75%" onclick="playVid2" alpha="1">
</panel>
<panel name="vid2" alias="VID2" ypos="200" xpos="100" height="525" width="792" alpha="0">
<video name="video2" alias="VIDEO2" height="100%" width="100%" controls="no" scalingmode="yes" loop="no" onstop="fadebullets" transparent="yes" seekto=".1"></video>
</panel>
<!--VIDEO-->
<action name="playVid" oninit="yes">
<vidcontrol type="play" file="videos/mol_part1.mp4" target="VIDEO" />
</action>
<action name="layer1">
<!--Click to change video-->
</action>
<action name="playVid2">
<alpha value="0" time="0" target="VID"/>
<alpha value="0" time="0" target="CLICKPANEL"/>
<alpha value="1" time="0" target="VID2"/>
<vidcontrol type="play" file="videos/mol_page2.mp4" target="VIDEO2" />
</action>


Thanks for the help.
Thanks for the help...I got it to work. One question...is there anyway to go from parent to child back to parent from child using the flips? I'm trying to do a flipleft to one and flipright back to the same page.


<wire>

<datasources></datasources>

<styles></styles>

<classes></classes>

<main>
<panel name="container" width="100%" height="100%">

<web name="bg" alias="BG" width="100%" height="100%" file="m1-dis-06.html" valign="top" />

<panel name="womanscenario" width="100%" height="100%">
<panel name="hotspot1" alias="HOTSPOT1" width="100" height="200" xpos="870" ypos="50" onclick="showPanel" clicktarget="TEXTBALLON1" />
<panel name="textballon1" alias="TEXTBALLON1" width="100%" height="100%" onclick="closePanel" clicktarget="TEXTBALLON1" alpha="0">
<image name="womanquote" alias="WOMANQUOTE" source="images/1_6-womanQuote.png" xpos="415" ypos="55" ></image>
</panel>
</panel>

<panel name="manscenario" width="100%" height="100%">
<panel name="hotspot2" alias="HOTSPOT2" width="100" height="200" xpos="870" ypos="50" onclick="showPanel" clicktarget="TEXTBALLON2" />
<panel name="textballon2" alias="TEXTBALLON2" width="100%" height="100%" onclick="closePanel" clicktarget="TEXTBALLON2" alpha="0">
<image name="manquote" alias="MANQUOTE" source="images/1_6-manQuote.png" xpos="440" ypos="105" ></image>
</panel>
</panel>

<panel name="msltpie-hotspot2" alias="MSLTPIE-HOTSPOT2" width="269" height="40" xpos="307" ypos="20" onclick="showTab2Flip" clicktarget="TABPANEL1" background="#339933" alpha=".3"></panel>

<panel name="flippanel1" alias="FLIPPANEL1" width="650" height="400" xpos="200" ypos="215" background="#ffffff" alpha="0">
<web name="msltinfo" alias="MSLTINFO" file="m1-dis-06-03.html" width="643" height="400" valign="top" />

</panel>
<panel name="tabpanel1" alias="TABPANEL1" width="650" height="400" xpos="200" ypos="215" background="#ffffff" draggable="no">
<web name="msltpie" alias="MSLTPIE" file="m1-dis-06-01.html" width="643" height="400" valign="top" />
<panel name="msltpie-hotspot" width="269" height="40" xpos="307" ypos="20" onclick="showTab2" clicktarget="TABPANEL2"></panel>
<panel name="msltflip-hotspot" width="44" height="44" xpos="50" ypos="100" onclick="flipleft" clicktarget="TABPANEL1" background="#339933" alpha=".3"></panel>
</panel>

<panel name="tabpanel2" alias="TABPANEL2" style="tabpannel" width="650" height="400" xpos="200" ypos="215" background="#ffffff" draggable="no" alpha="0">
<web name="esspie" alias="ESSPIE" file="m1-dis-06-02.html" width="643" height="400" valign="top" transparent="yes" />
<panel name="esspie-hotspot" width="277" height="40" xpos="45" ypos="20" onclick="showTab1" clicktarget="TABPANEL1"></panel>
</panel>

</panel>
</main>

<actions>
<action name="showPanel">
<alpha value="1" time=".25" />
</action>
<action name="closePanel">
<alpha value="0" time=".25" />
</action>
<action name="showTab2">
<alpha value="0" time=".25" target="TABPANEL1" />
<alpha value="1" time=".25" target="TABPANEL2" />
</action>
<action name="showTab1">
<alpha value="0" time=".25" target="TABPANEL2" />
<alpha value="1" time=".25" target="TABPANEL1" />
</action>
<action name="flipleft">
<alpha value="1" target="FLIPPANEL1" />
<replace type="flipleft" replacement="MSLTINFO" target="FLIPPANEL1"/>
<set onclickup="flipleft" />
</action>
<action name="showTab2Flip">
<replace type="flipleft" replacement="TABPANEL1" />
<alpha value="0" time=".25" target="TABPANEL1" />
<alpha value="1" time=".25" target="TABPANEL2" />
</action>
</actions>

</wire>
Sorry about that...I'm new.



>
Thanks for the response....I still get the entire wire flipping. Here is the example that I'm working with

Any help is greatly appreciated