Tuesday, April 28, 2009

awesome collection of Unix Commands

http://www.commandlinefu.com/commands/browse

Tuesday, April 21, 2009

Flex and Coldfusion tutorials

http://sherifabdou.com/category/coldfusion/

Saturday, April 18, 2009

How to play mp3 on Linux

Linux gives us manything., mp3 support not one of them.

you have to google for getting info about how to configure mp3 support on Linux.

this link will show you how to configure mp3 support on Linux. Enjoy (if it works)

http://forums.fedoraforum.org/showthread.php?t=106220


Monday, April 13, 2009

links

The following links has some articles which gives some basic insight of Face reading.

http://www.managementparadise.com/forums/archive/index.php/t-10405.html

the below link has a very little content is being exhibited and that really worth reading..

http://books.google.co.in/books?id=Et12jGDfM7YC&dq=face+reading&printsec=frontcover&source=bl&ots=6nWD8xrfu5&sig=eWkQQeeMSmk1N90TGu9Shk8q8Iw&hl=en&ei=_xDjSf-xNIj6kAXSuZ3YCw&sa=X&oi=book_result&ct=result&resnum=2#PPA7,M1


http://www.radio86.co.uk/node/6929/

Friday, September 14, 2007

Accessing FLVPlayback component from ActionScript

Initializing FLV Playback component

import mx.video.FLVPlayback;
var flvpl:FLVPlayback;
Stage.showMenu = false;
flvpl._visible=false;
flvpl.volume=0;
flvpl.contentPath="video_1.flv";

Accessing flvplayback components constraint to the cliplength.. inorder to achieve we gotta find the given cliplength at runtime...

Where given below x is a playhead time and we can find the cliplength by using


flvpl.totalTime()

Here the given 108.5 have been acquired from the totalTime() and operated for some purpose...
On seeing the code...


function check() {
x =Math.abs(flvpl.playheadTime);
if (x>=108.5) {
pl_agn._visible = true;
flvpl.stop();
}
}
setInterval(check,500);

The setInterval for checking for playhead on regular interval



pl_agn.onRelease = function() {
flvpl.playheadTime = 0;
flvpl.play();
stagecp.gotoAndPlay(2);
pl_agn._visible = false;
}