Missing fonts in sticky notes of Adobe Reader in WineProblem with adobe-readerAdobe reader x64 missing...
Has Britain negotiated with any other countries outside the EU in preparation for the exit?
What will happen if I transfer large sums of money into my bank account from a pre-paid debit card or gift card?
Book where a space ship journeys to the center of the galaxy to find all the stars had gone supernova
Potential client has a problematic employee I can't work with
I have trouble understanding this fallacy: "If A, then B. Therefore if not-B, then not-A."
Has any human ever had the choice to leave Earth permanently?
systemd service won't start nodejs
How to deal with possible delayed baggage?
In Linux what happens if 1000 files in a directory are moved to another location while another 300 files were added to the source directory?
How can I play a serial killer in a party of good PCs?
Nuance between philia and mania?
Does diversity provide anything that meritocracy does not?
Why does magnet wire need to be insulated?
Can we "borrow" our answers to populate our own websites?
Why do neural networks need so many training examples to perform?
Prioritising polygons in QGIS
What is a good reason for every spaceship to carry a weapon on board?
Citing paid articles from illegal web sharing
Why zero tolerance on nudity in space?
Changing the laptop's CPU. Should I reinstall Linux?
Is there any risk in sharing info about technologies and products we use with a supplier?
Why did Luke use his left hand to shoot?
Can you tell from a blurry photo if focus was too close or too far?
Is a new boolean field better than null reference when a value can be meaningfully absent?
Missing fonts in sticky notes of Adobe Reader in Wine
Problem with adobe-readerAdobe reader x64 missing dependenciesCannot open adobe reader on Ubuntu 12.10 64bitsCannot reinstall Adobe ReaderAdobe Reader for Linux discontinuedAdobe reader and terminalProblem installing Adobe Reader with winePDF reader which is equivalent to adobe readerMissing fonts in Acrobat reader in wineMissing Wine Japanese fonts
I have been using Adobe Reader XI with Wine (Playonlinux) without much problems. But serious problems arise when I use comment tools such as sticky notes. Please see the image for an example. There are two problems in this image marked by red ovals:
When the mouse hover over the sticky note with content "test", the content does not show up. But an empty bar shows up instead.
When there are Asian characters in the sticky note, it shows up as empty boxes both in the comment list and in the detail box of the sticky note.
Note that Asian characters in the main text actually show up correctly. And I have installed the extended font package, as seen from the Playonlinux script attached below. BTW, I have tried other wine versions as well as Adobe Reader DC, but they do not help. Can anyone tell me how I can solve these problems? Thanks a lot!
Figure: Missing fonts in sticky notes of Adobe Reader in Wine
#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02 15-09)
# Last revision : (2019-02-26 14-50)
# Wine version used : 3.20
# Distribution used to test : Debian 9.8
# Author : Hongcheng Ni
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Adobe Acrobat Reader XI"
PREFIX="AdobeAcrobatReaderXI"
WINEVERSION="3.20"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Hongcheng Ni"
# Initialization
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Create Prefix
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER_EXE="$APP_ANSWER"
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE font pack file.')" "$TITLE"
FONTPACK_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe" "31688efbc3b9c99914a5bb7fb58aec9e"
POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.09/misc/FontPack11009_XtdAlf_Lang.msi" "51c08dd56aaec1999f27de05e118127f"
INSTALLER_EXE="$POL_System_TmpDir/AdbeRdr11010_en_US.exe"
FONTPACK_EXE="$POL_System_TmpDir/FontPack11009_XtdAlf_Lang.msi"
fi
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
# Dependencies
POL_Call POL_Install_atmlib
POL_Call POL_Install_riched20
POL_Call POL_Install_wsh57
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
# Installation
POL_Wine_WaitBefore "$TITLE"
Set_OS "win7"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Please disable updating while installing.')" "$TITLE"
POL_Wine "$INSTALLER_EXE"
POL_Wine_WaitExit "$TITLE"
Set_OS "winxp"
POL_Wine_reboot
POL_Shortcut "AcroRd32.exe" "$TITLE"
POL_Shortcut_QuietDebug "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Please choose "Always open with Protected Mode disabled." while starting the program for the first time.')" "$TITLE"
# Install font pack
POL_Wine_WaitBefore "$TITLE"
Set_OS "win7"
POL_AutoWine "$FONTPACK_EXE"
POL_Wine_WaitExit "$TITLE"
Set_OS "winxp"
POL_Wine_reboot
POL_System_TmpDelete
POL_SetupWindow_Close
exit
wine playonlinux adobe-reader
New contributor
add a comment |
I have been using Adobe Reader XI with Wine (Playonlinux) without much problems. But serious problems arise when I use comment tools such as sticky notes. Please see the image for an example. There are two problems in this image marked by red ovals:
When the mouse hover over the sticky note with content "test", the content does not show up. But an empty bar shows up instead.
When there are Asian characters in the sticky note, it shows up as empty boxes both in the comment list and in the detail box of the sticky note.
Note that Asian characters in the main text actually show up correctly. And I have installed the extended font package, as seen from the Playonlinux script attached below. BTW, I have tried other wine versions as well as Adobe Reader DC, but they do not help. Can anyone tell me how I can solve these problems? Thanks a lot!
Figure: Missing fonts in sticky notes of Adobe Reader in Wine
#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02 15-09)
# Last revision : (2019-02-26 14-50)
# Wine version used : 3.20
# Distribution used to test : Debian 9.8
# Author : Hongcheng Ni
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Adobe Acrobat Reader XI"
PREFIX="AdobeAcrobatReaderXI"
WINEVERSION="3.20"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Hongcheng Ni"
# Initialization
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Create Prefix
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER_EXE="$APP_ANSWER"
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE font pack file.')" "$TITLE"
FONTPACK_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe" "31688efbc3b9c99914a5bb7fb58aec9e"
POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.09/misc/FontPack11009_XtdAlf_Lang.msi" "51c08dd56aaec1999f27de05e118127f"
INSTALLER_EXE="$POL_System_TmpDir/AdbeRdr11010_en_US.exe"
FONTPACK_EXE="$POL_System_TmpDir/FontPack11009_XtdAlf_Lang.msi"
fi
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
# Dependencies
POL_Call POL_Install_atmlib
POL_Call POL_Install_riched20
POL_Call POL_Install_wsh57
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
# Installation
POL_Wine_WaitBefore "$TITLE"
Set_OS "win7"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Please disable updating while installing.')" "$TITLE"
POL_Wine "$INSTALLER_EXE"
POL_Wine_WaitExit "$TITLE"
Set_OS "winxp"
POL_Wine_reboot
POL_Shortcut "AcroRd32.exe" "$TITLE"
POL_Shortcut_QuietDebug "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Please choose "Always open with Protected Mode disabled." while starting the program for the first time.')" "$TITLE"
# Install font pack
POL_Wine_WaitBefore "$TITLE"
Set_OS "win7"
POL_AutoWine "$FONTPACK_EXE"
POL_Wine_WaitExit "$TITLE"
Set_OS "winxp"
POL_Wine_reboot
POL_System_TmpDelete
POL_SetupWindow_Close
exit
wine playonlinux adobe-reader
New contributor
add a comment |
I have been using Adobe Reader XI with Wine (Playonlinux) without much problems. But serious problems arise when I use comment tools such as sticky notes. Please see the image for an example. There are two problems in this image marked by red ovals:
When the mouse hover over the sticky note with content "test", the content does not show up. But an empty bar shows up instead.
When there are Asian characters in the sticky note, it shows up as empty boxes both in the comment list and in the detail box of the sticky note.
Note that Asian characters in the main text actually show up correctly. And I have installed the extended font package, as seen from the Playonlinux script attached below. BTW, I have tried other wine versions as well as Adobe Reader DC, but they do not help. Can anyone tell me how I can solve these problems? Thanks a lot!
Figure: Missing fonts in sticky notes of Adobe Reader in Wine
#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02 15-09)
# Last revision : (2019-02-26 14-50)
# Wine version used : 3.20
# Distribution used to test : Debian 9.8
# Author : Hongcheng Ni
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Adobe Acrobat Reader XI"
PREFIX="AdobeAcrobatReaderXI"
WINEVERSION="3.20"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Hongcheng Ni"
# Initialization
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Create Prefix
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER_EXE="$APP_ANSWER"
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE font pack file.')" "$TITLE"
FONTPACK_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe" "31688efbc3b9c99914a5bb7fb58aec9e"
POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.09/misc/FontPack11009_XtdAlf_Lang.msi" "51c08dd56aaec1999f27de05e118127f"
INSTALLER_EXE="$POL_System_TmpDir/AdbeRdr11010_en_US.exe"
FONTPACK_EXE="$POL_System_TmpDir/FontPack11009_XtdAlf_Lang.msi"
fi
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
# Dependencies
POL_Call POL_Install_atmlib
POL_Call POL_Install_riched20
POL_Call POL_Install_wsh57
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
# Installation
POL_Wine_WaitBefore "$TITLE"
Set_OS "win7"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Please disable updating while installing.')" "$TITLE"
POL_Wine "$INSTALLER_EXE"
POL_Wine_WaitExit "$TITLE"
Set_OS "winxp"
POL_Wine_reboot
POL_Shortcut "AcroRd32.exe" "$TITLE"
POL_Shortcut_QuietDebug "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Please choose "Always open with Protected Mode disabled." while starting the program for the first time.')" "$TITLE"
# Install font pack
POL_Wine_WaitBefore "$TITLE"
Set_OS "win7"
POL_AutoWine "$FONTPACK_EXE"
POL_Wine_WaitExit "$TITLE"
Set_OS "winxp"
POL_Wine_reboot
POL_System_TmpDelete
POL_SetupWindow_Close
exit
wine playonlinux adobe-reader
New contributor
I have been using Adobe Reader XI with Wine (Playonlinux) without much problems. But serious problems arise when I use comment tools such as sticky notes. Please see the image for an example. There are two problems in this image marked by red ovals:
When the mouse hover over the sticky note with content "test", the content does not show up. But an empty bar shows up instead.
When there are Asian characters in the sticky note, it shows up as empty boxes both in the comment list and in the detail box of the sticky note.
Note that Asian characters in the main text actually show up correctly. And I have installed the extended font package, as seen from the Playonlinux script attached below. BTW, I have tried other wine versions as well as Adobe Reader DC, but they do not help. Can anyone tell me how I can solve these problems? Thanks a lot!
Figure: Missing fonts in sticky notes of Adobe Reader in Wine
#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02 15-09)
# Last revision : (2019-02-26 14-50)
# Wine version used : 3.20
# Distribution used to test : Debian 9.8
# Author : Hongcheng Ni
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Adobe Acrobat Reader XI"
PREFIX="AdobeAcrobatReaderXI"
WINEVERSION="3.20"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Hongcheng Ni"
# Initialization
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Create Prefix
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
INSTALLER_EXE="$APP_ANSWER"
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE font pack file.')" "$TITLE"
FONTPACK_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.10/en_US/AdbeRdr11010_en_US.exe" "31688efbc3b9c99914a5bb7fb58aec9e"
POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.09/misc/FontPack11009_XtdAlf_Lang.msi" "51c08dd56aaec1999f27de05e118127f"
INSTALLER_EXE="$POL_System_TmpDir/AdbeRdr11010_en_US.exe"
FONTPACK_EXE="$POL_System_TmpDir/FontPack11009_XtdAlf_Lang.msi"
fi
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
# Dependencies
POL_Call POL_Install_atmlib
POL_Call POL_Install_riched20
POL_Call POL_Install_wsh57
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
# Installation
POL_Wine_WaitBefore "$TITLE"
Set_OS "win7"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Please disable updating while installing.')" "$TITLE"
POL_Wine "$INSTALLER_EXE"
POL_Wine_WaitExit "$TITLE"
Set_OS "winxp"
POL_Wine_reboot
POL_Shortcut "AcroRd32.exe" "$TITLE"
POL_Shortcut_QuietDebug "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Please choose "Always open with Protected Mode disabled." while starting the program for the first time.')" "$TITLE"
# Install font pack
POL_Wine_WaitBefore "$TITLE"
Set_OS "win7"
POL_AutoWine "$FONTPACK_EXE"
POL_Wine_WaitExit "$TITLE"
Set_OS "winxp"
POL_Wine_reboot
POL_System_TmpDelete
POL_SetupWindow_Close
exit
wine playonlinux adobe-reader
wine playonlinux adobe-reader
New contributor
New contributor
New contributor
asked 3 mins ago
Hongcheng NiHongcheng Ni
1
1
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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
});
}
});
Hongcheng Ni is a new contributor. Be nice, and check out our Code of Conduct.
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%2faskubuntu.com%2fquestions%2f1121490%2fmissing-fonts-in-sticky-notes-of-adobe-reader-in-wine%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Hongcheng Ni is a new contributor. Be nice, and check out our Code of Conduct.
Hongcheng Ni is a new contributor. Be nice, and check out our Code of Conduct.
Hongcheng Ni is a new contributor. Be nice, and check out our Code of Conduct.
Hongcheng Ni is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1121490%2fmissing-fonts-in-sticky-notes-of-adobe-reader-in-wine%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