Tutorial Photoshop Cara Peeling

Duplikat layer gambar dengan menekan CTRL + J
dan Tekan tombol D untuk mendefault kan foreground (hitam)dan background color (putih)
Lalu tekan CTRL + Backspace sehingga layer background jadi berwarna Putih.

Buat new layer, buat gambar segitiga (untuk lipatannya) dengan rectangle marquee tool, warnai dengan warna apa aja.
Saya pake default nya aja, pake hitam.

Sekarang buat lingkaran seperti gambar dengan elliptical marquee tool lalu tekan DELETE. (Supaya lipatannya keliatan real )

Klik 2x layer 2 atau klik kanan > Blending Options setting
Setelah menggunakan gradient Overlay, sekarang gunakan Drop Shadow,

Sekarang hapus bagian luar foto dengan Eraser Tool

Done.
Catatan : untuk di pojokan lain , tinggal mengubah arah sudut, ketika ngasih Gradient Overlay.
  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Cara Membatasi Warna di ColorPicker

Dalam tutorial ini kamu akan belajar caranya membatasi jumlah warna di colourpicker.
Jadi jika kamu hanya menginginkan beberapa warna, kamu dapat membatasinya sendiri.
Untuk itu kamu memerlukan color properties dari colorpicker component.
saya memberikan contoh beberapa warna yaitu merah, kuning, biru dan hijau.



1.
buat file baru
pilih Window > components dan drag colorpicker component ke library.

2.
pada timeline masukkan new layer dinamakan Actions dan masukkan kode berikut dalam actions panel. Untuk membatasi warna, kamu harus mengubah angka hexadesimal pada script yang dicetak miring dibawah ini.

//Import the packages needed.
import fl.events.ColorPickerEvent;
import fl.controls.ColorPicker;
import flash.geom.ColorTransform;

/*Creates a new instance of the a sprite class which fills the whole stage area
in black colour, and add the display object at the bottom position (index 0).*/
var bgColour:Sprite = new Sprite();
bgColour.graphics.beginFill(0x000000);
bgColour.graphics.drawRect(0,0,stage.stageWidth,stage.stageHeight);
addChildAt(bgColour,0);

//Creates a new instances of the colour picker class.
var mycolorPicker:ColorPicker = new ColorPicker();

//Limit the colours to red, yellow, green, and blue.
mycolorPicker.colors = [ 0xFF0000, 0x00FF00, 0x0000FF, 0xFFFF00];

/*Moves the colour picker to (20,20) and set the size to (50,50) and add the
component on the stage.*/
mycolorPicker.move(20, 20);
mycolorPicker.setSize(50, 50);
addChild(mycolorPicker);

//Add the change event to the colour picker.
mycolorPicker.addEventListener(ColorPickerEvent.CHANGE, changeBg);

function changeBg (event:ColorPickerEvent):void {
//Creates a new instance of the ColorTrasform class.
var myColorTransform:ColorTransform = bgColour.transform.colorTransform;

//An instance of selected colour from the colour picker.
var theColor:Number=mycolorPicker.selectedColor;

//Sets the new colour from the colour picker.
myColorTransform.color=theColor;

//Apply the colour changes to the movie clip.
bgColour.transform.colorTransform=myColorTransform;
}


3.
sekarang tes movie clip dengan cara ctrl + enter. Sekarang coba klik color picker dan kamu akan mendapatkan empat warna tersebut di dalam palette.
  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS

Facebook Chat Emoticons

Chat Text Format and Emoticons:

  • smile

  • :-) :) :] =)

  • frown

  • :-( :( :[ =(

  • tongue

  • :-P :P :-p :p =P

  • grin

  • :-D :D =D

  • gasp

  • :-O :O :-o :o

  • wink

  • ;-) ;)

  • glasses

  • 8-) 8) B-) B)

  • sunglasses

  • 8-| 8| B-| B|

  • grumpy

  • >:( >:-(

  • unsure

  • :/ :-/ :\ :-\

  • cry

  • :'(

  • devil

  • 3:) 3:-)

  • angel

  • O:) O:-)

  • kiss

  • :-* :*

  • heart

  • <3

  • kiki

  • ^_^

  • squint

  • -_-

  • confused
    o.O O.o

  • upset

  • >:O >:-O >:o >:-o

  • pacman

  • :v

  • curly lips

  • :3

  • robot

  • :|]

  • Chris Putnam

  • :putnam:

  • shark

  • (^^^)

  • Penguin

  • <(")


  • Bold : *Text*


  • Underline : _Text_


  • Bold and Underline : *_text_*
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • Twitter
    • RSS