gpt4 book ai didi

macos - javafxpackager 在 Mac OS X 上错误地定位应用程序文件夹

转载 作者:行者123 更新时间:2023-12-01 10:25:36 25 4
gpt4 key购买 nike

我使用 Mac OS X Mavericks 和 JDK 1.7.45 来打包一个 Swing 应用程序,使用 Mac 的 javafxpackager 工具。不幸的是,最终结果看起来像这样(隐藏图标/名称):

enter image description here

向右滚动一点可以使图片更清晰:

enter image description here

显然,应用程序图像在 DMG 中放置不正确。我不知道这是怎么发生的,也不知道我可能做了什么触发了这个,我只是使用了标准的 NetBeans 打包脚本。任何提示或指示将不胜感激。

最佳答案

好吧,事实证明这很简单,似乎该工具生成了脚本:

tell application "Finder"
tell disk "MyApplication"
open
set current view of container window to icon view
set toolbar visible of container window to false
set statusbar visible of container window to false

-- size of window should match size of background
set the bounds of container window to {400, 100, 917, 370}

set theViewOptions to the icon view options of container window
set arrangement of theViewOptions to not arranged
set icon size of theViewOptions to 128
set background picture of theViewOptions to file ".background:background.png"

-- Create alias for install location
make new alias file at container window to POSIX file "/Applications" with properties {name:"Applications"}

-- First, move all files far enough to be not visible if user has "show hidden files" option set
-- Note: this only make sense if "hidden" files are also visible on the build system
-- otherwise command below will only return list of non-hidden items
set filesToHide to the name of every item of container window
repeat with theFile in filesToHide
set position of item theFile of container window to {1000, 0}
end repeat

-- Now position application and install location
set position of item "MyApplication" of container window to {120, 135}
set position of item "Applications" of container window to {390, 135}

close
open
update without registering applications
delay 5
end tell
end tell

这是有问题的,因为它只延迟 5 秒(我假设是秒),所以我将其增加到 20 并且它起作用了。该脚本应放在 package/macosx/MyApplication-dmg-setup.scpt 下。

关于macos - javafxpackager 在 Mac OS X 上错误地定位应用程序文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20954907/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com