Solved
Forum Discussion
joseph_michaud
Staff
10 years agoDoes the JScript eval method not work for you?
function mytest()
{
var name = "Test2";
eval("KeywordTests." + name + ".Run();");
}
VirtualWorld
10 years agoNew Contributor
Sorry, I didn't know of the eval function within JScript.
I'm now using the square-bracket way and it works perfectly :)
Thanks!