Archive for the ‘Web challenges’ Category

Senior Project…

Wednesday, April 23rd, 2008

Well, I presented my senior project today at Pacific University via web cam. I think it went pretty well and there was even talk of some $ if I record it and let the college use it…not really sure what that was about yet, but I’ll keep you posted. You wouldn’t believe how many hours I put into it if I told ya…let’s just say… WAY too many. So, I’m relieved that it’s over with and I can move on to the zillions of papers I need to write. Yay…wait…ok…YAY!

If you want to see the final project, minus the 20 min explanatory presentation let me know and I’ll send ya the link. I’m not ready to publicize it as i still need to develop another version for the iPod touch…probably this summer.

Big THANK YOU to Juls, my Family, Mike Geraci, Elodie, my friends and  Rick Steves’ team. Couldn’t have done it without ya’s.

Fix for IE treatreatment of Flash objects

Thursday, September 13th, 2007

Are you annoyed by IE treating Flash like it’s a button? I was too…here’s the solution:

**First, make a JavaScript document called “iefix.js” and put this code in it.**

theObjects = document.getElementsByTagName(”object”);
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}

**Then put the following code in the same div you are embedding your .swf in…like after the object tags.**

<script type=”text/javascript”
src=”../iefix.js”></script>

Sweet.