Customize Applescript app icon

隐身守侯 提交于 2019-12-03 06:22:55

问题


I have created my AppleScript, tested it, saved it as an .app and it works.

Now, how do I set a custom icon for it?

I have done a bit of googling and tried a few different things but cannot get it to work. The app is mainly for me and maybe some people I know to make workflows easier so having a nice little icon makes a huge difference. Can anyone help with this please?


回答1:


  • Basically you need an .icns icon file.
  • Open your application with right-click > Show Package Contents
  • Navigate to Contents > Resources
  • Delete applet.icns
  • Drag the custom icon file into the Resources folder
  • Rename the icon file in Resources to applet.icns
  • To update the icon appearance open and re-save the applet in Script Editor.



回答2:


This is how I do it:

  1. In Finder, select your icon file.
  2. Get Info (CMD-I) on the file.
  3. Click the icon in the top left corner of the Get Info window.
  4. Copy it via CMD-C.
  5. Now Get Info on your AppleScript file.
  6. Click the icon in the top left corner of the Get Info window.
  7. Paste the icon using CMD-V.

The AppleScript icon should be replaced by the icon copied from the icon file.




回答3:


Just building into @pipwerks answers: You can also use Drag&Drop!

  • (Optional) Create your icon online from any image on https://iconverticons.com/online/ and download de .icns file for your icon.
  • Get Info (CMD-I) on you AppleScript file.
  • Now Drag&Drop your .icns file into the small icon in the top left corner.

It works and now it's ready to add it to the dock or wherever you want.



来源:https://stackoverflow.com/questions/42815166/customize-applescript-app-icon

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!