Convert Fist Letter in String to Uppercase With AS3

Tuesday, August 10th, 2010
var Title : String = "bLoG";
Title = CapitalizeFirstLetter(Title);
//Ouput: Blog

function CapitalizeFirstLetter(Str:String):String
{
	var converted:String = (Str.substr(0,1).toUpperCase() + (Str.substr(1,Str.length)).toLowerCase());		

        return converted;
}

Convert AS3 Timeline Codes to Document Class Easily

Friday, July 23rd, 2010

Here is a great tool that you can convert Flash Timeline codes to the document classes. It works perfectly. The only thing you do is, just copy timeline code into the empty textarea below, then put a name for your document class. When you press “submit” button, a php script generates your document class code at once. Thanks to Zevan Rosser for this converter tool. By the way, he is a smart coder. Many of Zevan’s codes are too short, but also functional. You should check his blog also for some kind of unique tutorials.
AS3 Timeline Code to Document Class Converter

With keyword in Action Script 3.0

Monday, July 12th, 2010

I’ve been programming with as3 for two years and everyday I come across with a new stuff :) Today, I was checking a as class and encountered with “with” keyword. There is no magic about “with” keyword. But, it allows you to write cleaner codes. Here is a little example how it works;

with (graphics)
{
	clear();
	beginBitmapFill(_bitmapdata);
	moveTo(0, 0);
	lineTo(pWidth, 0);
        lineTo(pWidth, pHeight);
	lineTo(0, pHeight);
	lineTo(0, 0);
	endFill();
}

Flash Event Framework Tutorial

Sunday, June 20th, 2010

http://active.tutsplus.com/tutorials/actionscript/a-close-look-at-the-actionscript-30-event-framework/

Frameworks for developing Flash Web-Sites

Wednesday, June 16th, 2010

I’ve been looking for frameworks in order develop flash-based web sites for a long time. I haven’t checked any of these frameworks yet. Because, it takes a lot of time to get into a new programming environment for me. Also, when I’m working on a commercial project, I don’t want to waste my time with new classes, methods and etc.. to develop web based appilcation. Because, your customers don’t care about how the background of their web sites are created. They just want to see final result quickly :)

Anyway, For a long time, I’ve been coding with Flex and don’t want to use Flash hereafter. In my opinion, Flash can’t be a framework for coding action script language. I mean, I can’t imagine a framework that has no suggestion option while I’m coding an application. So, I searched for some frameworks which can be used without Flash. At this point, I encountered with PureMVC framwork. But there are no tutorial about how to use it in Flex…I googled some tutorials about PureMVC and here they are;

http://active.tutsplus.com/tutorials/workflow/understanding-the-puremvc-open-source-framework/

http://algorithmist.wordpress.com/2010/04/21/flashbuilder-and-puremvc-part-i/

And there is an other Flash framework which called Gaia. The only disadvantage for me is, you can only use Gaia with Flash. But, Gaia has some tutorials about how to setup and work with it in their web-site.

Awards from Flash Web-Design Contest

Thursday, June 10th, 2010

“Flash Ödülleri” web design awards, by http://www.flasharsivi.com – a member of Adobe Flash User Group in Turkey-  emerged from the idea to have a contest among the members of the web site,  in 2008.

The contest aims  to increase the use of Flash software and encourage designers to create action script (programming language) based web sites.

Alp Tuğan’s two web design works were nominated for the first 30 designs of 2010. and got the second and

the sixth place in the “Flash Ödülleri” contest that is also sponsored by Adobe Company this year.

second place    : http://www.brandmood.org
sixth place     : http://www.muratgermen.com

For further information http://www.flashodulleri.com/

Two of my web designs are selected for the final at “Flash Odulleri”

Friday, May 14th, 2010

I attended with two of my web design works to the competition http://www.flashodulleri.com/.
TOday I’ve got e-mail from them.
Both of my designs are selected for the final.

First one is Murat Germen’s web site who is an artist and academic http://www.muratgermen.com
Second one is Brand Mood’s web site. It’s a styling studio http://www.brandmood.org

As3 multiloader class

Tuesday, January 26th, 2010

Loading multiple files with queueloader class in as3. here is a tutorial that how it works..

Flex 3.5 SDK

Saturday, January 9th, 2010

A few minutes ago Flex 3.5 SDK has been released :) download

Mulltiple Image Loading in as3

Thursday, December 17th, 2009

I’ve been working on a Flash web site for a week. It has nearly finished. However, there some loading time problems at the gallery sections.At first, I tried to load thumbnails one by one, then I changed my mind. Because, there are only 8 thumbs at one time that will be loaded. So, it’s better to load these 8 images at one time and make a single loader. I encountered with Arthur Debert’s awesome as3 class which is called Bulk Loader. Bulk Loader is totally designed for multiple loading purpose. By the way, thanks to  him for his class. I want to share this wonderfull class with you. I have no time for a tutorial. At this point, I can recommend you to check Nick Handerman’s post about this multiple loading issue. Thanks to Nick for his tutorial and source files.

Get Adobe Flash playerPlugin by wpburn.com wordpress themes