The VideoViewer Class is a class I created to quickly put together a video player in a matter of minutes. This is just part of a package that includes other classes such as the ProgressionBar Class which controls the scrubber and the time line. I will release the other classes at a later date.
The VideoViewer class has an easy to use API , that only consists of a couple methods and properties.
Tuesday, July 29, 2008
Monday, July 28, 2008
Speed Particles Example
Just messing around in After Effects to, building off the Speed Particles tutorial from VideoCoPilot. It's a great effect with a lot of possibilities. Here is one of my tries at it.
Sunday, July 27, 2008
New Design
New Design for the blog is finally up. I was up all night doing this one. I originally had another I was going to use but it wasn't compatible with IE as well as FireFox. I really thing this template and will be the new home design for the site.
Thursday, July 24, 2008
XMLLoader Class Updated Version (A.S.3.0)
**Update**
XMLLoader 2.0 « Cleck Here
I recently released a class (XMLLoader) and after some suggestions and further research, I decided to revamp the class entirely. With this comes some good news and bad news. Bad news first, the class no longer automatically creates the event listener for you. This is not a big lose. I just wanted to keep to Encapsulation standards.
Tuesday, July 22, 2008
XMLLoader Class (AS 3.0)
**Update**
XMLLoader 2.0 « Cleck Here
Even though with AS 3.0, dealing with XML has became very easy. I still don't like writing this...
XMLLoader 2.0 « Cleck Here
Even though with AS 3.0, dealing with XML has became very easy. I still don't like writing this...
var myXML:XML = new XML();
var myLoader:URLLoader = new URLLoader();
var myURL:URLRequest = new URLRequest("titles.xml");
myLoader.addEventListener(Event.COMPLETE, loadXML);
myLoader.load(myURL);
function loadXML(e:Event) {
myXML = new XML(e.target.data);
return myXML;
Thursday, July 17, 2008
Design Process...
The design process for the blog is coming along well so far. I had bit of a Kreative block, but about an hour ago I got the ball rolling. I am hoping to have the design up and running within a week. In the mean time I will be posting up stuff like custom classes and such that I have made.
Wednesday, July 16, 2008
First Post....
Woot, Just got Wordpress installed. I will start designing a template tonight, This default theme has GOT to go.
Subscribe to:
Posts (Atom)