Run macro via Weblink
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Run macro via Weblink
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.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you all, the problem was that Creo 9 does not support internet explorer anymore.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi,
did you open Case at PTC Support ?
Martin Hanák
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Martin,
not yet. Should I open a support ticket?
Thanks,
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
YES, you should open a support ticket.
Martin Hanák
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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`;";
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you all, the problem was that Creo 9 does not support internet explorer anymore.
