Macro Button "F9" "F10" "T" "H" with single button for example "F8" #1585
Unanswered
donatopace
asked this question in
General
Replies: 1 comment
-
Only partially possible in v9.0 beta 4 except the hotkey. You can create a new toolbar button, then add the actions as the following: // in igconfig.json
"ToolbarItems": [
{
"Type": "Button",
"Id": "Btn_Frameless_Fit",
"Text": "Frameless fit mode",
"DisplayStyle": "Image",
"CheckableConfigBinding": "",
"Alignment": "Left",
"Image": "XXX", // image from the theme
// we chain the actions here
"OnClick": {
"Executable": "MnuWindowFit",
"Argument": "",
"NextAction": {
"Executable": "MnuFrameless",
"Argument": "",
"NextAction": {
"Executable": "IG_ToggleToolbar",
"Argument": "False",
"NextAction": {
"Executable": "IG_ToggleGallery",
"Argument": "False"
}
}
}
}
}
] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
to view single images without border and text i need to press these sequence of button:
F9 F10 T H
it is possible add a sigle macro button (for example F8) ?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions