Archive for October, 2005

Video: Shining

Wednesday, October 12th, 2005 by Matthias

A post-production house organized a competition where assistant editors re-cut trailers for famous movies to try and make them seem like different movies.

This is the winner: Shining

Flash: Create a Video background pattern in Flash 8

Wednesday, October 12th, 2005 by Luis

Someone ask me about creating a background pattern with video, which it is not a big deal since we can use MovieClip.beginBitmapFill method in order to fill a drawing area with a bitmap image or like in this case with a video by using the BitmapData.draw method.

SWF sample (You need a webcam):

[flash]http://www.blog.lessrain.com/wp-content/upload/tilebackground3.swf,400,200[/flash]

Actionscript:
  1. import flash.display.BitmapData;
  2.  
  3. var w:Number = Stage.width;
  4. var h:Number = Stage.height;
  5. var columns:Number = 6;
  6. var rows:Number = 3;
  7.  
  8. this.attachMovie("videoContainer", "myVideoContainer", 10);
  9. var my_cam:Camera = Camera.get();
  10.  
  11. myVideoContainer.video.attachVideo(my_cam);
  12. myVideoContainer.video._width = Math.round(w/columns);
  13. myVideoContainer.video._height =Math.round(h/rows);
  14.  
  15. var pattern:BitmapData = new BitmapData(myVideoContainer.video._width, myVideoContainer.video._height, false, 0);
  16.  
  17. function createTiles():Void {
  18.     with (_level0) {
  19.         beginBitmapFill(pattern);
  20.         moveTo(0, 0);
  21.         lineTo(w, 0);
  22.         lineTo(w, h);
  23.         lineTo(0, h);
  24.         lineTo(0, 0);
  25.         endFill();
  26.     }
  27. }
  28.  
  29. createTiles();
  30.  
  31. this.onEnterFrame=function() {
  32.     pattern.draw(myVideoContainer);
  33. }


Flash: Video Articles

Wednesday, October 12th, 2005 by Luis

Macromedia has released a couple of new interesting Flash Video articles:

Advert: Less Rain Shop Opening, this Friday

Tuesday, October 11th, 2005 by Carsten Schneider

Opening Party and Exhibition, Fri 14th, 19-22h.
Less Rain Shop, Linienstrasse 154a, 10115 Berlin

Ron Jonzo (man with pen) exibits ' Pictures from the Flowing World', a new series of paintings:

Ron Jonzo

Installation: electronic life forms (elf)

Sunday, October 9th, 2005 by Thomas

And while we're at nature (as I know it) - electronic life forms (elf) is an installation project of my friend Martina Höfflin:

'Elfs' are small mechanical systems powered by solar energy that behave as natural living systems in many aspects. The immediate compassion for these life forms is an amazing experience, even though their abilities are very limited.

I still haven't actually seen them - the video and images are already quite amazing.

Video: Plants with eyes

Sunday, October 9th, 2005 by Thomas

Nice video of CG modified plants and what seems to be 1st Ave Machine's self-promo spot.

Via JWZ.

Flash: How to de-interlace video in real-time

Sunday, October 9th, 2005 by Luis

Fabio Sonnati has a very nice and useful article in his blog about how to de-interlace video in real-time using the Convolution Filter in Flash 8.

Worth to read: Flash real-time deinterlacing best-practice.

Related Articles:

Flash: Flash 8 garbage collector benchmark

Saturday, October 8th, 2005 by Luis

Interesting benchmark test, by Frédéric Saunier, to demonstrate how the new GC behaves when we fill an array with many new instances of an object and we destroy the array.

Flash 8 garbage collector benchmark.

Related articles:

Flash: Additional Flash 8 Samples at Macromedia

Saturday, October 8th, 2005 by Luis

Apart of the sample source files that install with Flash 8 in the Samples folder on your hard disk, you can find some interesting additonal files here.

  • Alpha-enabled Video.
  • Alpha Masking.
  • Runtime Bitmap Caching (Flash Professional).
  • CellRenderer API samples
  • Multiline CellRenderer class example.
  • CheckBox and ComboBox cell renderer class examples.
  • Custom component "quickstart" template.

Useful Service: Telephone Preference Service

Saturday, October 8th, 2005 by Luis

If you are tired of receiving unsolicited sales and marketing voice recorded messages down your telephone line, take a look at TPS service, it is free and it really works!.

The Telephone Preference Service (TPS) helps you to make sure your telephone number is no longer available to organisations, including charities and voluntary organisations who may telephone you with offers and information you do not wish to receive.

Telephone Preference Service.

Flash: Key events within the Flash IDE

Saturday, October 8th, 2005 by Thomas

If you ever have trouble with Key events while testing movies inside the Flash IDE, you should set the Control - Disable Keyboard Shortcuts checkbox in the menu of the internal swf player. Keys like ENTER, PGUP, PDDN, HOME, END and more are ignored when the option isn't set!

Here's a fla if you want to see it yourself.

Software: Charles v2.2 released.

Friday, October 7th, 2005 by Luis

Charles v2.2 has now been released and can be download from here.

This release is mainly improvements and bug fixes:

  • Improved Firefox proxy configuration
  • XML viewer improvements
  • Line numbers displayed in ASCII viewer
  • more...