- Kopyalama yapılacak dosyadaki katman sayısı kadar katman hedef dosyada oluşturulur.
- Katman seçilir ve sağ tıklanarak Copy Frames seçilir.
- Hedef dosyada ilgili katman seçilerek sağ tıklanır ve Paste Frames seçilir.
- Bu işlem tüm katmanlar için ayrı olarak yapılır.
- Bu işlemler sırasında nesne olan katmanlar için uyarı mesajı verebilir. Bunun için Replace existing items seçilir.
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:
October 15, 2012
September 27, 2012
FLASH CS5 DERS İÇERİĞİ
1.HAFTA- FLASH'I TANIYALIM
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");
}
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");
}
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);
}
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);
}
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...
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...
Subscribe to:
Posts (Atom)


