This is a facebook page tab and microsite for http://www.whatiszero4.com/whatiszero4/ it shows the loged in users friends pictures and list and shows users video in side a dynamic video.
This is a facebook page tab and microsite for http://www.whatiszero4.com/whatiszero4/ it shows the loged in users friends pictures and list and shows users video in side a dynamic video.
This application is a multi-user chat application build on red5. Actionscript and Flash Development. The secret key separates users to different chat room.
http://apps.facebook.com/syne_video_chat/
I made this widget in flash last month, it gets feeds from rss and plays a video on http link and it makes use of gigya sharing tools. Then i also made a flv player that workes like YouTube for http://www.theprize.com and a Desktop Application in AIR.
I made this is 1week, you can make a customized plastic card online and it would generate a print. more advance development in this application is expected http://www.alltimeprint.com/design-card-online.php?type_business_id=1 It also creates a PDF file using Alive PDF
<?PHP
//print_r($_FILES);
$target_path = $_REQUEST[ ‘path’ ];
$target_path = $target_path . basename( $_FILES[ ‘Filedata’ ][ ‘name’ ] );if ( move_uploaded_file( $_FILES[ ‘Filedata’ ][ ‘tmp_name’ ], $target_path ) )
{
echo “The file ” . basename( $_FILES[ ‘Filedata’ ][ ‘name’ ] ) . ” has been uploaded;”;$_SESSION[‘card_image’] = basename( $_FILES[ ‘Filedata’ ][ ‘name’ ] );
chmod(‘/images/designcards/’.basename( $_FILES[ ‘Filedata’ ][ ‘name’ ] ), 755);
}
else
{
echo “There was an error uploading the file, please try again!”;
}?>
<?AS3
import src.image.*;
import src.file.*;
import src.load.*;
var byteArray:ByteArray;
var jpgEncoder:JPGEncoder = new JPGEncoder(100);byteArray= jpgEncoder.encode(cardBitmap);
var urlRequest : URLRequest = new URLRequest();
urlRequest.requestHeaders.push(new URLRequestHeader(‘Cache-Control’, ‘no-cache’));
urlRequest.requestHeaders.push(new URLRequestHeader(‘Content-Type’, ‘multipart/form-data; boundary=’ + UploadPostHelper.getBoundary()));
urlRequest.url=”imageuploader.php”+”?path=”+ “images/designcards/”;
urlRequest.method=URLRequestMethod.POST;
urlRequest.data=UploadPostHelper.getPostData(“pre_”+”f_name”+”Flie_ID”+”.jpg”,byteArray);var urlLoader : URLLoader = new URLLoader();
urlLoader.dataFormat=URLLoaderDataFormat.BINARY;
urlLoader.addEventListener( Event.COMPLETE, onImageCreated );
urlLoader.load( urlRequest );function onImageCreated( e : Event ):void {
trace( ‘image created : ‘);
navigateToURL(new URLRequest(“/images/designcards/pre_f_nameFlie_ID.jpg”),”_blank”);
}?>
Link http://github.com/mikechambers/as3corelib
http://code.google.com/p/as3corelib/downloads/detail?name=as3corelib-.92.1.zip&can=1&q=
http://labs.findsubstance.com/d/as3-upload-encode-images/as3-upload-encode-images.zip