While I have no idea where StumblerX can be retrieved, I can tell you:
- http://webpages.charter.net/nikolatesla20/ does still exist (although setup.zip is missing)
- As of 0.4.0, OnScanResult is implemented (I have no idea how well but it does get called a lot). Some other scripts around this forum are using it. You could have it call an external routine, e.g. (untested)
Code:
Sub OnScanResult(SSID, BSSID, CapFlags, Signal, Noise, LastSeen)
CreateObject("WScript.Shell").Run "mycmd.exe " & SSID & " " & BSSID & " " & CapFlags & " " & Signal & " " & Noise & " " & LastSeen
End Sub