Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
I found few JavaScript examples, one shown below and it works fine on Windows HTA script (JavaScript).
VBA
Set cAC = New CCpfcAsyncConnection ' VBA
JavaScript
// equivalant to the line above but in JavaScript
cAC = new ActiveXObject("pfcls.pfcAsyncConnection") // this line works fine
But I can't find other equivalent statements in JavaScript like this:
VBA
Set Mitem = New CMpfcModelItem
JavaScript
Mitem = what? // don't know how to do this in JavaScript
Also this example:
VBA
Dim type as EpfcFeatureType
type = EpfcFeatureType.EpfcFEATTYPE_HOLE
JavaScript
what's the equivalent statement in javascript?
Solved! Go to Solution.
There is a JavaScript API called .Web/Link you can use. So you don't need to figure out how to use VB API in JS except I had missed something.
Br,
Eike
There is a JavaScript API called .Web/Link you can use. So you don't need to figure out how to use VB API in JS except I had missed something.
Br,
Eike