<initialize>

Defines a node to advance to where a YouTube video is to be played.

In order for YouTube videos to play properly, the <initialize> tag must be used in the previous node.

The YouTube video(s) should be defined within a <media> tag that is defined within a <youtube_medias> tag in the specified node. The URL defined within the <file> tag must be the embed URL for the video. To obtain the embed URL, click the "Embed" button below the video on the YouTube site. The embed URL is in the value attribute within the param tag.

Child of: <youtube_medias>
Parent of: Nothing

Example:

<node name="youtube_setup">
            <youtube_medias>
                        <initialize>youtube_node</initialize>
            </youtube_medias>
</node>

<node name="youtube_node">
            <youtube_medias>
                        <media>
                                    <file>http://www.youtube.com/...</file>
                        </media>
                        <media>
                                    <file>http://www.youtube.com/...</file>
                        </media>
            </youtube_medias>
</node>