Binding two functions to a single, key..possible?

Cyclone
09-02-2003, 10:23 AM
Can you do something similar to:

bindcommand(mouse0, make, button0, TO, "cyc::function1();cyc::fun ction2();");

Somec
09-02-2003, 10:54 AM
well.. you can do:



function cyc::combined() {
cyc::function1();
cyc::function2();
}

bindcommand(mouse0, make, button0, TO, "cyc::combined();");

GreyHound
09-02-2003, 11:45 AM
or you can use another key as activator for another keymap
(but then u could use the 2nd key to trigger the other function so that won´t prolly help)