Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Hi All,
I would like to run specific mapkeys via Weblink in Creo 9, but unfortunately nothing seems to work.
Here is an example from my code:
function WlModelRunMacro ()
{
var MacroString= "~ Command `ProCmdModelNew`";
mGlob = pfcCreate("MpfcCOMGlobal");
var oSession = mGlob.GetProESession();
oSession.RunMacro(MacroString);
}
I have enabled web_enable_javascript option in my config file.
If you could run macros in Creo through weblink, could you please help me with a right syntax?
Thank you for your help,
Richard Lukacs
Solved! Go to Solution.
Thank you all, the problem was that Creo 9 does not support internet explorer anymore.
Hi,
did you open Case at PTC Support ?
Hi Martin,
not yet. Should I open a support ticket?
Thanks,
Richard
YES, you should open a support ticket.
Looks like you are missing the semicolon at the end of the macro string.
You have:
var MacroString= "~ Command `ProCmdModelNew`";
Should be:
var MacroString= "~ Command `ProCmdModelNew`;";
Thank you all, the problem was that Creo 9 does not support internet explorer anymore.