Archive for February, 2008
I’ve was playing around with mootools and threw together a quick little function to do a fade in, fade out rotation of “layers” which would be just an image rotation or whatever you want to rotate. Here’s the function:
function startGalleryRotation(selector,delay){
var i = 0;
var layers = $$(selector);
delay = (delay == undefined)? 6000:delay;
setInterval(function(){
layers[i].fade(‘out’);
i = (i == [...]
The plugin everyone has been waiting for: Impromtu 1.3!!! Sorry for dragging around for so long on this but its here a long with some awesome additions and bug fixes!! Whats different you ask?
An option to focus a button by default
An option for zIndex if you need to change it from the default
If [...]
As of late I’ve been swamped with web work on the side(not to mention my 8-5 job). I’ve tried a couple times to get to know some common frameworks, specifically Django and Ruby on Rails. I love their concept and its hard to rank one better than the other because they both have [...]
Hello Impromtpu users. I’m sorry to say as of late I haven’t had time to produce regular updates and upgrades to Impromptu. My work outside of “javascript land” has kept me from doing so for the past few months. However that being said over the next few months I hope to play [...]
Creating the Cron Job
We’ve now created all the parts to our MLS system, but we often need one more finishing touch, a scheduled job to keep our listings up to date. To do so we first need to uncomment a couple lines in each batch file we created. Uncomment “UPDATE_BCF” and “UPDATE_ONLY” [...]

