Designer's Katta .-------.

"We have the POWER to change the world, when we meet together. We have the POWER to change designing perspective, when we meet here to share our references, files & many more data related to Flash, Web, Graphics & 3D designing." So just do Upload n Download data.

Tuesday, May 30, 2006

Readymade Plug ins & Effects

Plug-ins for Macromedia Flash, Dreamweaver & many more. Just download & install Extension Manager then download & install exchages.
http://www.adobe.com/cfusion/exchange/index.cfm#loc=en_us&view=sn100&viewName=Adobe%20Exchange&avm=1

Third Party Plug-ins for Adobe Photoshop.
http://www.adobe.com/products/plugins/photoshop/

Effects with Plu-ins.
http://thepluginsite.com/download354634845/index.htm

Tuesday, May 02, 2006

Articles

Design a Website In Photoshop & convert it in to HTML
Link : http://www.sitepoint.com/article/design-website-photoshop

Design and Layout : Design Tips & Tricks
Link : http://www.sitepoint.com/subcat/design-tips

Saturday, April 29, 2006

Important basic Flash Actionscripts

This script is for tracing or finding particular object to do something i.e. onPress
_root.myForeground.cascade_endothelial.onPress = function() {
// here are another script which action done under above main script.
gotoAndPlay();
}


This script is for button, on pressing it goes / jumps to second frame of seg3 (child movie of child movie) of myForeground (child movie of parent movie) from main timeline. But you have to give stop() command in first frame of seg3 movie.
on(release) {
tellTarget ("_parent.myForeground.seg3") {
gotoAndPlay("Seg3", 2);
}
}


This is for stop all sounds which are running in the movie.
stopAllSounds();


To set Volume at 100%
Volume = 100;

To set Variable for sound
var my_Sound = new Sound();


To attach sound file from Library
my_Sound.attachSound("anim3_AUDIO");


To set Volume for sound
my_Sound.setVolume(Volume);


This is for start myMusic sound variable which made earlier.
myMusic.start();

So whole script should be like below for play sound file in movie
stopAllSounds();
Volume = 100;
Sound_status = false;
var my_Sound = new Sound();
my_Sound.attachSound("anim3_AUDIO");
my_Sound.setVolume(Volume);
Sound_status = !Sound_status;
my_Sound.start();

InstanceName_4 is dynamic text box & scroll is attached. This command is for refresh / place top button of scroll.
InstanceName_4.scroll = 0;
btnenter.wav

This is for place text externally in dynamic text box(i.e. InstanceName_4), so scrollbar works properly which is attached to this text box.
InstanceName_4.htmlText = "As a result of your.";


By this command, External Movie loads in object “Frame”
loadMovie ("20050402.swf", "frame");


When user press “e” button on keyboard, activity will start which is given in bracket.
on (keyPress "e") {
gotoAndStop("type2");
}


When user click mouse button given area, activity will start which is given in bracket.
on (press) {
xstart = _root._xmouse;
ystart = _root._ymouse;
}
on (release) {
xend = _root._xmouse;
yend = _root._ymouse;
if (xstart != xend) {
gotoAndStop("type2");
}
}


When user click button, then movie (in library) start in box (on stage) directly. It means movie load from library.
attachMovie_btn.onRelease = function () {
_root.attachMovie(“McTrio”, “trio_mc”, 1);
trio_mc._x = 275;
trio_mc._y = 200;
};


When user click button, firstly it goes in scene 2 & then previous movie (in library) stops on stage. It means movie unload from library.
goScene_btn.onRelease = function () {
gotoAndStop(“Scene 2”, 1);
unloadMovie(“trio_mc”);
};



When user enters in movie & start dragging, then below command is for entering in movie & mouse dragging on movie. (it’s like magnifying glass demo)
onClipEvent(enterFrame) {
startDrag (this, true); //movie attached to mouse drag by user
};


When user click on button it loads external movie directly.
on(release) {
_root.loadMovie("test.swf");
}


When user click on button, full screen & movie close.
on(press) {
fscommand(“Quit”, “”);
}


When user click on button, external sound load & play.
on(release) {
mySound = new Sound();
mySound.loadSound("anim3_AUDIO.mp3",true);
}


When animation start from or enter in first frame, action will start which written under function().
onEnterFrame = function() {
_root.displayNumber = _root._currentframe; // displayNumber is var name of dynamic text
}


On Button pressed, “Rounds” object’s width property changes as per given or typed in “textbox”.
on(release) {
setProperty("_root.rounds", _width, _root.textbox);
}
// _rotation, _alpha, _height, _visible, _x (position), _y (position) ------these are another properties

Set value in “textbox” object as “0”
_root.textbox = "0";




This is “if” function which adds conditional logic for the submit button that validates user input. Here “url_txt” is a input textbox. PLUS sign(+) is joins 2 text.
this.submit_btn.onRelease = function() {
if (url_txt.text == null url_txt.text == "")
{
gotoAndStop("error");
}
else
{
getURL ("http://"+url_txt.text);
gotoAndStop("confirm")
}
};


On press mouse button or ENTER key, action will start. This action applies to button only.
on(release, keyPress "") {
gotoAndStop(5)
}


On press mouse button, color changes of “mc” object.
on(release) {
Picasso = new Color(_root.mc);
Picasso.setRGB(0x0C1EF3);
}


Define New Color as “Paint” to brush object.
Paint = new Color(_root.brush);

Set Color ID to “Paint”, so paint contains color & applies to brush.
Paint.setRGB(0x0F2CCA);


Set full screen of whole movie.
fscommand(“Full Screen”, true);


To change alpha property of an item, on clicking.
on (release) {
setProperty("_root.Fish", _alpha, "0");
}


Below script is attached the Enter button for finding the right answer, “answer” is the input text box var name. We can use this script for password to open.
on (release, keyPress "")
{
if (answer eq "rooster" or answer eq "cockerel")
{
gotoAndPlay ("win");
}
else
if (answer eq "hen" or answer eq "chicken")
{
gotoAndStop ("boy");
}
else
{
gotoAndStop ("wrong");
}
}

For changing colors of an movie.
http://www.webwasp.co.uk/tutorials/b03-color-in/index.php

On pressing EXIT or QUIT button, movie or player will close.
on (release) {
fscommand("quit");
}

Friday, April 28, 2006

Website addresses

Flash
http://www.webwasp.co.uk/

3D
http://www.3dm3.com/tutorials/
http://www.highend3d.com/
http://www.mayatraining.com/freestuff.asp

Templates
http://www.freewebtemplates.com/index.php
http://flashkit.com/index.shtmlhttp://www.coffeecup.com/
http://www.flashation.com/
http://www.flamingtext.com/
http://www.iconbazaar.com/
http://www.asp101.com/samples/
http://www.devguru.com/
http://www.heathersanimations.com/dancetwo.html

Tutorials
http://www.tutorialized.com/
http://www.w3schools.com/
http://www.tutorialoutpost.com/
http://www.flashadvisor.com/tutorial/index.php
http://www.ecma-international.org/publications/standards/Ecma-262.htm
http://java.sun.com/docs/books/tutorial/java/index.html

References
http://www.googlecommunity.com/
http://www.actionscript.org/
http://www.kirupa.com/
http://www.flashgoddess.com/
http://www.vtc.com/products/maya.htm
http://www.friendsofed.com/
http://www.animationfactory.com/
http://www.abovetheinfluence.com/above-it/default.htm
http://www.ati.com/

Software Downloads
http://www.topshareware.com/

English Learning
http://www.learnenglish.org.uk/
http://www.englishclub.com/index.htm
http://www.learnenglish.de/