i prefer the newer solution, controller.vbs 
' ****************************************************************
' VISUAL PINBALL X
' JPSalas script for Gargamel Park v1.0
' Main script is based on Black's script for Future Pinball
' ****************************************************************
Option Explicit
Randomize
On Error Resume Next
ExecuteGlobal GetTextFile("controller.vbs")
If Err Then MsgBox "You need the controller.vbs in order to run this table, available in the vp10 package"
On Error Goto 0
Const cGameName = "gargamel_park"
Const BallSize = 50
.
.
.
Sub Table1_Init()
LoadEM
Dim i
Randomize
Edited by arngrim, 04 April 2016 - 04:37 AM.