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


XML-ASX documentation  | view source Contained in the XML-ASX distribution.

Index


NAME

Top

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

SYNOPSIS

Top

  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

Top

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

Top

Allen Day, <allenday@ucla.edu>

SEE ALSO

Top

Video::Info


XML-ASX documentation  | view source Contained in the XML-ASX distribution.