Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 49.596.967 Times

Flash Component Tutorial freeware
Filter: All | Freeware | Demo
 

Flash Component Tutorial

< 1 2 3 4 5 > 
Added: November 06, 2010 | Visits: 1.046

POE::Component::Server::HTTP POE::Component::Server::HTTP is a foundation of a POE HTTP Daemon. SYNOPSIS use POE::Component::Server::HTTP; use HTTP::Status; my $aliases = POE::Component::Server::HTTP->new( Port => 8000, ContentHandler => { / => &handler1, /dir/ => sub { ... }, /file => sub { ... } }, Headers =>...



Platforms: *nix

License: Freeware Size: 16.38 KB Download (93): POE::Component::Server::HTTP Download

Added: January 13, 2010 | Visits: 1.899

Array::Each::Tutorial Array::Each::Tutorial - POD giving various examples how to use Array::Each. SYNOPSIS man Array::Each man Array::Each::Tutorial or perldoc Array::Each perldoc Array::Each::Tutorial Overview This tutorial contains only POD, so dont do this: use Array::Each::Tutorial; # dont do this...





Platforms: *nix

License: Freeware Size: 20.48 KB Download (120): Array::Each::Tutorial Download

Added: June 07, 2010 | Visits: 2.094

Test::Unit::Tutorial Test::Unit::Tutorial is a Perl module that contains a tutorial on unit testing. SYNOPSIS perldoc Test::Unit::Tutorial Here should be extensive documentation on what unit testing is, why it is useful, and how to do it with the Test::Unit collection of modules. Sorry for not implementing...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (243): Test::Unit::Tutorial Download

Added: March 02, 2010 | Visits: 1.562

Chatbot::Alpha::Tutorial Chatbot::Alpha::Tutorial is a beginners guide to Chatbot::Alpha 2.x. INTRODUCTION What is Chatbot::Alpha? Chatbot::Alpha is a Perl module for reading and processing Alpha code. Alpha code is a command-driven response language, primarily used for chatterbots. The language format is quite...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (108): Chatbot::Alpha::Tutorial Download

Added: July 04, 2010 | Visits: 1.615

OpenInteract2::Manual::Tutorial OpenInteract2::Manual::Tutorial is a Perl module that will teach learn you how to create and modify a package. SYNOPSIS This tutorial will show you the different methods for creating a package and how to maintain them. CREATING THE PACKAGE A word on the example For our example were...


Platforms: *nix

License: Freeware Size: 931.84 KB Download (98): OpenInteract2::Manual::Tutorial Download

Added: September 17, 2010 | Visits: 1.036

POE::Component::Player::Musicus POE::Component::Player::Musicus is a POE wrapper for the musicus audio player. SYNOPSIS use POE qw(Component::Player::Musicus); $musicus = POE::Component::Player::Musicus->new(); $musicus->play("test.mp3"); POE::Kernel->run(); This POE component is used to manipulate the musicus player...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (91): POE::Component::Player::Musicus Download

Added: August 16, 2010 | Visits: 852

POE::Component::OSCAR POE::Component::OSCAR is a POE component for the Net::OSCAR module. SYNOPSIS use POE qw(Component::OSCAR); [ ... POE set up ... ] sub _start { # start an OSCAR session $oscar = POE::Component::OSCAR->new(); # start an OSCAR session with automatic throttling of new connections # to...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (89): POE::Component::OSCAR Download

Added: April 01, 2010 | Visits: 1.434

Net::DBus::Tutorial::ExportingObjects Net::DBus::Tutorial::ExportingObjects is a Perl module that contains tutorials on providing a DBus service. This document provides a tutorial on providing a DBus service using the Perl Net::DBus application bindings. This examples in this document will be based on the code from the...


Platforms: *nix

License: Freeware Size: 94.21 KB Download (89): Net::DBus::Tutorial::ExportingObjects Download

Added: September 26, 2010 | Visits: 1.374

Template::Tutorial::Datafile Template::Tutorial::Datafile is a Perl module for creating Data Output Files Using the Template Toolkit. This tutorial gives an overview of the Template Toolkit, showing in particular how to use it to read and write data files in various different formats and styles. It was written by Dave...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (94): Template::Tutorial::Datafile Download

Added: September 26, 2010 | Visits: 1.166

yagg::Tutorial yagg::Tutorial is a Perl module that contains a tutorial for yagg. SYNOPSIS # To use the generator ./yagg -m nonterminals.yg terminals.lg ./output/progs/generate 5 This tutorial will show you how to use yagg, by way of two examples. In the first example, we create a simple logical...


Platforms: *nix

License: Freeware Size: 215.04 KB Download (95): yagg::Tutorial Download

Added: January 09, 2010 | Visits: 930

POE::Component::DebugShell::Jabber POE::Component::DebugShell::Jabber is a Perl component to allow interactive peeking into a running POE application via Jabber. SYNOPSIS use POE::Component::DebugShell::Jabber; POE::Component::DebugShell::Jabber->spawn( jabber_package => POE::Component::Jabber::Client::XMPP, jabber => {...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (88): POE::Component::DebugShell::Jabber Download

Added: July 27, 2010 | Visits: 1.053

POE::Component::Player::Xmms POE::Component::Player::Xmms is a wrapper for the Xmms player. SYNOPSIS use POE qw(Component::Player::Xmms); POE::Component::Player::Xmms->spawn({ alias => xmms }); $kernel->post(xmms => play => test.mp3); POE::Kernel->run(); This component is used to manipulate the Xmms player from...


Platforms: *nix

License: Freeware Size: 95.23 KB Download (92): POE::Component::Player::Xmms Download

Added: February 16, 2010 | Visits: 877

POE::Component::NomadJukebox POE::Component::NomadJukebox is an event-based contol of Nomad Jukebox players. SYNOPSIS use POE qw(COmponent::NomadJukebox); use Data::Dumper; POE::Session->create( inline_states => { _start => sub { POE::Component::NomadJukebox->create({ alias => njb }); }, njb_started => sub {...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (88): POE::Component::NomadJukebox Download

Added: April 23, 2010 | Visits: 1.055

POE::Component::Player::Slideshow POE::Component::Player::Slideshow is a wrapper for the qiv application. SYNOPSIS use POE qw(Component::Player::Slideshow); $mp = POE::Component::Player::Slideshow->new(); $mp->play("/tmp/pix"); POE::Kernel->run(); This component is used to manipulate a slideshow viewer from within a...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (92): POE::Component::Player::Slideshow Download

Added: April 02, 2010 | Visits: 1.097

POE::Component::Player::Mpg123 SYNOPSIS use POE qw(Component::Player::Mpg123); $mp = POE::Component::Player::Mpg123->new(); $mp->play("/tmp/test.mp3"); POE::Kernel->run(); This component is used to manipulate the mpg123 player from within a POE application. The less common but open-source mpg321 has also been tested....


Platforms: *nix

License: Freeware Size: 7.17 KB Download (103): POE::Component::Player::Mpg123 Download

Added: April 16, 2010 | Visits: 1.006

POE::Component::Enc::Mp3 POE::Component::Enc::Mp3 is a mp3 encoder wrapper. SYNOPSIS use POE qw(Component::Enc::Mp3); $mp3 = POE::Component::Enc::Mp3->new($bitrate => 160); $mp3->enc("/tmp/tst.wav"); POE::Kernel->run(); This POE component encodes raw audio files into mp3 format. It is merely a wrapper for the...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (122): POE::Component::Enc::Mp3 Download

Added: May 26, 2010 | Visits: 1.802

Catalyst::Manual::Tutorial::AdvancedCRUD Catalyst::Manual::Tutorial::AdvancedCRUD is a Catalyst Tutorial - Part 8: Advanced CRUD. Add a Form Creation Helper Method Open lib/MyApp/Controller/Books.pm in your editor and add the following method: =head2 make_book_widget Build an HTML::Widget form for book creation and updates...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (98): Catalyst::Manual::Tutorial::AdvancedCRUD Download

Added: June 19, 2010 | Visits: 1.043

PoJoe Component Libraries PoJoe Component Libraries project is a set of Java POJO components, originally developed for OSMQ. Developers have found these components useful in building robust enterprise applications. Of note are: a FIFO queue that utilizes memory until a size threshold is reached, paging overflow elements...


Platforms: *nix

License: Freeware Size: 890.88 KB Download (90): PoJoe Component Libraries Download

Added: November 25, 2010 | Visits: 1.772

Wx::ActiveX::Flash Wx::ActiveX::Flash is an ActiveX interface for Shockwave Flash. SYNOPSIS use Wx::ActiveX::Flash ; my $flash = Wx::ActiveX::Flash->new( $parent , -1 , wxDefaultPosition , wxDefaultSize ); $flash->LoadMovie(0,"file:///F:/swf/test.swf") ; $flash->Play ; EVT_ACTIVEX($this, $flash...


Platforms: *nix

License: Freeware Size: 54.27 KB Download (284): Wx::ActiveX::Flash Download

Added: October 11, 2010 | Visits: 1.606

XML::Smart::Tutorial XML::Smart::Tutorial is a Perl module with tutorials and examples for XML::Smart. SYNOPSIS This document is a tutorial for XML::Smart and shows some examples of usual things..


Platforms: *nix

License: Freeware Size: 50.18 KB Download (118): XML::Smart::Tutorial Download

< 1 2 3 4 5 >