The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

XML::ASX::Event - Manipulate playback of a block of XML::ASX::Entry

SYNOPSIS

  use XML::ASX::Event;
  my $event = XML::ASX::Event->new;
  $event->name('The Big Bang');
  $event->whendone('NEXT');
  $ent1 = $event->add_entry;
  $ent->url('http://www.com/1.asf');
  $ent1 = $event->add_entry;
  $ent->url('http://www.com/2.asf');
  print $event;

DESCRIPTION

The code snippet from the synopsis will produce this:

  <Event NAME="The Big Bang" WHENDONE="NEXT">
    <Entry><Ref href="http://www.com/1.asf"></Entry>
    <Entry><Ref href="http://www.com/2.asf"></Entry>
  </Event>

Read more about events at MSDN.

AUTHOR

Allen Day, <allenday@ucla.edu>

SEE ALSO

Video::Info