What am I doing now?
Archives 

Show All

  • 2009
  • 2008
  • 2007
    • December
    • November
    • October
      • Fireworks line art
        10/31/07
        This is a cool tutorial I'd thought I'd mention here, although I'm not working on it now, I'm hoping you'll find it pretty cool:

        Convert your photo into line art with Fireworks

      • Hebrew Date in PHP
        10/30/07

        $gregorianMonth = date(n);
        $gregorianDay = date(j);
        $gregorianYear = date(Y);

        $jdDate = gregoriantojd($gregorianMonth,$gregorianDay,$gregorianYear);

        $hebrewMonthName = jdmonthname($jdDate,4);

        $hebrewDate = jdtojewish($jdDate);

        list($hebrewM

      • DOM Scripting: Web Design with JavaScript and the Document Object Model
        10/24/07
        This book just ROCKS, love it all the way - I've used this to improve my JS skills even more than I already had - it takes you to the next level when you've got the basics of JS handled. I recommend it 100%.



        Get it, use it, love it!

      • Check out my quick shots on Community MX
        10/23/07
        I've written some "quick shots" articles that show how to do something specific and quickly, the first one is for adding accessibility to a form:
        http://www.communitymx.com/abstract.cfm?cid=76ADD
        and the next is how to stop a form submission:
        http://www.communitymx.com/

      • Select List moveable box
        10/22/07
        Some Old School JS for ya! The form was built to manage PHP code, so the selects have the [] on the end of them so PHP knows it will be getting an array from the selects.

        You will need to swap out the select names with yours, of course, in all places too.
        http://www.kaosweaver.co

      • Random & Slideshow Background
        10/19/07
        First add a style for the background to get the image where you want it on the page, like:


        <style>
        body {
        background:center 200px no-repeat fixed;
        }
        </style>


        Then add this code anywhere (in a .js file, on the page, whatever, it will

      • Changing text on the page when a select changes
        10/16/07

        <script>
        function $() {
        eS=new Array();for (i=0;i<arguments.length;i++) {el=arguments[ i]; if (typeof el == 'string')
        el=document.getElementById(el);if (arguments.length==1) return el; es.push(el);} return es;
        }
        function showText(s,t,m) {
        if

      • Create a link in dynamic data
        10/15/07
        Click on the {recordsetName['columnName']} in the design view
        Go to the properties panel (bottom of the interface)
        Click in the Link box, put # (this makes it a link)
        Click on the bindings tab (in the application panel)
        Find your recordset and then open it up (if it isn

      • Spry Tabbed Panels - Changing the opening tab when a page loads
        10/15/07

        l=window.location.search
        if (l.indexOf("tab")!=-1) {
        s1=l.split("&");
        flag=0;
        for (var i=0;i<s1.length;i++) {
        s2=s1[ i].split("=");
        if (s2[0].match(/^[\?]{0,1}tab$/))
        flag=s2[1];
        }
        TabbedPanels1.showP

      • Expert Calendar v3 Bug fixed
        10/12/07
        Fixed a bug in the script - now when a date is selected, the year will stick as to the last selected date's year as opposed to returning to the current year while the month was set to the last selected date's month.

      • Converting Date Insert scipt into a library
        10/10/07
        The original code is:


        function doClock(){ // By Paul Davis - www.kaosweaver.com
        var t=new Date(),a=doClock.arguments,str="",i,a1,lang="1";
        var month=new Array('January','Jan', 'February','Feb', 'March

      • Dreamweaver image insertion change
        10/09/07
        Issue:
        Inserting an image in the source view doesn't insert the image's width and height properties.

        Solution:
        Find this file:
        Image.js in the Common folder in the Objects folder and in that file (which is in the Adobe/Macromedia folder in your application/ Appli

      • The next global object function
        10/09/07
        The first one (yesterday) was for adding events, this function is to find out which object was the one with the event. Recall, we can't pass arguments to the function calls with addEvent, so this function tells us what object was acted upon (in case we want to do something with the object itse

      • JavaScript Library
        10/08/07
        This is my favorite library code, it is the basic attachment script to attach events to other objects (like images, form elements, buttons, etc). Its functionality it straightforward:
        gO.addEvent(objToAddEventToByID, eventWithOutTheON, functionName)


        var gO= {
        function

      • Just getting started
        10/08/07
        This blog is my code musing - a lot of the code won't work right the first time around, this blog is my reminder of what I am working on and what I need to do to complete the code. I have so many little coding projects, this blog will help me keep track of them and share them with visitors who