Sci4AutoHotkey crashes when using emojis
This Autohotkey script works when I write it in Notepad:
!Numpad1::Send 🙂
!Numpad2::Send 😃
!Numpad3::Send 👍
!Numpad4::Send 🙁
But if I copy and paste it into SciTE4AutoHotkey, the application crashes.
Adjusting the File > Encoding
options does not fix the problem.
Is there a way for SciTE4AutoHotkey to support Emojis?
Stupid workaround: Put your emojis in another script (using Notepad), and promise yourself never to open that script in SciTE4AutoHotkey. Then call that script from inside your main script, which you can edit in SciTE4AutoHotkey. I told you it was stupid.
autohotkey emoticons scite
add a comment |
This Autohotkey script works when I write it in Notepad:
!Numpad1::Send 🙂
!Numpad2::Send 😃
!Numpad3::Send 👍
!Numpad4::Send 🙁
But if I copy and paste it into SciTE4AutoHotkey, the application crashes.
Adjusting the File > Encoding
options does not fix the problem.
Is there a way for SciTE4AutoHotkey to support Emojis?
Stupid workaround: Put your emojis in another script (using Notepad), and promise yourself never to open that script in SciTE4AutoHotkey. Then call that script from inside your main script, which you can edit in SciTE4AutoHotkey. I told you it was stupid.
autohotkey emoticons scite
2
Please post your answer on the answer box, not in the question.
– Twisty Impersonator
Mar 20 '18 at 16:02
Try to contact the author in the AHK forum.
– user3419297
Mar 21 '18 at 12:45
add a comment |
This Autohotkey script works when I write it in Notepad:
!Numpad1::Send 🙂
!Numpad2::Send 😃
!Numpad3::Send 👍
!Numpad4::Send 🙁
But if I copy and paste it into SciTE4AutoHotkey, the application crashes.
Adjusting the File > Encoding
options does not fix the problem.
Is there a way for SciTE4AutoHotkey to support Emojis?
Stupid workaround: Put your emojis in another script (using Notepad), and promise yourself never to open that script in SciTE4AutoHotkey. Then call that script from inside your main script, which you can edit in SciTE4AutoHotkey. I told you it was stupid.
autohotkey emoticons scite
This Autohotkey script works when I write it in Notepad:
!Numpad1::Send 🙂
!Numpad2::Send 😃
!Numpad3::Send 👍
!Numpad4::Send 🙁
But if I copy and paste it into SciTE4AutoHotkey, the application crashes.
Adjusting the File > Encoding
options does not fix the problem.
Is there a way for SciTE4AutoHotkey to support Emojis?
Stupid workaround: Put your emojis in another script (using Notepad), and promise yourself never to open that script in SciTE4AutoHotkey. Then call that script from inside your main script, which you can edit in SciTE4AutoHotkey. I told you it was stupid.
autohotkey emoticons scite
autohotkey emoticons scite
asked Mar 20 '18 at 15:43
HaveSpacesuit
17818
17818
2
Please post your answer on the answer box, not in the question.
– Twisty Impersonator
Mar 20 '18 at 16:02
Try to contact the author in the AHK forum.
– user3419297
Mar 21 '18 at 12:45
add a comment |
2
Please post your answer on the answer box, not in the question.
– Twisty Impersonator
Mar 20 '18 at 16:02
Try to contact the author in the AHK forum.
– user3419297
Mar 21 '18 at 12:45
2
2
Please post your answer on the answer box, not in the question.
– Twisty Impersonator
Mar 20 '18 at 16:02
Please post your answer on the answer box, not in the question.
– Twisty Impersonator
Mar 20 '18 at 16:02
Try to contact the author in the AHK forum.
– user3419297
Mar 21 '18 at 12:45
Try to contact the author in the AHK forum.
– user3419297
Mar 21 '18 at 12:45
add a comment |
1 Answer
1
active
oldest
votes
If you want to send emojis and still use SciTE for your editor, find the extended Unicode mappings for the emoji you would like to use then use the respective codings for each symbol you want to send (instead of embedding the symbols themselves directly in your script).
For example, you can send % chr(0x1F44D)
or send {U+1F44D}
Also, the website https://unicode-table.com/en/ will let you search using English descriptions of the icons you want to find, or icon sets.
In this case you may be interested in the codes for emoticons for example:
https://unicode-table.com/en/blocks/emoticons/
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1306165%2fsci4autohotkey-crashes-when-using-emojis%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you want to send emojis and still use SciTE for your editor, find the extended Unicode mappings for the emoji you would like to use then use the respective codings for each symbol you want to send (instead of embedding the symbols themselves directly in your script).
For example, you can send % chr(0x1F44D)
or send {U+1F44D}
Also, the website https://unicode-table.com/en/ will let you search using English descriptions of the icons you want to find, or icon sets.
In this case you may be interested in the codes for emoticons for example:
https://unicode-table.com/en/blocks/emoticons/
add a comment |
If you want to send emojis and still use SciTE for your editor, find the extended Unicode mappings for the emoji you would like to use then use the respective codings for each symbol you want to send (instead of embedding the symbols themselves directly in your script).
For example, you can send % chr(0x1F44D)
or send {U+1F44D}
Also, the website https://unicode-table.com/en/ will let you search using English descriptions of the icons you want to find, or icon sets.
In this case you may be interested in the codes for emoticons for example:
https://unicode-table.com/en/blocks/emoticons/
add a comment |
If you want to send emojis and still use SciTE for your editor, find the extended Unicode mappings for the emoji you would like to use then use the respective codings for each symbol you want to send (instead of embedding the symbols themselves directly in your script).
For example, you can send % chr(0x1F44D)
or send {U+1F44D}
Also, the website https://unicode-table.com/en/ will let you search using English descriptions of the icons you want to find, or icon sets.
In this case you may be interested in the codes for emoticons for example:
https://unicode-table.com/en/blocks/emoticons/
If you want to send emojis and still use SciTE for your editor, find the extended Unicode mappings for the emoji you would like to use then use the respective codings for each symbol you want to send (instead of embedding the symbols themselves directly in your script).
For example, you can send % chr(0x1F44D)
or send {U+1F44D}
Also, the website https://unicode-table.com/en/ will let you search using English descriptions of the icons you want to find, or icon sets.
In this case you may be interested in the codes for emoticons for example:
https://unicode-table.com/en/blocks/emoticons/
answered Mar 24 '18 at 5:51
JJohnston2
1,13646
1,13646
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1306165%2fsci4autohotkey-crashes-when-using-emojis%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Please post your answer on the answer box, not in the question.
– Twisty Impersonator
Mar 20 '18 at 16:02
Try to contact the author in the AHK forum.
– user3419297
Mar 21 '18 at 12:45