Hi, not sure why this is not working correctly, could use some help.
Just a note I'm on my windows ME computer, but this works fine on my windows xp setup.
When I use the Accelerator function (tried with every language besides python) through scripts in a function
//Javascript example
function SetupMacros ()
{
Accelerator("Numpad0","look");
Accelerator("Numpad1","flee");
}
//
only the last one takes, meaning Numpad0 does nothing (gets cleared), Numpad1 sends flee as expected, if i were to remove [Accelerator("Numpad1","flee");] Numpad0 would be set correctly.
Also it works fine if I do them manually into command bar
/Accelerator("Numpad0","look")
Any ideas? |