Wednesday, 22 February 2012

THIS IS LATEST-Amazing Traveling







Amazing Traveling 
 










Veena Ka Veewa






















Dehli Belli in Harward Business School



'



MOBILE SMS










Moving House :-)





Bollywood Star Saif Ali Khan in Big Trouble

Amazing Traveling


Thursday, 16 February 2012

Just Chill

Just Chill Thinking in Every Moment of Life

When the day is end its means we can not return time , but we should convert our remaining every moment of life into most valuable time in our life, because these time are not return so All of your please think about realty of life & knowing about value of life 

SOOOO
Seal the Day Buddy 
Keep Smiling & Be Happy

Wednesday, 15 February 2012

Amazing Guinness Records - 2


Amazing Guinness Records - 2

 *************************
This BLOG is ONLY For YOU
Please Clicks Our Sponsors Page 
One Click in One Day is Enough...
Thanks..
*************************

Sunday, 12 February 2012

Amazing Guinness Records - 2


*************************
This BLOG is ONLY For YOU
If u LIKE This Blog So
Please Clicks Our Sponsors Adds
One Click in One Day is Enough...
Thanks..with Best Reagards
************************* 

Thursday, 9 February 2012

ITS YOUR BLOG

 *************************
This BLOG is ONLY For YOU
Please Clicks Our Sponsors Page 
One Click in One Day is Enough...
Thanks..
************************* 

Amazing Guinness Records - 1

Please only once click on adds

4 Sports Accident Pics :





Shafiqsons101.com : My First Design Website






Check My First Complete Design Web Site


I am Graphics Designer of 5Reys Solutions
Please Check, Like  & share with your friends

Click Here for Check our Temporary WebPage


Amazing Creativity







Wednesday, 8 February 2012

Friendship :

A single rose can be my garden... a single friend, my world. -- Leo Buscaglia

Advice from your friends in like the weather, some of it is good, some of it is bad.
-Anonymous

It's the ones you can call up at 4:00 a.m. that really matter.-- Marlene Dietrich

Books, like friends, should be few and well chosen.
-Samuel Paterson  

Only your real friends will tell you when your face is dirty. -- Sicilian Proverb

Good friends are good for your health.-Irwin Sarason

The language of friendship is not words but meanings. -- Henry David Thoreau

True friendship is a plant of slow growth, and must undergo and withstand the shocks of adversity, before it is entitled to the appellation. -- George Washington

I have lost friends, some by death, others through sheer inability to cross the street.
- Virginia Woolf  

Life is to be fortified by many friendships. To love and to be loved is the greatest happiness of existence.
-Sydney Smith

Karachi


Karachi is the financial and commercial capital of Pakistan. In line with its status as a major port and the country's largest metropolis, it accounts for a lion's share of Pakistan's revenue. According to the Federal Board of Revenue's 2006-2007 year book, tax and customs units in Karachi were responsible for 46.75% of direct taxes, 33.65% of federal excise tax, and 23.38% of domestic sales tax. Karachi accounts for 75.14% of customs duty and 79% of sales tax on imports. Therefore, Karachi collects a significant 53.38% of the total collections of the Federal Board of Revenue, out of which 53.33% are customs duty and sales tax on imports.  Revenue collected from Karachi includes revenue from some other areas since the Large Tax Unit  Karachi and Regional Tax Offices Karachi, Hyderabad, Sukkur & Quetta cover the entire province of Sindh and Baluchistan

Flash Sound On/Off Button

Flash Sound On/Off Button

On-off button in Flash Actionscripting for Sound/Music files

This Flash tutorial teaches how to play and stop sound/music files using simple actionscript.
  Sound On Off Button

Introduction
While working in Flash with sound/music files you will find it really necessary to use a sound on/off button as an option. We have endeavored to make the action scripting used in this tutorial as basic & minimal as possible. Happy Learning!
Please take a look at the demo above. This demo is a simple play/stop button for you to control the sound files in your Flash project. Usually you will need to have the music playing and have a stop button displayed first. Since it is easier to understand how a play and then stop button works we have used this example first. Once this is done we will also teach you how to start with the sound playing and the stop button displayed.

Preparing buttons, importing your sound file and setting the timeline

  • Create two buttons that are sort of similar and represent sound on and off. For example you can use play/stop or speaker with sound waves/speaker with a cross buttons.
  • Import your sound file into your movie: Press (Ctrl+R) to get the Import screen, now browse to locate your sound file.
  • Open your Library panel (Ctrl+L), locate and right click on your sound file. From the list select Linkage... the linkage properties form will pop-up. In the identifier text box enter mix1 and tick the "Export for Actionscript" and "Export in first frame" options under Linkage.

    What this Does: You are giving the sound file in the library an identifier without it actually being used in the movie timeline. This enables it to be called and used by ActionScript code.
  • In your movie timeline, create 3 consecutive key frames. Place your Play button in the second frame and label it as play and your Stop button in the third frame and label it as stop (The frame label is specified in the properties window). They should both be in the same position for them to look like a switch (see demo).

Making your sound on/off buttons functional using ActionScript

Basic Logic: We are utilizing the inbuilt Sound Class in Flash to dynamically load the sound file and the on/off buttons to play and stop it.
  • Click the first key frame and copy-paste the following actionscript into the actions panel.
    my_sound = new Sound();
    my_sound.attachSound("mix1");
    play();
    What this Does: You are creating an instance of the Sound Class whose source is mix1 (the identifier in the library for your sound file).
  • Click the 2nd and 3rd frames and give the stop() action.
  • Select the play button in the 2nd frame and copy-paste the following actionscript code into the actions panel.
    on (release) {
    _root.my_sound.start(0,1000);
    _root.gotoAndStop("stop");
    }
    What this Does: On clicking your play button, you are telling your sound instance to start playing and the timeline to go and display the stop button in the "stop" frame. The optional parameters (0,1000) for the start function are given for looping of the sound or music file. This specifies that the sound file starts playing at 0 milliseconds and is looped 1000 times (any number value depending on the duration of the sound file and how long you want it to loop).
  • Select the stop button in the 3rd frame and copy-paste the following actionscript code into the actions panel.
    on (release) {
    _root.my_sound.stop();
    _root.gotoAndStop("play");
    }
    What this Does: On clicking your stop button, You are telling your sound instance to stop playing and the timeline to go and display the start button in the "play" frame.
That's it your sound on/off button is ready! Its that simple.
Cool Tip: You can use these buttons even within a movie clip as the sound instance is initiated in the main timeline.

Want to start with the sound playing?

To do this just do the following:
  • Click the first frame and in the actions panel place the following actionscript code:
    my_sound.start(0,1000);
    gotoAndStop("stop");

    in place of the last line: play;

    Your ActionScript for the first frame will look as follows.
    my_sound = new Sound();
    my_sound.attachSound("mix1");
    my_sound.start(0,1000);
    gotoAndStop("stop");

    What this Does: You are telling your sound instance to play as soon as it is initiated and the timeline to go and display the stop button in the "stop" frame.
Well Done! You now know how to play and stop sound/music files using simple ActionScripting.

My Latest Designed Logo : 5Reys Solutions

Tuesday, 7 February 2012

Importance in Designing

Graphic design skills the most importantmust have is one that is natural and not learned; that is a good eye for art and visual design. This skill will be developed and honed through experience and learning. Designers must be able to think creatively and develop artistic concepts that are eye-catching and can sell products. They need a natural sense of style and creativity upon which other skills can be built.

Islam