Showing posts with label Flash. Show all posts
Showing posts with label Flash. Show all posts

December 27, 2012

Flash Dosyalarının Birleştirilmesi

   Grup halinde çalışılırken bir proje bölümlere ayrılabilir. Daha sonra bu bölümler birleştirilmelidir. İzlenecek adımlar şunlardır:


  1. Kopyalama yapılacak dosyadaki katman sayısı kadar katman hedef dosyada oluşturulur.
  2. Katman seçilir ve sağ tıklanarak Copy Frames seçilir.
  3. Hedef dosyada ilgili katman seçilerek sağ tıklanır ve Paste Frames seçilir.
  4. Bu işlem tüm katmanlar için ayrı olarak yapılır.
  5. Bu işlemler sırasında nesne olan katmanlar için uyarı mesajı verebilir. Bunun için Replace existing items seçilir.

September 27, 2012

FLASH CS5 DERS İÇERİĞİ

1.HAFTA- FLASH'I TANIYALIM

Flash Kaynak
Flash Kaynak, İngilizce
Keyframe Uygulaması

Resim Uygulaması


Flash Dosyasını FullScreen yapmak için AS katmanına stage.displayState = StageDisplayState.FULL_SCREEN; kodunu ekleyin.

Flash çalışmasını HTML'de FullScreen yapmak için html sayfasını DW'da açın ve

<style type="text/css">
* {
   width: 100%;
   height: 100%;
   margin: 0;
   padding: 0;
   overflow: hidden;
}
      </style>
kodunu sayfanızda bulunan kısım ile değiştirin.



                                                                                                                                                                            

March 19, 2012

Flash AS 3.0, Fullscreen Button

Create two layers as button and AS. In the button layer create a button and name its instance  btn1. Go to AS layer and add the below codes in it.

btn1.addEventListener(MouseEvent.CLICK,aa);
function aa(e:MouseEvent):void {
            fscommand("fullscreen", "true");

}

Flash AS 3.0, Quit Button

To quit from a window, create two layers as button and AS. In the button layer create a button and name its instance  btn. Go to AS layer and add the below codes in it.



btn.addEventListener(MouseEvent.CLICK,a);
function a(e:MouseEvent):void {
            fscommand("quit");

}

March 16, 2012

Flash AS 3.0, URL Example

Create two layers. One for button and the other for Action Script. Create a button and name it homeButton.
Then go to AS layer and open Actions. Add the below codes in it.

Codes:
stop();
homeButton.addEventListener(MouseEvent.CLICK, gotoAuthorPage);
function gotoAuthorPage(event:MouseEvent):void
{
    var targetURL:URLRequest = new URLRequest("http://www.amasya.edu.tr");
    navigateToURL(targetURL); 
}

Flash AS 3.0, Drag and Drop

Create two layers as Nesne and AS. Draw a  t-shirt and convert it  into MovieClip. Name it as gomlek. number1 and 2.

Go to AS layer, right click and open actions. For Drag type in number 3. For Drop type in number 4.
Here you gou.
Ctrl+Enter.

March 15, 2012

Flash "Unexpected file format" problem.

If you see that message on your computer while opening a fla. file , you should install a newer version of flash. Now Flash CS5 is being used. You can buy or try it from here.

March 12, 2012

Learning Flash

 Flash program is one of the greatest programs to learn. If you like design or animation its just for you. I'd like to give you some links to get better your flash skills. For English resources you can easily use adobe tv.
For Turkish materials you may want to use that website. Sign up and go to CS5 Web Tasarımı. As I work on flash I'll keep you postd.  Enjoy it...