there is a minor syntax glitch in the setClip() method.
    else {
        if (c.indexOf("rect(")>-1) {
            .....
        }
    }
should be:
    else if (c.indexOf("rect(")>-1) {
        .....
    }

--
Michael Pemberton
[EMAIL PROTECTED]
ICQ: 12107010





_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-dev

Reply via email to