Function calls
Function calls
Out of context: Reply #4
- Started
- Last post
- 7 Responses
- mac100
try make a second function
function introPicker(intro_id){
if(intro_id == 1){
intro1();
}if(intro_id == 2){
intro2();
}if(intro_id == 3){
intro3();
}}
introPicker();
if not try eval again
function introPicker(intro_id){
eval("intro"+intro+"();")
}hope this helps
Mac