vote up 0 vote down star

I have some handlers to resize a box, I want to move the box according to the handle that was selected. What would be the best way of implementing this within the loop

for (var j = 0; j < allhand.length; j++) {
    aaa[allhand[j]].style.visibility = 'inherit'; 

    aaa[allhand[j]].onmousedown = function(e) {

        document.onmousemove = function(e) {
            // if bottom handle it's been moved then just inc height

            // if right handle it's been moved then just inc width... ?????

            // etc...
            return false;
        };
        document.onmouseup = function(e) {
            stop = false;
            return false;
        };
        return false;
    };
}
flag

1 Answer

vote up 0 vote down

no quick answer, but in Flex i've had good luck using Rogue Development's Object Handles .. Maybe get the code, take a look ?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.