In this video tutorial, Creative Cow leader Aharon Rabinowitz returns to one of his earliest tutorials, "Creating TV Look," and shows how it can be used to create the look of a Hologram as seen in science fiction movies.
Click on the link above to find Aharon's tutorial.
Quick Note on loopOut(); by Darby Edelen on Feb 1, 2008 at 7:20:00 pm
Just a quick note on the loopOut() expression. You don't actually need to specify "type='cycle'" in the parameters as this is the default:
loopOut(type="cycle");
is the same as:
loopOut("cycle");
which is the same as:
loopOut();
If anything, specifying type="cycle" might very slightly, imperceptibly even, increase memory requirements as you're creating a variable named 'type' to contain the value "cycle" before passing it to loopOut()... But the main reason I mention it is because it takes less time to type it out =)
Darby Edelen Designer Left Coast Digital Santa Cruz, CA