How can I open the Documentation Center window with FrontEndTokenExecute?
Clash Royale CLAN TAG#URR8PPP
up vote
4
down vote
favorite
FrontEndTokenExecute["Save"]
saves the current notebook, but FrontEndTokenExecute["Wolfram Documentation"]
does not open the documentation notebook. Why?
front-end
add a comment |Â
up vote
4
down vote
favorite
FrontEndTokenExecute["Save"]
saves the current notebook, but FrontEndTokenExecute["Wolfram Documentation"]
does not open the documentation notebook. Why?
front-end
1
tryFrontEndTokenExecute["OpenHelpLink"]
?
– kglr
4 hours ago
1
To explain @kglr's comment, theseFrontEndToken
objects actually reference a special set of token functions the FE provides. You can see them inFrontEndExecute@ FrontEnd`FindFileOnPath["KeyEventTranslations.tr", "PrivatePathsTextResources"]
andFrontEndExecute@ FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]
. They do not always have the name provided in the menu.
– b3m2a1
3 hours ago
add a comment |Â
up vote
4
down vote
favorite
up vote
4
down vote
favorite
FrontEndTokenExecute["Save"]
saves the current notebook, but FrontEndTokenExecute["Wolfram Documentation"]
does not open the documentation notebook. Why?
front-end
FrontEndTokenExecute["Save"]
saves the current notebook, but FrontEndTokenExecute["Wolfram Documentation"]
does not open the documentation notebook. Why?
front-end
front-end
edited 3 hours ago


m_goldberg
82.3k869190
82.3k869190
asked 5 hours ago
George Wolfe
2,9891435
2,9891435
1
tryFrontEndTokenExecute["OpenHelpLink"]
?
– kglr
4 hours ago
1
To explain @kglr's comment, theseFrontEndToken
objects actually reference a special set of token functions the FE provides. You can see them inFrontEndExecute@ FrontEnd`FindFileOnPath["KeyEventTranslations.tr", "PrivatePathsTextResources"]
andFrontEndExecute@ FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]
. They do not always have the name provided in the menu.
– b3m2a1
3 hours ago
add a comment |Â
1
tryFrontEndTokenExecute["OpenHelpLink"]
?
– kglr
4 hours ago
1
To explain @kglr's comment, theseFrontEndToken
objects actually reference a special set of token functions the FE provides. You can see them inFrontEndExecute@ FrontEnd`FindFileOnPath["KeyEventTranslations.tr", "PrivatePathsTextResources"]
andFrontEndExecute@ FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]
. They do not always have the name provided in the menu.
– b3m2a1
3 hours ago
1
1
try
FrontEndTokenExecute["OpenHelpLink"]
?– kglr
4 hours ago
try
FrontEndTokenExecute["OpenHelpLink"]
?– kglr
4 hours ago
1
1
To explain @kglr's comment, these
FrontEndToken
objects actually reference a special set of token functions the FE provides. You can see them in FrontEndExecute@ FrontEnd`FindFileOnPath["KeyEventTranslations.tr", "PrivatePathsTextResources"]
and FrontEndExecute@ FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]
. They do not always have the name provided in the menu.– b3m2a1
3 hours ago
To explain @kglr's comment, these
FrontEndToken
objects actually reference a special set of token functions the FE provides. You can see them in FrontEndExecute@ FrontEnd`FindFileOnPath["KeyEventTranslations.tr", "PrivatePathsTextResources"]
and FrontEndExecute@ FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]
. They do not always have the name provided in the menu.– b3m2a1
3 hours ago
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
3
down vote
Working from kglr's and b3m2a1's comments, I will record a CW answer.
The menu tokens are stored in the file MenuSetup.tr
buried deep within the Mathematica installation. To look at it you can execute the following:
FilePrint[
FrontEndExecute @
FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]]
The result will be the desired file printed in the current Notebook. You can then search in it for "Help". which will give you
and thus revealing the token you are looking for.
Once again, as in fantasy fiction, knowing something's true name gives power over it.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
Working from kglr's and b3m2a1's comments, I will record a CW answer.
The menu tokens are stored in the file MenuSetup.tr
buried deep within the Mathematica installation. To look at it you can execute the following:
FilePrint[
FrontEndExecute @
FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]]
The result will be the desired file printed in the current Notebook. You can then search in it for "Help". which will give you
and thus revealing the token you are looking for.
Once again, as in fantasy fiction, knowing something's true name gives power over it.
add a comment |Â
up vote
3
down vote
Working from kglr's and b3m2a1's comments, I will record a CW answer.
The menu tokens are stored in the file MenuSetup.tr
buried deep within the Mathematica installation. To look at it you can execute the following:
FilePrint[
FrontEndExecute @
FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]]
The result will be the desired file printed in the current Notebook. You can then search in it for "Help". which will give you
and thus revealing the token you are looking for.
Once again, as in fantasy fiction, knowing something's true name gives power over it.
add a comment |Â
up vote
3
down vote
up vote
3
down vote
Working from kglr's and b3m2a1's comments, I will record a CW answer.
The menu tokens are stored in the file MenuSetup.tr
buried deep within the Mathematica installation. To look at it you can execute the following:
FilePrint[
FrontEndExecute @
FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]]
The result will be the desired file printed in the current Notebook. You can then search in it for "Help". which will give you
and thus revealing the token you are looking for.
Once again, as in fantasy fiction, knowing something's true name gives power over it.
Working from kglr's and b3m2a1's comments, I will record a CW answer.
The menu tokens are stored in the file MenuSetup.tr
buried deep within the Mathematica installation. To look at it you can execute the following:
FilePrint[
FrontEndExecute @
FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]]
The result will be the desired file printed in the current Notebook. You can then search in it for "Help". which will give you
and thus revealing the token you are looking for.
Once again, as in fantasy fiction, knowing something's true name gives power over it.
edited 18 mins ago
community wiki
2 revs, 2 users 94%
m_goldberg
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f182607%2fhow-can-i-open-the-documentation-center-window-with-frontendtokenexecute%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
try
FrontEndTokenExecute["OpenHelpLink"]
?– kglr
4 hours ago
1
To explain @kglr's comment, these
FrontEndToken
objects actually reference a special set of token functions the FE provides. You can see them inFrontEndExecute@ FrontEnd`FindFileOnPath["KeyEventTranslations.tr", "PrivatePathsTextResources"]
andFrontEndExecute@ FrontEnd`FindFileOnPath["MenuSetup.tr", "PrivatePathsTextResources"]
. They do not always have the name provided in the menu.– b3m2a1
3 hours ago