Wednesday, May 13, 2009

Big websites, small errors


Youtube showing program code.


Rediff showing code and cluttered look


Youtube menu hidden behind video

Tuesday, April 21, 2009

Saturday, September 20, 2008

Cigarette & Girlfriend


The image is dedicated to all boyfriends who used to promise their girlfriends that I will not smoke henceforth......

Sunday, September 14, 2008

A walllpaper from penguinstudioz.com

wallpaper from penguinstudioz.com

A simple design always makes a good impression and gives healthy feelings to our eyes that is why everyone like Google's products. Designing a dark wallpaper has certain advantages over bright wallpaper. When we set dark wallpaper as our desktop background, they saves energy as the Black color consumes less energy. Setting bright wallpaper as desktop background consumes lots of energy and also it is not very good for the health of our eyes. So lets set our desktop a dark wallpaper...& Save Energy....

Thursday, July 24, 2008

Love

Monday, July 7, 2008

Lonely In the world

Saturday, May 24, 2008

Tuesday, May 13, 2008

The Magic Of Pencil


Pencil is the main requirement for any artist. A black pencil is the one which creates boundaries for any artwork and the colored one fills that boundaries with beautiful colors. Without boundaries the sketch is without any shape and hence meaningless. Similarly without colors any sketch is incomplete.

Tuesday, April 29, 2008

Dil Chahata Hai


Web Spider


Friday, January 18, 2008

DataGrid Component in flash




Note: Give DataGrid component instance name 'dataGrid'


// function for creating array and inserting them into data grid component function dataGridFunction()
{
var characters:Array = new Array(
new Array("pravin", "amravati","B.Sc."),
new Array("Abhay", "Nagpur","IIT"),
new Array("Nilesh", "Pune","B.E.")
);
// loop makes 3 round
for (var i:Number = 0; i <>
{
var firstName:String = characters[i][0]; // inserts first name into i'th row first column
var lastName:String = characters[i][1]; // i'th row second column
var qualificn:String = characters[i][2]; // i'th row third column
dataGrid.addItem({First:firstName, City:lastName, Education:qualificn}); // adds data into data grid
}
} dataGridFunction(); // calls data grid function

Thursday, January 17, 2008

MenuBar component In Flash

Actual Output


Note : The example requires Menubar component on stage

//add menubar component on stage

var my_mb:mx.controls.MenuBar;

// adding file menu
var file_menu = my_mb.addMenu("File");
// adding file menu items
file_menu.addMenuItem({label:"New", instanceName:"newInstance"});
file_menu.addMenuItem({label:"Open", instanceName:"openInstance"});
//openrecent item which has subitems
openmenu = file_menu.addMenuItem({label:"OpenRecent", instanceName:"openRInstance"});
// subitems
openmenu.addMenuItem({label:"recent1", instanceName:"recent1instance"});
openmenu.addMenuItem({label:"recent2", instanceName:"recent2instance"});
openmenu.addMenuItem({label:"recent3", instanceName:"recent3instance"});
// adding seperator
file_menu.addMenuItem({type:"separator"});
file_menu.addMenuItem({label:"Close", instanceName:"closeinstance"});
// adding edit menu
var edit_menu=my_mb.addMenu({label:"Edit",instanceName:"EditInstance"});
// adding file menu items
edit_menu.addMenuItem({label:"Cut", instanceName:"cutInstance"});
edit_menu.addMenuItem({label:"Copy", instanceName:"copyInstance"});
edit_menu.addMenuItem({label:"Paste", instanceName:"pasteInstance"});

Wednesday, January 16, 2008

Window component in flash

import mx.managers.PopupManager;
import mx.containers.Window;
System.securities.allowDomain("http://www.sysconpl.com");
var my_win:Movieclip=PopUpManager.createPopUp(this,Window,true,{closeButton:true,contentPath:"http://www.sysconpl.com/syscon_logo.jpg"});
var winListner:Object=new Object();
winListner.click=function()
{
my_win.deletePopUp();
};
my_win.addEventListner("click",winListner);
my_win.setSize(500,400);
my_win.move(100,200);

Wednesday, September 5, 2007

Wednesday, August 1, 2007

Holidays


Monday, July 30, 2007

Taking little rest for a long journey........


The art is designed completely in Adobe Photoshop-Pravin Varma

Saturday, May 12, 2007