Video-Dumper-QuickTime

 view release on metacpan or  search on metacpan

samples/DumpQuickTime.pl  view on Meta::CPAN


sub copyItemText {
    my $path = shift;
    my $text = $tree->itemCget( $path, 0, '-text' );

    $tree->Busy( -recurse => 1 );
    if ( $tree->info( children => $path ) ) {
        openTree( $tree, $path, 1 );
    }
    else {
        $tree->clipboardClear ();
        $tree->clipboardAppend ($text);
    }

    $tree->Unbusy();
}

sub openTree {
    my $tree = shift;
    my ( $entryPath, $openChildren ) = @_;
    my @children = $tree->info( children => $entryPath );



( run in 0.900 second using v1.01-cache-2.11-cpan-84e82930d8c )