Tutorial - Creating a reusable Slider Control / Component

Hi Everyone,
Today I will cover the subject of creating a reusable slider control which takes two bitmaps as resources. The thumb bitmap will slide on the rail bitmap. It is a very simple concept!
We will basically take this image: and this one: and make this (try it, move that knob):

In fact, [...]

Tutorial - Multi Touch in AS3 / Flash Player 10.1 - Part 2. TouchEvent & MouseEvent Sequences

Hi Everyone,
In this installment I will cover the TouchEvent and how it is intertwined with MouseEvent. First you need to understand that touches will fire MouseEvent’s too. You will get a TouchEvent first, then a MouseEvent. This can prove annoying in some cases, and good in others.
For the complete listing of TouchEvent’s as [...]

TubeGripClient - Play Any Movie on YouTube in AS3 with your own player!

Hi Everyone,
as some of you might have noticed, KeepVid went downhill. I don't know exactly when, however I found an alternative: http://www.tubegrip.com. It works pretty well...
Here is a sample use of this library:
PLAIN TEXT
Actionscript:

public function startTest():void

{

    _client = TubeGripClient.getInstance();

 

    // this takes a url from YouTube they call Watch Urls.. basically, the url [...]

Tutorial - Consuming REST web services in ActionScript 3 - Part 4

Hi Everyone,
this is a follow-up to the following posts:

Part 1
Part 2
Part 3

In this post, I will add code to identify each request uniquely, give you a class called "AbstractClient" that will handle most of the mechanics and is easily extended. The idea is to give you a base on which to build. Essentially, for [...]

Tutorial - Playing FLV video in plain AS3 - Part 4 - Sample Usage

Hi Everyone..
This is the fourth (and most probably the last) installment of this series on playing FLV (and H.264 MP4) video in Flash from scratch.
Full source code for the library is here.
The related posts are:

Part 1
Part 2
Part 3

For many of you, this might be the only post you are interested in. It will [...]

Tutorial - Playing Video with SubTitles in AS3 - Part 1

Hi Everyone,
The series on Playing FLV files in AS3 was probably the most popular post on this blog. So I thought I would take it one step further: show SubTitles from an .SRT file over the FLV while it is playing.
First, you need to read this post by Jankees van Woezik. He did a great [...]

Should we start learning Javascript once again?

Hi Everyone,
with HTML 5 being adopted by more and more browsers out there, with DailyMotion releasing an HTML5 version of the movie profile page, and YouTube doing the same; there comes a question: should I get back to learning Javascript?
The posts on the subject abound all over the internet:
HTML 5 versus Flash / Flex

Digital [...]

Study - The Video Players of Social Networks (YouTube, DailyMotion, Veoh, Vimeo, GoogleVideo, Flickr)

Hi Everyone,
I am doing research on which video player I can easily embed inside of an AS3 application. I had these players in mind: DailyMotion, Vimeo, Veoh, Youtube, GoogleVideo, and the DivShare player as a fallback. Right of the bat, the following players are still in AS2:

YouTube
DailyMotion
DivShare
GoogleVideo

While these are in AS3:

Vimeo
Veoh
Flickr

YouTube AS3 Wrapper for the ChromeLess Player

Hi Everyone,
I was toying around today to get a youtube video to play the "legal" way. Quite honestly using the little KeepVid client I made and FLVPlayer, it works fantastic.. but yeah, it isn't legal.
So after a few hours, I found a wrapper that works.. You can see it in action here.

Tutorial - Creating Custom Components (Visual Controls) in pure AS3 - Part 1

Hi Everyone,
Looking back at the last 4-5 years I spent developing Flash widgets & applications (again, I do NOT participate in marketing efforts.. so no micro-sites or bogus games for me) I realize that one of the core abilities of a good Flash application developer is his ability to develop components from scratch. The better [...]