Sunday, 26 October 2008

TutVid.com.

http://www.tutvid.com/
Worth a check I think, it has video tutorials across the whole cs3 range.

1 comment:

Nick Fernando said...

Not the right place but here's the Flash function:::>

------------------
//main timeline
stop();

mySound = new Sound(this);
mySound.attachSound("theSoundID");


playSwitch = function (){

if(mySound.start()==true){
mySound.stop();
} else if(mySound.start() !== true){
mySound.stop();
}
};

//button
on(release) {
playSwitch();
}

-------------------------------