Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
{
// Remove the ADDED_TO_STAGE event
removeEventListener(Event.ADDED_TO_STAGE,init);
// Create the new MovieClip where Flash will draw
clip_mc=new MovieClip();
addChild(clip_mc);
// Create a new BitmapData using the variable bit_data with same dimensions
// of bg_mc ( SWF's background MovieClip )
bit_data=new BitmapData(bg_mc.width,bg_mc.height,true,0xFFFFFFFF);
// Using draw() method of BitmapData Class to create a new BitmapData
// It is a copy of bg_mc ( SWF's background MovieClip )
bit_data.draw(bg_mc);
// Using lineStyle method and passing it ONLY ONE parameter,
// in this cae the value of BRUSH_SISE constant
clip_mc.graphics.lineStyle(BRUSH_SIZE);
// Using lineBitmapStyle method and passing the variable bit_data as parameter
clip_mc.graphics.lineBitmapStyle(bit_data);
// Define the start point where the drawing will start
clip_mc.graphics.moveTo(mouseX,mouseY);
addListeners();
}
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ Repost this if ~ ~ ~ ~ ~ ~ ~ ~
~ ~ ~ ~ ~ ~ you are a beautiful strong black woman ~ ~ ~
~ ~ ~ ~ ~ ~ ~ ~ ~ who don’t need no man ~ ~ ~ ~ ~ ~ ~ ~
╚══════════════ ೋღ☃ღೋ ══════════════╝